diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2020-06-08 11:07:27 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2020-06-14 19:17:07 +0200 |
commit | 04ddace9e880172a5206e931fd12ce98662e1f6d (patch) | |
tree | 28bca23b5c02e58fe2cef7e242e03af67373ab09 /libavformat/utils.c | |
parent | c0dfe134beefde4070d43910518b1f4a58f01794 (diff) | |
download | ffmpeg-04ddace9e880172a5206e931fd12ce98662e1f6d.tar.gz |
avformat/utils: Print analyze duration and probesize when printing a suggestion to increase them
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 667249362c..45a4179552 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -4132,8 +4132,8 @@ FF_ENABLE_DEPRECATION_WARNINGS avcodec_string(buf, sizeof(buf), st->internal->avctx, 0); av_log(ic, AV_LOG_WARNING, "Could not find codec parameters for stream %d (%s): %s\n" - "Consider increasing the value for the 'analyzeduration' and 'probesize' options\n", - i, buf, errmsg); + "Consider increasing the value for the 'analyzeduration' (%"PRId64") and 'probesize' (%"PRId64") options\n", + i, buf, errmsg, ic->max_analyze_duration, ic->probesize); } else { ret = 0; } |