mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avcodec/rv10: Fix integer overflow in aspect ratio compare
Fixes: signed integer overflow: 2040 * 1187872 cannot be represented in type 'int' Fixes: 15368/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RV20_fuzzer-5681657136283648 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 14fcf42958608223a0be6558fb6e323419c9fc27) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
560ba6feba
commit
0c9085a664
@ -388,9 +388,9 @@ static int rv20_decode_picture_header(RVDecContext *rv)
|
||||
// attempt to keep aspect during typical resolution switches
|
||||
if (!old_aspect.num)
|
||||
old_aspect = (AVRational){1, 1};
|
||||
if (2 * new_w * s->height == new_h * s->width)
|
||||
if (2 * (int64_t)new_w * s->height == (int64_t)new_h * s->width)
|
||||
s->avctx->sample_aspect_ratio = av_mul_q(old_aspect, (AVRational){2, 1});
|
||||
if (new_w * s->height == 2 * new_h * s->width)
|
||||
if ((int64_t)new_w * s->height == 2 * (int64_t)new_h * s->width)
|
||||
s->avctx->sample_aspect_ratio = av_mul_q(old_aspect, (AVRational){1, 2});
|
||||
|
||||
ret = ff_set_dimensions(s->avctx, new_w, new_h);
|
||||
|
Loading…
x
Reference in New Issue
Block a user