avcodec/mobiclip: Check quantizer for overflow
Fixes: signed integer overflow: 127 + 2147483536 cannot be represented in type 'int' Fixes: 48798/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MOBICLIP_fuzzer-6014034970804224 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 677e27a9afa7305a918336699b377fd5b42cc299) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
4e07d4a1ee
commit
03c168869e
@ -330,7 +330,7 @@ static av_cold int mobiclip_init(AVCodecContext *avctx)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int setup_qtables(AVCodecContext *avctx, int quantizer)
|
static int setup_qtables(AVCodecContext *avctx, int64_t quantizer)
|
||||||
{
|
{
|
||||||
MobiClipContext *s = avctx->priv_data;
|
MobiClipContext *s = avctx->priv_data;
|
||||||
int qx, qy;
|
int qx, qy;
|
||||||
@ -1256,7 +1256,7 @@ static int mobiclip_decode(AVCodecContext *avctx, AVFrame *rframe,
|
|||||||
frame->key_frame = 0;
|
frame->key_frame = 0;
|
||||||
s->dct_tab_idx = 0;
|
s->dct_tab_idx = 0;
|
||||||
|
|
||||||
ret = setup_qtables(avctx, s->quantizer + get_se_golomb(gb));
|
ret = setup_qtables(avctx, s->quantizer + (int64_t)get_se_golomb(gb));
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user