1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00
Originally committed as revision 13589 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Justin Ruggles 2008-05-31 22:12:01 +00:00
parent 6e74513a48
commit 9b57545934

View File

@ -903,10 +903,7 @@ static int ac3_parse_audio_block(AC3DecodeContext *s, int blk)
s->exp_strategy[CPL_CH] = EXP_REUSE;
s->exp_strategy[s->lfe_ch] = EXP_REUSE;
for (ch = !s->cpl_in_use; ch <= s->channels; ch++) {
if(ch == s->lfe_ch)
s->exp_strategy[ch] = get_bits(gbc, 1);
else
s->exp_strategy[ch] = get_bits(gbc, 2);
s->exp_strategy[ch] = get_bits(gbc, 2 - (ch == s->lfe_ch));
if(s->exp_strategy[ch] != EXP_REUSE)
bit_alloc_stages[ch] = 3;
}