diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-05-05 23:39:10 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-05-05 23:39:10 +0000 |
commit | 52dc3fc83d00907f1e8ac00459268eeb2609039d (patch) | |
tree | a2f5204ae2ae3ccd4d1f6d1202c054391e90282f /libavcodec/ac3dec.c | |
parent | 13ec942869924c304b376b20ee2d6a64e96b3205 (diff) | |
download | ffmpeg-52dc3fc83d00907f1e8ac00459268eeb2609039d.tar.gz |
cosmetics: indentation after last commit
Originally committed as revision 18750 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r-- | libavcodec/ac3dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 56dfd8f986..e2f0ff97ec 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -1327,8 +1327,8 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size, /* decode the audio blocks */ channel_map = ff_ac3_dec_channel_map[s->output_mode & ~AC3_OUTPUT_LFEON][s->lfe_on]; - for (ch = 0; ch < s->out_channels; ch++) - output[ch] = s->output[channel_map[ch]]; + for (ch = 0; ch < s->out_channels; ch++) + output[ch] = s->output[channel_map[ch]]; for (blk = 0; blk < s->num_blocks; blk++) { if (!err && decode_audio_block(s, blk)) { av_log(avctx, AV_LOG_ERROR, "error decoding the audio block\n"); |