[SCM] libav/experimental: avformat: Report the duration analysis reached

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:01:59 UTC 2014


The following commit has been merged in the experimental branch:
commit db9d39b4b5e5a3c20aeecf787ddeadd88f4906cf
Author: Luca Barbato <lu_zero at gentoo.org>
Date:   Tue Mar 11 13:41:18 2014 +0100

    avformat: Report the duration analysis reached

diff --git a/libavformat/utils.c b/libavformat/utils.c
index fca588b..3f400e3 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2395,7 +2395,8 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
             /* check max_analyze_duration */
             if (av_rescale_q(pkt->dts - st->info->fps_first_dts, st->time_base,
                              AV_TIME_BASE_Q) >= ic->max_analyze_duration) {
-                av_log(ic, AV_LOG_WARNING, "max_analyze_duration reached\n");
+                av_log(ic, AV_LOG_WARNING, "max_analyze_duration %d reached\n",
+                       ic->max_analyze_duration);
                 break;
             }
         }

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list