diff options
author | Reinhard Tartler <siretart@tauware.de> | 2010-05-21 18:46:03 +0000 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2010-05-21 18:46:03 +0000 |
commit | a7216204eb845336d44ef43176516b5b11f885c2 (patch) | |
tree | 53d5546292b71ae2718d4c9b7c6abd2f1804c5e3 | |
parent | cff1f85c3f77aebad87c606db1da10787aae3ca6 (diff) | |
download | ffmpeg-a7216204eb845336d44ef43176516b5b11f885c2.tar.gz |
Change MAX_READ_SIZE message during av_find_stream_info to DEBUG level.
It is not harmful and it scares too many users.
backport r23139 by bcoudurier
Originally committed as revision 23221 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 9e6279a06b..1da1313e6e 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_WARNING, "MAX_READ_SIZE:%d reached\n", ic->probesize); + av_log(ic, AV_LOG_DEBUG, "MAX_READ_SIZE:%d reached\n", ic->probesize); break; } |