Commit 2105dce9 authored by jai_menon's avatar jai_menon

Display a more descriptive log message when probe buffer limit is

reached.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23288 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 32b6fb14
...@@ -2194,7 +2194,7 @@ int av_find_stream_info(AVFormatContext *ic) ...@@ -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 */ /* we did not get all the codec info, but we read too much data */
if (read_size >= ic->probesize) { if (read_size >= ic->probesize) {
ret = count; 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; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment