Commit 6d79aae6 authored by Clément Bœsch's avatar Clément Bœsch

avfilter/extrastereo: use AV_OPT_TYPE_BOOL for clipping option

parent fad08418
......@@ -35,7 +35,7 @@ typedef struct ExtraStereoContext {
static const AVOption extrastereo_options[] = {
{ "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 }
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment