mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avformat/asfdec_f: Saturate presentation time in marker
Fixes: signed integer overflow: -9223372036315799520 - 3873890816 cannot be represented in type 'long' Fixes: 51896/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5009302746431488 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit cedb4736f568a9cc693f81b1f7c33ea2499715ab) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
330e0a691c
commit
b73688e921
@ -768,7 +768,7 @@ static int asf_read_marker(AVFormatContext *s, int64_t size)
|
||||
|
||||
avio_rl64(pb); // offset, 8 bytes
|
||||
pres_time = avio_rl64(pb); // presentation time
|
||||
pres_time -= asf->hdr.preroll * 10000;
|
||||
pres_time = av_sat_sub64(pres_time, asf->hdr.preroll * 10000);
|
||||
avio_rl16(pb); // entry length
|
||||
avio_rl32(pb); // send time
|
||||
avio_rl32(pb); // flags
|
||||
|
Loading…
x
Reference in New Issue
Block a user