[FFmpeg-cvslog] cosmetics: indentation
Justin Ruggles
git at videolan.org
Wed Jul 20 18:35:35 CEST 2011
ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Wed Jul 13 12:49:15 2011 -0400| [953302656aaaeb1bc737b59fae2d5a11b75d9f7d] | committer: Justin Ruggles
cosmetics: indentation
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=953302656aaaeb1bc737b59fae2d5a11b75d9f7d
---
libavcodec/eac3enc.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavcodec/eac3enc.c b/libavcodec/eac3enc.c
index 153428f..09fa80f 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++)
More information about the ffmpeg-cvslog
mailing list