[FFmpeg-cvslog] r14613 - trunk/libavcodec/ac3dec.c
jbr
subversion
Tue Aug 5 03:31:40 CEST 2008
Author: jbr
Date: Tue Aug 5 03:31:40 2008
New Revision: 14613
Log:
cosmetics: change function name and comments to refer to block decoding
instead of block parsing
Modified:
trunk/libavcodec/ac3dec.c
Modified: trunk/libavcodec/ac3dec.c
==============================================================================
--- trunk/libavcodec/ac3dec.c (original)
+++ trunk/libavcodec/ac3dec.c Tue Aug 5 03:31:40 2008
@@ -711,9 +711,9 @@ static void ac3_upmix_delay(AC3DecodeCon
}
/**
- * Parse an audio block from AC-3 bitstream.
+ * Decode a single audio block from the AC-3 bitstream.
*/
-static int ac3_parse_audio_block(AC3DecodeContext *s, int blk)
+static int decode_audio_block(AC3DecodeContext *s, int blk)
{
int fbw_channels = s->fbw_channels;
int channel_mode = s->channel_mode;
@@ -1164,10 +1164,10 @@ static int ac3_decode_frame(AVCodecConte
s->output_mode = s->out_channels == 1 ? AC3_CHMODE_MONO : AC3_CHMODE_STEREO;
}
- /* parse the audio blocks */
+ /* decode the audio blocks */
for (blk = 0; blk < s->num_blocks; blk++) {
- if (!err && ac3_parse_audio_block(s, blk)) {
- av_log(avctx, AV_LOG_ERROR, "error parsing the audio block\n");
+ if (!err && decode_audio_block(s, blk)) {
+ av_log(avctx, AV_LOG_ERROR, "error decoding the audio block\n");
}
/* interleave output samples */
More information about the ffmpeg-cvslog
mailing list