diff options
author | Michael Niedermayer <[email protected]> | 2021-02-11 22:44:36 +0100 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2021-10-06 14:41:41 +0200 |
commit | 3d959551ea0a0ec1fcf50cdc2f67931d14200555 (patch) | |
tree | 9afac52f603817fad139a33ab9e814792333f54e | |
parent | c6f7b44202b1ce384d75a9fb4f8e17085e57705f (diff) |
avformat/jacosubdec: Use 64bit intermediate for start/end timestamp shift
Fixes: signed integer overflow: -1957694447 + -1620425806 cannot be represented in type 'int'
Fixes: 30207/clusterfuzz-testcase-minimized-ffmpeg_dem_JACOSUB_fuzzer-5050791771635712
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
(cherry picked from commit 2c477be08a64a78ab0a358ae00e2f2dc746f2b47)
Signed-off-by: Michael Niedermayer <[email protected]>
-rw-r--r-- | libavformat/jacosubdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/jacosubdec.c b/libavformat/jacosubdec.c index 14221b166c..e1adbc1735 100644 --- a/libavformat/jacosubdec.c +++ b/libavformat/jacosubdec.c @@ -125,8 +125,8 @@ static const char *read_ts(JACOsubContext *jacosub, const char *buf, return NULL; shift_and_ret: - ts_start64 = (ts_start + jacosub->shift) * 100LL / jacosub->timeres; - ts_end64 = (ts_end + jacosub->shift) * 100LL / jacosub->timeres; + ts_start64 = (ts_start + (int64_t)jacosub->shift) * 100LL / jacosub->timeres; + ts_end64 = (ts_end + (int64_t)jacosub->shift) * 100LL / jacosub->timeres; *start = ts_start64; *duration = ts_end64 - ts_start64; return buf + len; |