# HG changeset patch # User jbr # Date 1212271969 0 # Node ID cdde357b67d8771b078504c74633920e3912c9c3 # Parent 3ba980378d905c1f0c7e3c52d870c9d0e1f8043f cosmetics: add a comment, remove a comment diff -r 3ba980378d90 -r cdde357b67d8 ac3dec.c --- 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];