summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2021-04-27 20:53:32 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2021-07-31 22:08:38 +0200
commit9dbed908403b0d97ae70881fab68020f148b6b11 (patch)
tree439042df6d03981aa4e0fdab4e47e3683db02840 /libavformat
parent9d1c47ec033d038e04578eaf0767c8983250d03d (diff)
avformat/sbgdec: Check for overflow in timestamp preparation
Fixes: signed integer overflow: 9223372036854775807 + 86400000000 cannot be represented in type 'long' Fixes: 29102/clusterfuzz-testcase-minimized-ffmpeg_dem_SBG_fuzzer-6731040263634944 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/sbgdec.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/sbgdec.c b/libavformat/sbgdec.c
index bd72db5f08..21a918db44 100644
--- a/libavformat/sbgdec.c
+++ b/libavformat/sbgdec.c
@@ -1292,6 +1292,10 @@ static int generate_intervals(void *log, struct sbg_script *s, int sample_rate,
ev1 = &s->events[i];
ev2 = &s->events[(i + 1) % s->nb_events];
ev1->ts_int = ev1->ts;
+
+ if (!ev1->fade.slide && ev1 >= ev2 && ev2->ts > INT64_MAX - period)
+ return AVERROR_INVALIDDATA;
+
ev1->ts_trans = ev1->fade.slide ? ev1->ts
: ev2->ts + (ev1 < ev2 ? 0 : period);
}