OSDN Git Service

Display a more descriptive log message when probe buffer limit is
authorJai Menon <jmenon86@gmail.com>
Mon, 24 May 2010 16:42:16 +0000 (16:42 +0000)
committerJai Menon <jmenon86@gmail.com>
Mon, 24 May 2010 16:42:16 +0000 (16:42 +0000)
reached.

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

libavformat/utils.c

index 22c833d..62c56e4 100644 (file)
@@ -2194,7 +2194,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_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;
         }