[FFmpeg-cvslog] r23288 - trunk/libavformat/utils.c

jai_menon subversion
Mon May 24 18:42:16 CEST 2010


Author: jai_menon
Date: Mon May 24 18:42:16 2010
New Revision: 23288

Log:
Display a more descriptive log message when probe buffer limit is 
reached.

Modified:
   trunk/libavformat/utils.c

Modified: trunk/libavformat/utils.c
==============================================================================
--- trunk/libavformat/utils.c	Mon May 24 16:19:44 2010	(r23287)
+++ trunk/libavformat/utils.c	Mon May 24 18:42:16 2010	(r23288)
@@ -2194,7 +2194,7 @@ int av_find_stream_info(AVFormatContext 
         /* we did not get all the codec info, but we read too much data */
         if (read_size >= ic->probesize) {
             ret = count;
-            av_log(ic, AV_LOG_DEBUG, "MAX_READ_SIZE:%d reached\n", ic->probesize);
+            av_log(ic, AV_LOG_DEBUG, "Probe buffer size limit %d reached\n", ic->probesize);
             break;
         }
 



More information about the ffmpeg-cvslog mailing list