Fix various bad printf format warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:

committed by
Michael Niedermayer

parent
bb9b7bc62e
commit
fd38a15adf
@@ -2334,7 +2334,7 @@ int av_find_stream_info(AVFormatContext *ic)
|
||||
if (st->codec_info_nb_frames>1) {
|
||||
int64_t t;
|
||||
if (st->time_base.den > 0 && (t=av_rescale_q(st->info->codec_info_duration, st->time_base, AV_TIME_BASE_Q)) >= ic->max_analyze_duration) {
|
||||
av_log(ic, AV_LOG_WARNING, "max_analyze_duration %d reached at %Ld\n", ic->max_analyze_duration, t);
|
||||
av_log(ic, AV_LOG_WARNING, "max_analyze_duration %d reached at %"PRId64"\n", ic->max_analyze_duration, t);
|
||||
break;
|
||||
}
|
||||
st->info->codec_info_duration += pkt->duration;
|
||||
|
Reference in New Issue
Block a user