Mercurial > libavformat.hg
changeset 6003:55c03c84cd4f libavformat
Change MAX_READ_SIZE message during av_find_stream_info to DEBUG level.
It is not harmful and it scares too many users.
author | bcoudurier |
---|---|
date | Fri, 14 May 2010 22:04:39 +0000 |
parents | 5b6f32f1546f |
children | 982c13b665cf |
files | utils.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/utils.c Thu May 13 15:41:49 2010 +0000 +++ b/utils.c Fri May 14 22:04:39 2010 +0000 @@ -2201,7 +2201,7 @@ /* 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; }