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:18:33 +0300
committerClément Bœsch <u@pkh.me>2015-09-09 00:18:33 +0300
commited28dd63018bb504b137e2eca53dd12c3f901f52 (patch)
tree98a13204e7b8d99ae5607f56d9c4bbf928c74163 /libavfilter/af_volume.c
parent5c64ae64bde8699f7f45e283e139f75f7f2c30b7 (diff)
avfilter/volume: use AV_OPT_TYPE_BOOL for replaygain_noclip option
Diffstat (limited to 'libavfilter/af_volume.c')
-rw-r--r--libavfilter/af_volume.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_volume.c b/libavfilter/af_volume.c
index 54bffa6015..57275b4f11 100644
--- a/libavfilter/af_volume.c
+++ b/libavfilter/af_volume.c
@@ -82,7 +82,7 @@ static const AVOption volume_options[] = {
{ "replaygain_preamp", "Apply replaygain pre-amplification",
OFFSET(replaygain_preamp), AV_OPT_TYPE_DOUBLE, { .dbl = 0.0 }, -15.0, 15.0, A },
{ "replaygain_noclip", "Apply replaygain clipping prevention",
- OFFSET(replaygain_noclip), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, A },
+ OFFSET(replaygain_noclip), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, A },
{ NULL },
};