Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2015-09-09 00:14:00 +0300
committerClément Bœsch <u@pkh.me>2015-09-09 00:14:00 +0300
commit6d79aae63c953ea10e0815dded83c15ea3a3a7cf (patch)
tree63b8c9a8fa6fd8cd2041020fc3067604746ccb2a /libavfilter/af_extrastereo.c
parentfad084186957a25b0ec9918836d89f44817eff16 (diff)
avfilter/extrastereo: use AV_OPT_TYPE_BOOL for clipping option
Diffstat (limited to 'libavfilter/af_extrastereo.c')
-rw-r--r--libavfilter/af_extrastereo.c2
1 files changed, 1 insertions, 1 deletions
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 }
};