diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2014-03-11 13:41:18 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-03-11 21:55:11 +0100 |
commit | db9d39b4b5e5a3c20aeecf787ddeadd88f4906cf (patch) | |
tree | 4416c8661d2380c55aa33f133d18ebdef3a738ad /libavformat | |
parent | 908836e20743d7e9462011a9f30a300a5bf247ca (diff) | |
download | ffmpeg-db9d39b4b5e5a3c20aeecf787ddeadd88f4906cf.tar.gz |
avformat: Report the duration analysis reached
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/utils.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index fca588b48e..3f400e33a7 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; } } |