diff options
author | Clément Bœsch <u@pkh.me> | 2015-09-11 21:17:05 +0200 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2015-09-12 18:24:49 +0200 |
commit | 1e2c23f06c9c66c3063af70c1f32a893db084c3a (patch) | |
tree | d14cc74cd29f2272fa4f096b2c6c5e51f136e822 /libavfilter | |
parent | 8e22becbc7ed7ceeab3f2cebee326c9bd30085e9 (diff) | |
download | ffmpeg-1e2c23f06c9c66c3063af70c1f32a893db084c3a.tar.gz |
avfilter/treble: use AV_OPT_TYPE_BOOL for csg option
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_biquads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_biquads.c b/libavfilter/af_biquads.c index 118a0c0b75..b910687be2 100644 --- a/libavfilter/af_biquads.c +++ b/libavfilter/af_biquads.c @@ -534,7 +534,7 @@ static const AVOption bandpass_options[] = { {"s", "slope", 0, AV_OPT_TYPE_CONST, {.i64=SLOPE}, 0, 0, FLAGS, "width_type"}, {"width", "set band-width", OFFSET(width), AV_OPT_TYPE_DOUBLE, {.dbl=0.5}, 0, 999, FLAGS}, {"w", "set band-width", OFFSET(width), AV_OPT_TYPE_DOUBLE, {.dbl=0.5}, 0, 999, FLAGS}, - {"csg", "use constant skirt gain", OFFSET(csg), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS}, + {"csg", "use constant skirt gain", OFFSET(csg), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS}, {NULL} }; |