|
|
|
@ -507,17 +507,19 @@ void ff_jpeg2000_cleanup(Jpeg2000Component *comp, Jpeg2000CodingStyle *codsty) |
|
|
|
|
Jpeg2000ResLevel *reslevel = comp->reslevel + reslevelno; |
|
|
|
|
|
|
|
|
|
for (bandno = 0; bandno < reslevel->nbands; bandno++) { |
|
|
|
|
Jpeg2000Band *band = reslevel->band + bandno; |
|
|
|
|
for (precno = 0; precno < reslevel->num_precincts_x * reslevel->num_precincts_y; precno++) { |
|
|
|
|
if (band->prec) { |
|
|
|
|
Jpeg2000Prec *prec = band->prec + precno; |
|
|
|
|
av_freep(&prec->zerobits); |
|
|
|
|
av_freep(&prec->cblkincl); |
|
|
|
|
av_freep(&prec->cblk); |
|
|
|
|
if (reslevel->band) { |
|
|
|
|
Jpeg2000Band *band = reslevel->band + bandno; |
|
|
|
|
for (precno = 0; precno < reslevel->num_precincts_x * reslevel->num_precincts_y; precno++) { |
|
|
|
|
if (band->prec) { |
|
|
|
|
Jpeg2000Prec *prec = band->prec + precno; |
|
|
|
|
av_freep(&prec->zerobits); |
|
|
|
|
av_freep(&prec->cblkincl); |
|
|
|
|
av_freep(&prec->cblk); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
av_freep(&band->prec); |
|
|
|
|
av_freep(&band->prec); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
av_freep(&reslevel->band); |
|
|
|
|
} |
|
|
|
|