diff options
author | John Stebbins <jstebbins.hb@gmail.com> | 2012-08-02 11:23:06 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-14 23:36:56 +0200 |
commit | 4cf4028331f9605cdd3ed5ff7a8ca2fbdaedf7fd (patch) | |
tree | ec7357ff0adc6e4ce7a531e8878ab8f177b40b6b /libavresample/audio_mix.c | |
parent | 11928d24fe64c97a5329677ddb9eda44cfca4a56 (diff) | |
download | ffmpeg-4cf4028331f9605cdd3ed5ff7a8ca2fbdaedf7fd.tar.gz |
libavresample: add mix level normalization option
Provides an option to disable mix level normalization
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavresample/audio_mix.c')
-rw-r--r-- | libavresample/audio_mix.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavresample/audio_mix.c b/libavresample/audio_mix.c index e8ab2e3ee7..f948c82788 100644 --- a/libavresample/audio_mix.c +++ b/libavresample/audio_mix.c @@ -335,7 +335,9 @@ int ff_audio_mix_init(AVAudioResampleContext *avr) avr->out_channel_layout, avr->center_mix_level, avr->surround_mix_level, - avr->lfe_mix_level, 1, matrix_dbl, + avr->lfe_mix_level, + avr->normalize_mix_level, + matrix_dbl, avr->in_channels, avr->matrix_encoding); if (ret < 0) { |