Browse Source

avfilter/extrastereo: use AV_OPT_TYPE_BOOL for clipping option

tags/n3.0
Clément Bœsch 10 years ago
parent
commit
6d79aae63c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/af_extrastereo.c

+ 1
- 1
libavfilter/af_extrastereo.c View File

@@ -35,7 +35,7 @@ typedef struct ExtraStereoContext {


static const AVOption extrastereo_options[] = { static const AVOption extrastereo_options[] = {
{ "m", "set the difference coefficient", OFFSET(mult), AV_OPT_TYPE_FLOAT, {.dbl=2.5}, -10, 10, A }, { "m", "set the difference coefficient", OFFSET(mult), AV_OPT_TYPE_FLOAT, {.dbl=2.5}, -10, 10, A },
{ "c", "enable clipping", OFFSET(clip), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, A },
{ "c", "enable clipping", OFFSET(clip), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, A },
{ NULL } { NULL }
}; };




Loading…
Cancel
Save