changeset 6960:cdde357b67d8 libavcodec

cosmetics: add a comment, remove a comment
author jbr
date Sat, 31 May 2008 22:12:49 +0000
parents 3ba980378d90
children 1cf8c883365f
files ac3dec.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ac3dec.c	Sat May 31 22:12:01 2008 +0000
+++ b/ac3dec.c	Sat May 31 22:12:49 2008 +0000
@@ -1154,7 +1154,6 @@
         }
     }
 
-    /* parse the syncinfo */
     if(err && err != AC3_PARSE_ERROR_CRC) {
         switch(err) {
             case AC3_PARSE_ERROR_SYNC:
@@ -1211,6 +1210,8 @@
         if (!err && ac3_parse_audio_block(s, blk)) {
             av_log(avctx, AV_LOG_ERROR, "error parsing the audio block\n");
         }
+
+        /* interleave output samples */
         for (i = 0; i < 256; i++)
             for (ch = 0; ch < s->out_channels; ch++)
                 *(out_samples++) = s->int_output[ch][i];