summaryrefslogtreecommitdiffstats
path: root/libavformat/utils.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2018-10-12 03:00:32 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2018-10-18 02:28:54 +0200
commit4e19cfcfa3944fe4cf97bea758f72f104dcaebad (patch)
tree9c0613874db074d072d9ae203c519640ce9c11f6 /libavformat/utils.c
parente90d4e92729c519e2267fce51e37713e879ef59d (diff)
downloadffmpeg-streaming-4e19cfcfa3944fe4cf97bea758f72f104dcaebad.zip
ffmpeg-streaming-4e19cfcfa3944fe4cf97bea758f72f104dcaebad.tar.gz
avformat/utils: Fix integer overflow in discontinuity check
Fixes: signed integer overflow: 7738135736989908991 - -7954308516317364223 cannot be represented in type 'long' Fixes: find_stream_info_usan Reported-by: Thomas Guilbert <tguilbert@google.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index a8ac902..fa3699d 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -3818,7 +3818,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
* sequence, we treat it as a discontinuity. */
if (st->info->fps_last_dts != AV_NOPTS_VALUE &&
st->info->fps_last_dts_idx > st->info->fps_first_dts_idx &&
- (pkt->dts - st->info->fps_last_dts) / 1000 >
+ (pkt->dts - (uint64_t)st->info->fps_last_dts) / 1000 >
(st->info->fps_last_dts - (uint64_t)st->info->fps_first_dts) /
(st->info->fps_last_dts_idx - st->info->fps_first_dts_idx)) {
av_log(ic, AV_LOG_WARNING,
OpenPOWER on IntegriCloud