summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorThierry Foucu <tfoucu@gmail.com>2015-09-11 12:17:59 -0700
committerMichael Niedermayer <michael@niedermayer.cc>2015-09-11 21:25:33 +0200
commitf600381b79efde4a278d261753f4cc5dc25d2a46 (patch)
tree4af07ebd34d212968a39ca0aa68bdb3c6119ec12 /libavformat
parent0ae40c5a70490f102f7b1c62018746d3b424fa07 (diff)
libavformat/utils.c: use correct variable for message.
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index db988c069b..24eacf3967 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -3348,7 +3348,7 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
if (t >= limit) {
av_log(ic, AV_LOG_VERBOSE, "max_analyze_duration %"PRId64" reached at %"PRId64" microseconds st:%d\n",
- max_analyze_duration,
+ limit,
t, pkt->stream_index);
if (ic->flags & AVFMT_FLAG_NOBUFFER)
av_packet_unref(pkt);