[FFmpeg-soc] [soc]: r3246 - wmapro/wma3dec.c

faust3 subversion at mplayerhq.hu
Wed Aug 13 23:44:10 CEST 2008


Author: faust3
Date: Wed Aug 13 23:44:09 2008
New Revision: 3246

Log:
extended some comments

Modified:
   wmapro/wma3dec.c

Modified: wmapro/wma3dec.c
==============================================================================
--- wmapro/wma3dec.c	(original)
+++ wmapro/wma3dec.c	Wed Aug 13 23:44:09 2008
@@ -426,14 +426,14 @@ static int wma_decode_frame(WMA3DecodeCo
     }
 
 
-    /** postproc transform */
+    /** read postproc transform */
     if(get_bits1(gb)){
         av_log(s->avctx,AV_LOG_ERROR,"Unsupported postproc transform found\n");
         s->packet_loss = 1;
         return 0;
     }
 
-    /** drc info */
+    /** read drc info */
     if(s->dynamic_range_compression){
         s->drc_gain = get_bits(gb,8);
         av_log(s->avctx,AV_LOG_INFO,"drc_gain %i\n",s->drc_gain);
@@ -441,7 +441,7 @@ static int wma_decode_frame(WMA3DecodeCo
 
     s->update_samples_per_frame = 0;
 
-    /** transmit frame length */
+    /** check if num output samples might change */
     if(get_bits(gb,1)){
         s->update_samples_per_frame = get_bits1(gb);
 



More information about the FFmpeg-soc mailing list