mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-12-03 00:56:54 +00:00
avcodec/jpeg2000dec: Free lengthinc earlier
Reduces memory needed Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
4b2a186ef0
commit
80344959f0
@ -1046,6 +1046,8 @@ static int jpeg2000_decode_packet(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile,
|
||||
nb_code_blocks = prec->nb_codeblocks_height * prec->nb_codeblocks_width;
|
||||
for (cblkno = 0; cblkno < nb_code_blocks; cblkno++) {
|
||||
Jpeg2000Cblk *cblk = prec->cblk + cblkno;
|
||||
if (!cblk->nb_terminationsinc && !cblk->lengthinc)
|
||||
continue;
|
||||
for (cwsno = 0; cwsno < cblk->nb_lengthinc; cwsno ++) {
|
||||
if (cblk->data_allocated < cblk->length + cblk->lengthinc[cwsno] + 4) {
|
||||
size_t new_size = FFMAX(2*cblk->data_allocated, cblk->length + cblk->lengthinc[cwsno] + 4);
|
||||
@ -1075,6 +1077,7 @@ static int jpeg2000_decode_packet(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile,
|
||||
cblk->data_start[cblk->nb_terminations] = cblk->length;
|
||||
}
|
||||
}
|
||||
av_freep(&cblk->lengthinc);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user