diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-04 15:46:59 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-04 15:49:03 +0200 |
commit | 02ff89a1cdd91639f923ffa46be5dd39998cb901 (patch) | |
tree | 62a94fd98f16652750995a5535ce5a3245580f33 /ffmpeg.c | |
parent | b0f6df28de4f78decd0acec88d860e1719ea8b05 (diff) | |
download | ffmpeg-02ff89a1cdd91639f923ffa46be5dd39998cb901.tar.gz |
ffmpeg: disable audio volume insertion on the output side.
This fixes -vol leading to 2 inserted volume filters
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1086,7 +1086,7 @@ static int configure_output_audio_filter(FilterGraph *fg, OutputFilter *ofilter, AUTO_INSERT_FILTER("-async", "aresample", args); } - if (audio_volume != 256) { + if (audio_volume != 256 && 0) { char args[256]; snprintf(args, sizeof(args), "%f", audio_volume / 256.); |