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

bcoudurier subversion
Sat May 15 00:04:39 CEST 2010


Author: bcoudurier
Date: Sat May 15 00:04:39 2010
New Revision: 23139

Log:
Change MAX_READ_SIZE message during av_find_stream_info to DEBUG level.
It is not harmful and it scares too many users.

Modified:
   trunk/libavformat/utils.c

Modified: trunk/libavformat/utils.c
==============================================================================
--- trunk/libavformat/utils.c	Fri May 14 21:38:17 2010	(r23138)
+++ trunk/libavformat/utils.c	Sat May 15 00:04:39 2010	(r23139)
@@ -2201,7 +2201,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_WARNING, "MAX_READ_SIZE:%d reached\n", ic->probesize);
+            av_log(ic, AV_LOG_DEBUG, "MAX_READ_SIZE:%d reached\n", ic->probesize);
             break;
         }
 



More information about the ffmpeg-cvslog mailing list