]> git.sesse.net Git - ffmpeg/commitdiff
cosmetics: indentation after last commit
authorJustin Ruggles <justin.ruggles@gmail.com>
Tue, 5 May 2009 23:39:10 +0000 (23:39 +0000)
committerJustin Ruggles <justin.ruggles@gmail.com>
Tue, 5 May 2009 23:39:10 +0000 (23:39 +0000)
Originally committed as revision 18750 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ac3dec.c

index 56dfd8f9869ba65790c2cd26dea6f8b1b52e7ac2..e2f0ff97ecae081f96a4a3b328c922ff023bef1b 100644 (file)
@@ -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");