From 6d79aae63c953ea10e0815dded83c15ea3a3a7cf Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Tue, 8 Sep 2015 23:14:00 +0200 Subject: avfilter/extrastereo: use AV_OPT_TYPE_BOOL for clipping option --- libavfilter/af_extrastereo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/af_extrastereo.c') diff --git a/libavfilter/af_extrastereo.c b/libavfilter/af_extrastereo.c index 4877244a4f..b4f8c85c38 100644 --- a/libavfilter/af_extrastereo.c +++ b/libavfilter/af_extrastereo.c @@ -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 } }; -- cgit v1.2.3