# HG changeset patch # User bcoudurier # Date 1273874679 0 # Node ID 55c03c84cd4f65a71d8db814bedeb318946eeac1 # Parent 5b6f32f1546fbc9dac6d06836b183653ae080d89 Change MAX_READ_SIZE message during av_find_stream_info to DEBUG level. It is not harmful and it scares too many users. diff -r 5b6f32f1546f -r 55c03c84cd4f utils.c --- 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; }