[FFmpeg-soc] [soc]: r3021 - eac3/ac3dec.c

jbr subversion at mplayerhq.hu
Tue Aug 5 03:33:55 CEST 2008


Author: jbr
Date: Tue Aug  5 03:33:54 2008
New Revision: 3021

Log:
cosmetics: change function name and comments to refer to block decoding
> instead of block parsing

Modified:
   eac3/ac3dec.c

Modified: eac3/ac3dec.c
==============================================================================
--- eac3/ac3dec.c	(original)
+++ eac3/ac3dec.c	Tue Aug  5 03:33:54 2008
@@ -1308,10 +1308,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 && decode_audio_block(s, blk)) {
-            av_log(avctx, AV_LOG_ERROR, "error parsing the audio block\n");
+            av_log(avctx, AV_LOG_ERROR, "error decoding the audio block\n");
         }
 
         /* interleave output samples */



More information about the FFmpeg-soc mailing list