avcodec/arbc: Check nb_tiles against dimensions

Fixes: Timeout
Fixes: 12967/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ARBC_fuzzer-5639021454163968

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2019-02-17 22:40:34 +01:00
parent cdf17cf92b
commit 160851bcee
1 changed files with 6 additions and 0 deletions

View File

@ -45,6 +45,9 @@ static void fill_tile4(AVCodecContext *avctx, uint8_t *color, AVFrame *frame)
int nb_tiles = bytestream2_get_le16(gb);
int h = avctx->height - 1;
if ((avctx->width / 4 + 1) * (avctx->height / 4 + 1) < nb_tiles)
return;
for (int i = 0; i < nb_tiles; i++) {
int y = bytestream2_get_byte(gb);
int x = bytestream2_get_byte(gb);
@ -79,6 +82,9 @@ static void fill_tileX(AVCodecContext *avctx, int tile_width, int tile_height,
int nb_tiles = bytestream2_get_le16(gb);
int h = avctx->height - 1;
if ((avctx->width / tile_width + 1) * (avctx->height / tile_height + 1) < nb_tiles)
return;
for (int i = 0; i < nb_tiles; i++) {
int y = bytestream2_get_byte(gb);
int x = bytestream2_get_byte(gb);