mirror of https://git.ffmpeg.org/ffmpeg.git
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;
|
nb_code_blocks = prec->nb_codeblocks_height * prec->nb_codeblocks_width;
|
||||||
for (cblkno = 0; cblkno < nb_code_blocks; cblkno++) {
|
for (cblkno = 0; cblkno < nb_code_blocks; cblkno++) {
|
||||||
Jpeg2000Cblk *cblk = prec->cblk + cblkno;
|
Jpeg2000Cblk *cblk = prec->cblk + cblkno;
|
||||||
|
if (!cblk->nb_terminationsinc && !cblk->lengthinc)
|
||||||
|
continue;
|
||||||
for (cwsno = 0; cwsno < cblk->nb_lengthinc; cwsno ++) {
|
for (cwsno = 0; cwsno < cblk->nb_lengthinc; cwsno ++) {
|
||||||
if (cblk->data_allocated < cblk->length + cblk->lengthinc[cwsno] + 4) {
|
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);
|
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;
|
cblk->data_start[cblk->nb_terminations] = cblk->length;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
av_freep(&cblk->lengthinc);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue