diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-07-13 12:49:15 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-07-19 14:15:00 -0400 |
commit | 953302656aaaeb1bc737b59fae2d5a11b75d9f7d (patch) | |
tree | 5707e83ace1efbda79ecec1b8043a320d6ceae91 /libavcodec | |
parent | 08a747afb98c11da48b89339c2f1c5fdc56ced7e (diff) | |
download | ffmpeg-953302656aaaeb1bc737b59fae2d5a11b75d9f7d.tar.gz |
cosmetics: indentation
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/eac3enc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/eac3enc.c b/libavcodec/eac3enc.c index 153428fdfb..09fa80fcb9 100644 --- a/libavcodec/eac3enc.c +++ b/libavcodec/eac3enc.c @@ -170,9 +170,9 @@ void ff_eac3_output_frame_header(AC3EncodeContext *s) for (ch = !s->cpl_on; ch <= s->fbw_channels; ch++) put_bits(&s->pb, 5, s->frame_exp_strategy[ch]); } else { - for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) - for (ch = !s->blocks[blk].cpl_in_use; ch <= s->fbw_channels; ch++) - put_bits(&s->pb, 2, s->exp_strategy[ch][blk]); + for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) + for (ch = !s->blocks[blk].cpl_in_use; ch <= s->fbw_channels; ch++) + put_bits(&s->pb, 2, s->exp_strategy[ch][blk]); } if (s->lfe_on) { for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) |