[FFmpeg-cvslog] r23373 - in branches/0.6: . libavformat/utils.c
siretart
subversion
Sat May 29 15:11:56 CEST 2010
Author: siretart
Date: Sat May 29 15:11:56 2010
New Revision: 23373
Log:
Display a more descriptive log message when probe buffer limit is
reached.
backport r23288 by jai_menon
Modified:
branches/0.6/ (props changed)
branches/0.6/libavformat/utils.c
Modified: branches/0.6/libavformat/utils.c
==============================================================================
--- branches/0.6/libavformat/utils.c Sat May 29 15:11:21 2010 (r23372)
+++ branches/0.6/libavformat/utils.c Sat May 29 15:11:56 2010 (r23373)
@@ -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_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