[FFmpeg-cvslog] r18750 - trunk/libavcodec/ac3dec.c

jbr subversion
Wed May 6 01:39:10 CEST 2009


Author: jbr
Date: Wed May  6 01:39:10 2009
New Revision: 18750

Log:
cosmetics: indentation after last commit

Modified:
   trunk/libavcodec/ac3dec.c

Modified: trunk/libavcodec/ac3dec.c
==============================================================================
--- trunk/libavcodec/ac3dec.c	Wed May  6 01:38:12 2009	(r18749)
+++ trunk/libavcodec/ac3dec.c	Wed May  6 01:39:10 2009	(r18750)
@@ -1327,8 +1327,8 @@ static int ac3_decode_frame(AVCodecConte
 
     /* 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");



More information about the ffmpeg-cvslog mailing list