Change MAX_READ_SIZE message during av_find_stream_info to DEBUG level.
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>
Fri, 14 May 2010 22:04:39 +0000 (22:04 +0000)
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>
Fri, 14 May 2010 22:04:39 +0000 (22:04 +0000)
It is not harmful and it scares too many users.

Originally committed as revision 23139 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/utils.c

index 9e6279a..1da1313 100644 (file)
@@ -2201,7 +2201,7 @@ int av_find_stream_info(AVFormatContext *ic)
         /* 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;
         }