[FFmpeg-cvslog] r19759 - trunk/libavcodec/mpegaudiodec.c

diego subversion
Fri Sep 4 21:04:12 CEST 2009


Author: diego
Date: Fri Sep  4 21:04:12 2009
New Revision: 19759

Log:
Reduce pointless verbosity after seeks in the MP3 decoder.

Modified:
   trunk/libavcodec/mpegaudiodec.c

Modified: trunk/libavcodec/mpegaudiodec.c
==============================================================================
--- trunk/libavcodec/mpegaudiodec.c	Fri Sep  4 18:59:28 2009	(r19758)
+++ trunk/libavcodec/mpegaudiodec.c	Fri Sep  4 21:04:12 2009	(r19759)
@@ -2033,7 +2033,7 @@ static int mp_decode_layer3(MPADecodeCon
         for(ch=0;ch<s->nb_channels;ch++) {
             g = &granules[ch][gr];
             if(get_bits_count(&s->gb)<0){
-                av_log(s->avctx, AV_LOG_ERROR, "mdb:%d, lastbuf:%d skipping granule %d\n",
+                av_log(s->avctx, AV_LOG_DEBUG, "mdb:%d, lastbuf:%d skipping granule %d\n",
                                             main_data_begin, s->last_buf_size, gr);
                 skip_bits_long(&s->gb, g->part2_3_length);
                 memset(g->sb_hybrid, 0, sizeof(g->sb_hybrid));



More information about the ffmpeg-cvslog mailing list