]> git.sesse.net Git - ffmpeg/blob - libavcodec/jpeg2000.c
avcodec/jpeg2000: Change precinct coords to same origin as bands
[ffmpeg] / libavcodec / jpeg2000.c
1 /*
2  * JPEG 2000 encoder and decoder common functions
3  * Copyright (c) 2007 Kamil Nowosad
4  * Copyright (c) 2013 Nicolas Bertrand <nicoinattendu@gmail.com>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * JPEG 2000 image encoder and decoder common functions
26  */
27
28 #include "libavutil/attributes.h"
29 #include "libavutil/avassert.h"
30 #include "libavutil/common.h"
31 #include "libavutil/mem.h"
32 #include "avcodec.h"
33 #include "jpeg2000.h"
34
35 #define SHL(a, n) ((n) >= 0 ? (a) << (n) : (a) >> -(n))
36
37 /* tag tree routines */
38
39 /* allocate the memory for tag tree */
40 static int32_t tag_tree_size(uint16_t w, uint16_t h)
41 {
42     uint32_t res = 0;
43     while (w > 1 || h > 1) {
44         res += w * h;
45         av_assert0(res + 1 < INT32_MAX);
46         w = (w + 1) >> 1;
47         h = (h + 1) >> 1;
48     }
49     return (int32_t)(res + 1);
50 }
51
52 static Jpeg2000TgtNode *ff_jpeg2000_tag_tree_init(int w, int h)
53 {
54     int pw = w, ph = h;
55     Jpeg2000TgtNode *res, *t, *t2;
56     int32_t tt_size;
57
58     tt_size = tag_tree_size(w, h);
59
60     t = res = av_mallocz_array(tt_size, sizeof(*t));
61     if (!res)
62         return NULL;
63
64     while (w > 1 || h > 1) {
65         int i, j;
66         pw = w;
67         ph = h;
68
69         w  = (w + 1) >> 1;
70         h  = (h + 1) >> 1;
71         t2 = t + pw * ph;
72
73         for (i = 0; i < ph; i++)
74             for (j = 0; j < pw; j++)
75                 t[i * pw + j].parent = &t2[(i >> 1) * w + (j >> 1)];
76
77         t = t2;
78     }
79     t[0].parent = NULL;
80     return res;
81 }
82
83 static void tag_tree_zero(Jpeg2000TgtNode *t, int w, int h)
84 {
85     int i, siz = tag_tree_size(w, h);
86
87     for (i = 0; i < siz; i++) {
88         t[i].val = 0;
89         t[i].vis = 0;
90     }
91 }
92
93 uint8_t ff_jpeg2000_sigctxno_lut[256][4];
94
95 static int getsigctxno(int flag, int bandno)
96 {
97     int h, v, d;
98
99     h = ((flag & JPEG2000_T1_SIG_E)  ? 1 : 0) +
100         ((flag & JPEG2000_T1_SIG_W)  ? 1 : 0);
101     v = ((flag & JPEG2000_T1_SIG_N)  ? 1 : 0) +
102         ((flag & JPEG2000_T1_SIG_S)  ? 1 : 0);
103     d = ((flag & JPEG2000_T1_SIG_NE) ? 1 : 0) +
104         ((flag & JPEG2000_T1_SIG_NW) ? 1 : 0) +
105         ((flag & JPEG2000_T1_SIG_SE) ? 1 : 0) +
106         ((flag & JPEG2000_T1_SIG_SW) ? 1 : 0);
107
108     if (bandno < 3) {
109         if (bandno == 1)
110             FFSWAP(int, h, v);
111         if (h == 2) return 8;
112         if (h == 1) {
113             if (v >= 1) return 7;
114             if (d >= 1) return 6;
115             return 5;
116         }
117         if (v == 2) return 4;
118         if (v == 1) return 3;
119         if (d >= 2) return 2;
120         if (d == 1) return 1;
121     } else {
122         if (d >= 3) return 8;
123         if (d == 2) {
124             if (h+v >= 1) return 7;
125             return 6;
126         }
127         if (d == 1) {
128             if (h+v >= 2) return 5;
129             if (h+v == 1) return 4;
130             return 3;
131         }
132         if (h+v >= 2) return 2;
133         if (h+v == 1) return 1;
134     }
135     return 0;
136 }
137
138 uint8_t ff_jpeg2000_sgnctxno_lut[16][16], ff_jpeg2000_xorbit_lut[16][16];
139
140 static const int contribtab[3][3] = { {  0, -1,  1 }, { -1, -1,  0 }, {  1,  0,  1 } };
141 static const int  ctxlbltab[3][3] = { { 13, 12, 11 }, { 10,  9, 10 }, { 11, 12, 13 } };
142 static const int  xorbittab[3][3] = { {  1,  1,  1 }, {  1,  0,  0 }, {  0,  0,  0 } };
143
144 static int getsgnctxno(int flag, uint8_t *xorbit)
145 {
146     int vcontrib, hcontrib;
147
148     hcontrib = contribtab[flag & JPEG2000_T1_SIG_E ? flag & JPEG2000_T1_SGN_E ? 1 : 2 : 0]
149                          [flag & JPEG2000_T1_SIG_W ? flag & JPEG2000_T1_SGN_W ? 1 : 2 : 0] + 1;
150     vcontrib = contribtab[flag & JPEG2000_T1_SIG_S ? flag & JPEG2000_T1_SGN_S ? 1 : 2 : 0]
151                          [flag & JPEG2000_T1_SIG_N ? flag & JPEG2000_T1_SGN_N ? 1 : 2 : 0] + 1;
152     *xorbit = xorbittab[hcontrib][vcontrib];
153
154     return ctxlbltab[hcontrib][vcontrib];
155 }
156
157 void av_cold ff_jpeg2000_init_tier1_luts(void)
158 {
159     int i, j;
160     for (i = 0; i < 256; i++)
161         for (j = 0; j < 4; j++)
162             ff_jpeg2000_sigctxno_lut[i][j] = getsigctxno(i, j);
163     for (i = 0; i < 16; i++)
164         for (j = 0; j < 16; j++)
165             ff_jpeg2000_sgnctxno_lut[i][j] =
166                 getsgnctxno(i + (j << 8), &ff_jpeg2000_xorbit_lut[i][j]);
167 }
168
169 void ff_jpeg2000_set_significance(Jpeg2000T1Context *t1, int x, int y,
170                                   int negative)
171 {
172     x++;
173     y++;
174     t1->flags[y][x] |= JPEG2000_T1_SIG;
175     if (negative) {
176         t1->flags[y][x + 1] |= JPEG2000_T1_SIG_W | JPEG2000_T1_SGN_W;
177         t1->flags[y][x - 1] |= JPEG2000_T1_SIG_E | JPEG2000_T1_SGN_E;
178         t1->flags[y + 1][x] |= JPEG2000_T1_SIG_N | JPEG2000_T1_SGN_N;
179         t1->flags[y - 1][x] |= JPEG2000_T1_SIG_S | JPEG2000_T1_SGN_S;
180     } else {
181         t1->flags[y][x + 1] |= JPEG2000_T1_SIG_W;
182         t1->flags[y][x - 1] |= JPEG2000_T1_SIG_E;
183         t1->flags[y + 1][x] |= JPEG2000_T1_SIG_N;
184         t1->flags[y - 1][x] |= JPEG2000_T1_SIG_S;
185     }
186     t1->flags[y + 1][x + 1] |= JPEG2000_T1_SIG_NW;
187     t1->flags[y + 1][x - 1] |= JPEG2000_T1_SIG_NE;
188     t1->flags[y - 1][x + 1] |= JPEG2000_T1_SIG_SW;
189     t1->flags[y - 1][x - 1] |= JPEG2000_T1_SIG_SE;
190 }
191
192 static const uint8_t lut_gain[2][4] = { { 0, 0, 0, 0 }, { 0, 1, 1, 2 } };
193
194 int ff_jpeg2000_init_component(Jpeg2000Component *comp,
195                                Jpeg2000CodingStyle *codsty,
196                                Jpeg2000QuantStyle *qntsty,
197                                int cbps, int dx, int dy,
198                                AVCodecContext *avctx)
199 {
200     uint8_t log2_band_prec_width, log2_band_prec_height;
201     int reslevelno, bandno, gbandno = 0, ret, i, j;
202     uint32_t csize;
203
204     if (codsty->nreslevels2decode <= 0) {
205         av_log(avctx, AV_LOG_ERROR, "nreslevels2decode %d invalid or uninitialized\n", codsty->nreslevels2decode);
206         return AVERROR_INVALIDDATA;
207     }
208
209     if (ret = ff_jpeg2000_dwt_init(&comp->dwt, comp->coord,
210                                    codsty->nreslevels2decode - 1,
211                                    codsty->transform))
212         return ret;
213     // component size comp->coord is uint16_t so ir cannot overflow
214     csize = (comp->coord[0][1] - comp->coord[0][0]) *
215             (comp->coord[1][1] - comp->coord[1][0]);
216
217     if (codsty->transform == FF_DWT97) {
218         csize += FF_INPUT_BUFFER_PADDING_SIZE / sizeof(*comp->f_data);
219         comp->i_data = NULL;
220         comp->f_data = av_mallocz_array(csize, sizeof(*comp->f_data));
221         if (!comp->f_data)
222             return AVERROR(ENOMEM);
223     } else {
224         csize += FF_INPUT_BUFFER_PADDING_SIZE / sizeof(*comp->i_data);
225         comp->f_data = NULL;
226         comp->i_data = av_mallocz_array(csize, sizeof(*comp->i_data));
227         if (!comp->i_data)
228             return AVERROR(ENOMEM);
229     }
230     comp->reslevel = av_mallocz_array(codsty->nreslevels, sizeof(*comp->reslevel));
231     if (!comp->reslevel)
232         return AVERROR(ENOMEM);
233     /* LOOP on resolution levels */
234     for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) {
235         int declvl = codsty->nreslevels - reslevelno;    // N_L -r see  ISO/IEC 15444-1:2002 B.5
236         Jpeg2000ResLevel *reslevel = comp->reslevel + reslevelno;
237
238         /* Compute borders for each resolution level.
239          * Computation of trx_0, trx_1, try_0 and try_1.
240          * see ISO/IEC 15444-1:2002 eq. B.5 and B-14 */
241         for (i = 0; i < 2; i++)
242             for (j = 0; j < 2; j++)
243                 reslevel->coord[i][j] =
244                     ff_jpeg2000_ceildivpow2(comp->coord_o[i][j], declvl - 1);
245         // update precincts size: 2^n value
246         reslevel->log2_prec_width  = codsty->log2_prec_widths[reslevelno];
247         reslevel->log2_prec_height = codsty->log2_prec_heights[reslevelno];
248
249         /* Number of bands for each resolution level */
250         if (reslevelno == 0)
251             reslevel->nbands = 1;
252         else
253             reslevel->nbands = 3;
254
255         /* Number of precincts which span the tile for resolution level reslevelno
256          * see B.6 in ISO/IEC 15444-1:2002 eq. B-16
257          * num_precincts_x = |- trx_1 / 2 ^ log2_prec_width) -| - (trx_0 / 2 ^ log2_prec_width)
258          * num_precincts_y = |- try_1 / 2 ^ log2_prec_width) -| - (try_0 / 2 ^ log2_prec_width)
259          * for Dcinema profiles in JPEG 2000
260          * num_precincts_x = |- trx_1 / 2 ^ log2_prec_width) -|
261          * num_precincts_y = |- try_1 / 2 ^ log2_prec_width) -| */
262         if (reslevel->coord[0][1] == reslevel->coord[0][0])
263             reslevel->num_precincts_x = 0;
264         else
265             reslevel->num_precincts_x =
266                 ff_jpeg2000_ceildivpow2(reslevel->coord[0][1],
267                                         reslevel->log2_prec_width) -
268                 (reslevel->coord[0][0] >> reslevel->log2_prec_width);
269
270         if (reslevel->coord[1][1] == reslevel->coord[1][0])
271             reslevel->num_precincts_y = 0;
272         else
273             reslevel->num_precincts_y =
274                 ff_jpeg2000_ceildivpow2(reslevel->coord[1][1],
275                                         reslevel->log2_prec_height) -
276                 (reslevel->coord[1][0] >> reslevel->log2_prec_height);
277
278         reslevel->band = av_mallocz_array(reslevel->nbands, sizeof(*reslevel->band));
279         if (!reslevel->band)
280             return AVERROR(ENOMEM);
281
282         for (bandno = 0; bandno < reslevel->nbands; bandno++, gbandno++) {
283             Jpeg2000Band *band = reslevel->band + bandno;
284             int cblkno, precno;
285             int nb_precincts;
286
287             /* TODO: Implementation of quantization step not finished,
288              * see ISO/IEC 15444-1:2002 E.1 and A.6.4. */
289             switch (qntsty->quantsty) {
290                 uint8_t gain;
291             case JPEG2000_QSTY_NONE:
292                 /* TODO: to verify. No quantization in this case */
293                 band->f_stepsize = 1;
294                 break;
295             case JPEG2000_QSTY_SI:
296                 /*TODO: Compute formula to implement. */
297 //                 numbps = cbps +
298 //                          lut_gain[codsty->transform == FF_DWT53][bandno + (reslevelno > 0)];
299 //                 band->f_stepsize = SHL(2048 + qntsty->mant[gbandno],
300 //                                        2 + numbps - qntsty->expn[gbandno]);
301 //                 break;
302             case JPEG2000_QSTY_SE:
303                 /* Exponent quantization step.
304                  * Formula:
305                  * delta_b = 2 ^ (R_b - expn_b) * (1 + (mant_b / 2 ^ 11))
306                  * R_b = R_I + log2 (gain_b )
307                  * see ISO/IEC 15444-1:2002 E.1.1 eqn. E-3 and E-4 */
308                 /* TODO/WARN: value of log2 (gain_b ) not taken into account
309                  * but it works (compared to OpenJPEG). Why?
310                  * Further investigation needed. */
311                 gain            = cbps;
312                 band->f_stepsize  = pow(2.0, gain - qntsty->expn[gbandno]);
313                 band->f_stepsize *= qntsty->mant[gbandno] / 2048.0 + 1.0;
314                 break;
315             default:
316                 band->f_stepsize = 0;
317                 av_log(avctx, AV_LOG_ERROR, "Unknown quantization format\n");
318                 break;
319             }
320             /* FIXME: In openjepg code stespize = stepsize * 0.5. Why?
321              * If not set output of entropic decoder is not correct. */
322             if (!av_codec_is_encoder(avctx->codec))
323                 band->f_stepsize *= 0.5;
324
325             band->i_stepsize = band->f_stepsize * (1 << 15);
326
327             /* computation of tbx_0, tbx_1, tby_0, tby_1
328              * see ISO/IEC 15444-1:2002 B.5 eq. B-15 and tbl B.1
329              * codeblock width and height is computed for
330              * DCI JPEG 2000 codeblock_width = codeblock_width = 32 = 2 ^ 5 */
331             if (reslevelno == 0) {
332                 /* for reslevelno = 0, only one band, x0_b = y0_b = 0 */
333                 for (i = 0; i < 2; i++)
334                     for (j = 0; j < 2; j++)
335                         band->coord[i][j] =
336                             ff_jpeg2000_ceildivpow2(comp->coord_o[i][j],
337                                                     declvl - 1);
338                 log2_band_prec_width  = reslevel->log2_prec_width;
339                 log2_band_prec_height = reslevel->log2_prec_height;
340                 /* see ISO/IEC 15444-1:2002 eq. B-17 and eq. B-15 */
341                 band->log2_cblk_width  = FFMIN(codsty->log2_cblk_width,
342                                                reslevel->log2_prec_width);
343                 band->log2_cblk_height = FFMIN(codsty->log2_cblk_height,
344                                                reslevel->log2_prec_height);
345             } else {
346                 /* 3 bands x0_b = 1 y0_b = 0; x0_b = 0 y0_b = 1; x0_b = y0_b = 1 */
347                 /* x0_b and y0_b are computed with ((bandno + 1 >> i) & 1) */
348                 for (i = 0; i < 2; i++)
349                     for (j = 0; j < 2; j++)
350                         /* Formula example for tbx_0 = ceildiv((tcx_0 - 2 ^ (declvl - 1) * x0_b) / declvl) */
351                         band->coord[i][j] =
352                             ff_jpeg2000_ceildivpow2(comp->coord_o[i][j] -
353                                                     (((bandno + 1 >> i) & 1) << declvl - 1),
354                                                     declvl);
355                 /* TODO: Manage case of 3 band offsets here or
356                  * in coding/decoding function? */
357
358                 /* see ISO/IEC 15444-1:2002 eq. B-17 and eq. B-15 */
359                 band->log2_cblk_width  = FFMIN(codsty->log2_cblk_width,
360                                                reslevel->log2_prec_width - 1);
361                 band->log2_cblk_height = FFMIN(codsty->log2_cblk_height,
362                                                reslevel->log2_prec_height - 1);
363
364                 log2_band_prec_width  = reslevel->log2_prec_width  - 1;
365                 log2_band_prec_height = reslevel->log2_prec_height - 1;
366             }
367
368             if (reslevel->num_precincts_x * (uint64_t)reslevel->num_precincts_y > INT_MAX) {
369                 band->prec = NULL;
370                 return AVERROR(ENOMEM);
371             }
372             nb_precincts = reslevel->num_precincts_x * reslevel->num_precincts_y;
373             band->prec = av_mallocz_array(nb_precincts, sizeof(*band->prec));
374             if (!band->prec)
375                 return AVERROR(ENOMEM);
376
377             for (precno = 0; precno < nb_precincts; precno++) {
378                 Jpeg2000Prec *prec = band->prec + precno;
379                 int nb_codeblocks;
380
381                 /* TODO: Explain formula for JPEG200 DCINEMA. */
382                 /* TODO: Verify with previous count of codeblocks per band */
383
384                 /* Compute P_x0 */
385                 prec->coord[0][0] = ((band->coord[0][0] >> reslevel->log2_prec_width) + precno % reslevel->num_precincts_x) *
386                                     (1 << log2_band_prec_width);
387                 prec->coord[0][0] = FFMAX(prec->coord[0][0], band->coord[0][0]);
388
389                 /* Compute P_y0 */
390                 prec->coord[1][0] = ((band->coord[1][0] >> reslevel->log2_prec_height) + precno / reslevel->num_precincts_x) *
391                                     (1 << log2_band_prec_height);
392                 prec->coord[1][0] = FFMAX(prec->coord[1][0], band->coord[1][0]);
393
394                 /* Compute P_x1 */
395                 prec->coord[0][1] = prec->coord[0][0] +
396                                     (1 << log2_band_prec_width);
397                 prec->coord[0][1] = FFMIN(prec->coord[0][1], band->coord[0][1]);
398
399                 /* Compute P_y1 */
400                 prec->coord[1][1] = prec->coord[1][0] +
401                                     (1 << log2_band_prec_height);
402                 prec->coord[1][1] = FFMIN(prec->coord[1][1], band->coord[1][1]);
403
404                 prec->nb_codeblocks_width =
405                     ff_jpeg2000_ceildivpow2(prec->coord[0][1] -
406                                             prec->coord[0][0],
407                                             band->log2_cblk_width);
408                 prec->nb_codeblocks_height =
409                     ff_jpeg2000_ceildivpow2(prec->coord[1][1] -
410                                             prec->coord[1][0],
411                                             band->log2_cblk_height);
412
413                 /* Tag trees initialization */
414                 prec->cblkincl =
415                     ff_jpeg2000_tag_tree_init(prec->nb_codeblocks_width,
416                                               prec->nb_codeblocks_height);
417                 if (!prec->cblkincl)
418                     return AVERROR(ENOMEM);
419
420                 prec->zerobits =
421                     ff_jpeg2000_tag_tree_init(prec->nb_codeblocks_width,
422                                               prec->nb_codeblocks_height);
423                 if (!prec->zerobits)
424                     return AVERROR(ENOMEM);
425
426                 if (prec->nb_codeblocks_width * (uint64_t)prec->nb_codeblocks_height > INT_MAX) {
427                     prec->cblk = NULL;
428                     return AVERROR(ENOMEM);
429                 }
430                 nb_codeblocks = prec->nb_codeblocks_width * prec->nb_codeblocks_height;
431                 prec->cblk = av_mallocz_array(nb_codeblocks, sizeof(*prec->cblk));
432                 if (!prec->cblk)
433                     return AVERROR(ENOMEM);
434                 for (cblkno = 0; cblkno < nb_codeblocks; cblkno++) {
435                     Jpeg2000Cblk *cblk = prec->cblk + cblkno;
436                     uint16_t Cx0, Cy0;
437
438                     /* Compute coordinates of codeblocks */
439                     /* Compute Cx0*/
440                     Cx0 = ((prec->coord[0][0] - band->coord[0][0]) >> band->log2_cblk_width) << band->log2_cblk_width;
441                     Cx0 = Cx0 + ((cblkno % prec->nb_codeblocks_width)  << band->log2_cblk_width);
442                     cblk->coord[0][0] = FFMAX(Cx0, prec->coord[0][0] - band->coord[0][0]);
443
444                     /* Compute Cy0*/
445                     Cy0 = ((prec->coord[1][0] - band->coord[1][0]) >> band->log2_cblk_height) << band->log2_cblk_height;
446                     Cy0 = Cy0 + ((cblkno / prec->nb_codeblocks_width)   << band->log2_cblk_height);
447                     cblk->coord[1][0] = FFMAX(Cy0, prec->coord[1][0] - band->coord[1][0]);
448
449                     /* Compute Cx1 */
450                     cblk->coord[0][1] = FFMIN(Cx0 + (1 << band->log2_cblk_width),
451                                               prec->coord[0][1] - band->coord[0][0]);
452
453                     /* Compute Cy1 */
454                     cblk->coord[1][1] = FFMIN(Cy0 + (1 << band->log2_cblk_height),
455                                               prec->coord[1][1] - band->coord[1][0]);
456                     /* Update code-blocks coordinates according sub-band position */
457                     if ((bandno + !!reslevelno) & 1) {
458                         cblk->coord[0][0] += comp->reslevel[reslevelno-1].coord[0][1] -
459                                              comp->reslevel[reslevelno-1].coord[0][0];
460                         cblk->coord[0][1] += comp->reslevel[reslevelno-1].coord[0][1] -
461                                              comp->reslevel[reslevelno-1].coord[0][0];
462                     }
463                     if ((bandno + !!reslevelno) & 2) {
464                         cblk->coord[1][0] += comp->reslevel[reslevelno-1].coord[1][1] -
465                                              comp->reslevel[reslevelno-1].coord[1][0];
466                         cblk->coord[1][1] += comp->reslevel[reslevelno-1].coord[1][1] -
467                                              comp->reslevel[reslevelno-1].coord[1][0];
468                     }
469
470                     cblk->zero      = 0;
471                     cblk->lblock    = 3;
472                     cblk->length    = 0;
473                     memset(cblk->lengthinc, 0, sizeof(cblk->lengthinc));
474                     cblk->npasses   = 0;
475                 }
476             }
477         }
478     }
479     return 0;
480 }
481
482 void ff_jpeg2000_reinit(Jpeg2000Component *comp, Jpeg2000CodingStyle *codsty)
483 {
484     int reslevelno, bandno, cblkno, precno;
485     for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) {
486         Jpeg2000ResLevel *rlevel = comp->reslevel + reslevelno;
487         for (bandno = 0; bandno < rlevel->nbands; bandno++) {
488             Jpeg2000Band *band = rlevel->band + bandno;
489             for(precno = 0; precno < rlevel->num_precincts_x * rlevel->num_precincts_y; precno++) {
490                 Jpeg2000Prec *prec = band->prec + precno;
491                 tag_tree_zero(prec->zerobits, prec->nb_codeblocks_width, prec->nb_codeblocks_height);
492                 tag_tree_zero(prec->cblkincl, prec->nb_codeblocks_width, prec->nb_codeblocks_height);
493                 for (cblkno = 0; cblkno < prec->nb_codeblocks_width * prec->nb_codeblocks_height; cblkno++) {
494                     Jpeg2000Cblk *cblk = prec->cblk + cblkno;
495                     cblk->length = 0;
496                     cblk->lblock = 3;
497                 }
498             }
499         }
500     }
501 }
502
503 void ff_jpeg2000_cleanup(Jpeg2000Component *comp, Jpeg2000CodingStyle *codsty)
504 {
505     int reslevelno, bandno, precno;
506     for (reslevelno = 0;
507          comp->reslevel && reslevelno < codsty->nreslevels;
508          reslevelno++) {
509         Jpeg2000ResLevel *reslevel;
510
511         if (!comp->reslevel)
512             continue;
513
514         reslevel = comp->reslevel + reslevelno;
515         for (bandno = 0; bandno < reslevel->nbands; bandno++) {
516             Jpeg2000Band *band;
517
518             if (!reslevel->band)
519                 continue;
520
521             band = reslevel->band + bandno;
522             for (precno = 0; precno < reslevel->num_precincts_x * reslevel->num_precincts_y; precno++) {
523                 if (band->prec) {
524                     Jpeg2000Prec *prec = band->prec + precno;
525                     av_freep(&prec->zerobits);
526                     av_freep(&prec->cblkincl);
527                     av_freep(&prec->cblk);
528                 }
529             }
530
531             av_freep(&band->prec);
532         }
533         av_freep(&reslevel->band);
534     }
535
536     ff_dwt_destroy(&comp->dwt);
537     av_freep(&comp->reslevel);
538     av_freep(&comp->i_data);
539     av_freep(&comp->f_data);
540 }