mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-01-06 22:25:36 +01:00
avcodec/jpeg2000: Only allocate Jpeg2000Pass for the encoder
Reduces memory needed. Fixes: OOM Fixes: 4427/clusterfuzz-testcase-minimized-5106919271301120 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:
@@ -941,7 +941,9 @@ static int encode_tile(Jpeg2000EncoderContext *s, Jpeg2000Tile *tile, int tileno
|
||||
}
|
||||
if (!prec->cblk[cblkno].data)
|
||||
prec->cblk[cblkno].data = av_malloc(1 + 8192);
|
||||
if (!prec->cblk[cblkno].data)
|
||||
if (!prec->cblk[cblkno].passes)
|
||||
prec->cblk[cblkno].passes = av_malloc_array(JPEG2000_MAX_PASSES, sizeof (*prec->cblk[cblkno].passes));
|
||||
if (!prec->cblk[cblkno].data || !prec->cblk[cblkno].passes)
|
||||
return AVERROR(ENOMEM);
|
||||
encode_cblk(s, &t1, prec->cblk + cblkno, tile, xx1 - xx0, yy1 - yy0,
|
||||
bandpos, codsty->nreslevels - reslevelno - 1);
|
||||
|
||||
Reference in New Issue
Block a user