[FFmpeg-cvslog] r13590 - trunk/libavcodec/ac3dec.c
jbr
subversion
Sun Jun 1 00:12:49 CEST 2008
Author: jbr
Date: Sun Jun 1 00:12:49 2008
New Revision: 13590
Log:
cosmetics: add a comment, remove a comment
Modified:
trunk/libavcodec/ac3dec.c
Modified: trunk/libavcodec/ac3dec.c
==============================================================================
--- trunk/libavcodec/ac3dec.c (original)
+++ trunk/libavcodec/ac3dec.c Sun Jun 1 00:12:49 2008
@@ -1154,7 +1154,6 @@ static int ac3_decode_frame(AVCodecConte
}
}
- /* parse the syncinfo */
if(err && err != AC3_PARSE_ERROR_CRC) {
switch(err) {
case AC3_PARSE_ERROR_SYNC:
@@ -1211,6 +1210,8 @@ static int ac3_decode_frame(AVCodecConte
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];
More information about the ffmpeg-cvslog
mailing list