mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 22:10:34 +00:00
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>
This commit is contained in:
parent
b0f6df28de
commit
02ff89a1cd
2
ffmpeg.c
2
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.);
|
||||
|
Loading…
Reference in New Issue
Block a user