diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-08-27 23:23:54 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-08-27 23:23:54 +0000 |
commit | aec0407fafe831c8a72289576fb5f37ee44f52f6 (patch) | |
tree | f2c7bda057ffa96bfccbd6f1b88a289608b42f86 /libavcodec | |
parent | 6b4bfed96525cad5706933fff99b3a36b6da728c (diff) | |
download | ffmpeg-aec0407fafe831c8a72289576fb5f37ee44f52f6.tar.gz |
cosmetics: indent after last commit
Originally committed as revision 15001 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ac3dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 26856632c7..88bef366a0 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -903,7 +903,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk) /* exponent strategies for each channel */ for (ch = !cpl_in_use; ch <= s->channels; ch++) { if (!s->eac3) - s->exp_strategy[blk][ch] = get_bits(gbc, 2 - (ch == s->lfe_ch)); + s->exp_strategy[blk][ch] = get_bits(gbc, 2 - (ch == s->lfe_ch)); if(s->exp_strategy[blk][ch] != EXP_REUSE) bit_alloc_stages[ch] = 3; } |