mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/utils: Print analyze duration and probesize when printing a suggestion to increase them
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
c0dfe134be
commit
04ddace9e8
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue