From 02ff89a1cdd91639f923ffa46be5dd39998cb901 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 4 Jun 2012 15:46:59 +0200 Subject: [PATCH] ffmpeg: disable audio volume insertion on the output side. This fixes -vol leading to 2 inserted volume filters Signed-off-by: Michael Niedermayer --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index 600da6dbc5..ab5524c126 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -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.);