diff options
author | Jai Menon <jmenon86@gmail.com> | 2010-05-24 16:42:16 +0000 |
---|---|---|
committer | Jai Menon <jmenon86@gmail.com> | 2010-05-24 16:42:16 +0000 |
commit | 9bbe9a0dc18795259a843a21396bed98043525e9 (patch) | |
tree | edd3dd7a3864b1c42d3fcab37acdbad835f2d08a | |
parent | 12bd3c1f99f11ea21b32e5720908f258d0c5097a (diff) | |
download | ffmpeg-9bbe9a0dc18795259a843a21396bed98043525e9.tar.gz |
Display a more descriptive log message when probe buffer limit is
reached.
Originally committed as revision 23288 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 22c833d75a..62c56e490c 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -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; } |