Mercurial > libavformat.hg
diff utils.c @ 6050:8a4763913ae0 libavformat
Display a more descriptive log message when probe buffer limit is
reached.
author | jai_menon |
---|---|
date | Mon, 24 May 2010 16:42:16 +0000 |
parents | 746b2040c34e |
children | 65b0ea69d9af |
line wrap: on
line diff
--- a/utils.c Mon May 24 12:32:13 2010 +0000 +++ b/utils.c Mon May 24 16:42:16 2010 +0000 @@ -2194,7 +2194,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_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; }