summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2010-05-14 22:04:39 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2010-05-14 22:04:39 +0000
commit58edb075f0469814911b7bdabcb664701e1a885a (patch)
tree7156ee600cfb01a28f1b8e06fcfb611cc6abc7c2 /libavformat
parent0175d7886f005be878e07bbbfe2bcb5e9f0398f3 (diff)
Change MAX_READ_SIZE message during av_find_stream_info to DEBUG level.
It is not harmful and it scares too many users. Originally committed as revision 23139 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c2
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;
}