[FFmpeg-devel] [PATCH 1/2] lavf: print a warning if probesize seems not enough.

Nicolas George nicolas.george at normalesup.org
Sat Apr 21 13:15:22 CEST 2012


Signed-off-by: Nicolas George <nicolas.george at normalesup.org>
---
 libavformat/utils.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/libavformat/utils.c b/libavformat/utils.c
index 1bf5ac5..de0cb54 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2522,6 +2522,12 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
         if (read_size >= ic->probesize) {
             ret = count;
             av_log(ic, AV_LOG_DEBUG, "Probe buffer size limit %d reached\n", ic->probesize);
+            for (i = 0; i < ic->nb_streams; i++)
+                if (!ic->streams[i]->r_frame_rate.num &&
+                    ic->streams[i]->info->duration_count <= 1)
+                    av_log(ic, AV_LOG_WARNING,
+                           "Stream #%d: not enough frames to estimate rate; "
+                           "consider increasing probesize\n", i);
             break;
         }
 
-- 
1.7.2.5



More information about the ffmpeg-devel mailing list