From 2be3007ed55f1513bcae3d2a076e71878f48eb03 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 28 May 2016 23:51:35 +0200 Subject: avformat/utils: avoid overflow in update_stream_timings() with huge durations Fixes: usan_granule_overflow Found-by: Thomas Guilbert Signed-off-by: Michael Niedermayer --- libavformat/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/utils.c') diff --git a/libavformat/utils.c b/libavformat/utils.c index 468ba1a2d6..4ccc5f5cfa 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2491,7 +2491,7 @@ static void update_stream_timings(AVFormatContext *ic) end_time1 = av_rescale_q_rnd(st->duration, st->time_base, AV_TIME_BASE_Q, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX); - if (end_time1 != AV_NOPTS_VALUE) { + if (end_time1 != AV_NOPTS_VALUE && start_time1 <= INT64_MAX - end_time1) { end_time1 += start_time1; end_time = FFMAX(end_time, end_time1); } -- cgit v1.2.3