Commit 06f6f785 authored by Justin Ruggles's avatar Justin Ruggles

10l: fix typo in compute_exp_strategy()

Originally committed as revision 26013 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 266d24be
...@@ -555,7 +555,7 @@ static void compute_exp_strategy(AC3EncodeContext *s) ...@@ -555,7 +555,7 @@ static void compute_exp_strategy(AC3EncodeContext *s)
if (s->lfe_on) { if (s->lfe_on) {
ch = s->lfe_channel; ch = s->lfe_channel;
s->exp_strategy[0][ch] = EXP_D15; s->exp_strategy[0][ch] = EXP_D15;
for (blk = 1; blk < 5; blk++) for (blk = 1; blk < AC3_MAX_BLOCKS; blk++)
s->exp_strategy[blk][ch] = EXP_REUSE; s->exp_strategy[blk][ch] = EXP_REUSE;
} }
} }
......
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