diff options
author | Reinhard Tartler <siretart@tauware.de> | 2010-05-29 13:11:56 +0000 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2010-05-29 13:11:56 +0000 |
commit | df62b0d9f5cb8bebd0dee94dc826e1617cb14274 (patch) | |
tree | a52934fc3aea52042eae39543d57197ec0c51e12 | |
parent | e63d03e7e24e51edd08496e40bac1eb946917917 (diff) | |
download | ffmpeg-df62b0d9f5cb8bebd0dee94dc826e1617cb14274.tar.gz |
Display a more descriptive log message when probe buffer limit is
reached.
backport r23288 by jai_menon
Originally committed as revision 23373 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 1da1313e6e..e975f5de24 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -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_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; } |