Commit 7934cbb3 authored by Justin Ruggles's avatar Justin Ruggles

ac3dec: apply dynamic range compression to correct channels in dual-mono mode.

Originally committed as revision 20533 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 03279bbe
...@@ -1167,7 +1167,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk) ...@@ -1167,7 +1167,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
for(ch=1; ch<=s->channels; ch++) { for(ch=1; ch<=s->channels; ch++) {
float gain = s->mul_bias / 4194304.0f; float gain = s->mul_bias / 4194304.0f;
if(s->channel_mode == AC3_CHMODE_DUALMONO) { if(s->channel_mode == AC3_CHMODE_DUALMONO) {
gain *= s->dynamic_range[ch-1]; gain *= s->dynamic_range[2-ch];
} else { } else {
gain *= s->dynamic_range[0]; gain *= s->dynamic_range[0];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment