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

faust3 subversion at mplayerhq.hu
Mon Mar 2 20:53:24 CET 2009


Author: faust3
Date: Mon Mar  2 20:53:23 2009
New Revision: 4147

Log:
be less verbose about the no more frames condition

Modified:
   wmapro/wma3dec.c

Modified: wmapro/wma3dec.c
==============================================================================
--- wmapro/wma3dec.c	Mon Mar  2 20:44:12 2009	(r4146)
+++ wmapro/wma3dec.c	Mon Mar  2 20:53:23 2009	(r4147)
@@ -1587,7 +1587,7 @@ static int wma3_decode_packet(AVCodecCon
             wma_decode_frame(s,&gb_prev);
         }
     }else if(s->prev_packet_bit_size){
-        av_log(avctx, AV_LOG_ERROR, "ignoring %x previously saved bits\n",
+        av_log(avctx, AV_LOG_DEBUG, "ignoring %x previously saved bits\n",
                       s->prev_packet_bit_size);
     }
 
@@ -1605,7 +1605,7 @@ static int wma3_decode_packet(AVCodecCon
             more_frames = wma_decode_frame(s,&gb);
 
             if(!more_frames){
-                av_log(avctx, AV_LOG_ERROR, "no more frames\n");
+                av_log(avctx, AV_LOG_DEBUG, "no more frames\n");
             }
         }else
             more_frames = 0;



More information about the FFmpeg-soc mailing list