Commit f3da6fbf authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/jpeg2000dec: Use ff_set_dimensions()

Fixes: OOM
Fixes: 1890/clusterfuzz-testcase-minimized-6329019509243904

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 718f8a01
...@@ -260,6 +260,7 @@ static int get_siz(Jpeg2000DecoderContext *s) ...@@ -260,6 +260,7 @@ static int get_siz(Jpeg2000DecoderContext *s)
uint32_t log2_chroma_wh = 0; uint32_t log2_chroma_wh = 0;
const enum AVPixelFormat *possible_fmts = NULL; const enum AVPixelFormat *possible_fmts = NULL;
int possible_fmts_nb = 0; int possible_fmts_nb = 0;
int ret;
if (bytestream2_get_bytes_left(&s->g) < 36) { if (bytestream2_get_bytes_left(&s->g) < 36) {
av_log(s->avctx, AV_LOG_ERROR, "Insufficient space for SIZ\n"); av_log(s->avctx, AV_LOG_ERROR, "Insufficient space for SIZ\n");
...@@ -359,10 +360,13 @@ static int get_siz(Jpeg2000DecoderContext *s) ...@@ -359,10 +360,13 @@ static int get_siz(Jpeg2000DecoderContext *s)
} }
/* compute image size with reduction factor */ /* compute image size with reduction factor */
s->avctx->width = ff_jpeg2000_ceildivpow2(s->width - s->image_offset_x, ret = ff_set_dimensions(s->avctx,
s->reduction_factor); ff_jpeg2000_ceildivpow2(s->width - s->image_offset_x,
s->avctx->height = ff_jpeg2000_ceildivpow2(s->height - s->image_offset_y, s->reduction_factor),
s->reduction_factor); ff_jpeg2000_ceildivpow2(s->height - s->image_offset_y,
s->reduction_factor));
if (ret < 0)
return ret;
if (s->avctx->profile == FF_PROFILE_JPEG2000_DCINEMA_2K || if (s->avctx->profile == FF_PROFILE_JPEG2000_DCINEMA_2K ||
s->avctx->profile == FF_PROFILE_JPEG2000_DCINEMA_4K) { s->avctx->profile == FF_PROFILE_JPEG2000_DCINEMA_4K) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment