changeset 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 bd81aaf36a9a
children 5a9972bd90b6
files utils.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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;
         }