mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-01-26 06:05:06 +00:00
lavf: Avoid setting avg_frame_rate if delta_dts is negative
This avoids setting avg_frame_rate to invalid (negative) values. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
bb7bf17595
commit
ce67f442be
@ -2373,7 +2373,8 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
|
||||
double best_error = 0.01;
|
||||
|
||||
if (delta_dts >= INT64_MAX / st->time_base.num ||
|
||||
delta_packets >= INT64_MAX / st->time_base.den)
|
||||
delta_packets >= INT64_MAX / st->time_base.den ||
|
||||
delta_dts < 0)
|
||||
continue;
|
||||
av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
|
||||
delta_packets*(int64_t)st->time_base.den,
|
||||
|
Loading…
x
Reference in New Issue
Block a user