Coverage Report

Created: 2025-06-12 06:52

/src/opencv/3rdparty/openjpeg/openjp2/tgt.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * The copyright in this software is being made available under the 2-clauses
3
 * BSD License, included below. This software may be subject to other third
4
 * party and contributor rights, including patent rights, and no such rights
5
 * are granted under this license.
6
 *
7
 * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
8
 * Copyright (c) 2002-2014, Professor Benoit Macq
9
 * Copyright (c) 2001-2003, David Janssens
10
 * Copyright (c) 2002-2003, Yannick Verschueren
11
 * Copyright (c) 2003-2007, Francois-Olivier Devaux
12
 * Copyright (c) 2003-2014, Antonin Descampe
13
 * Copyright (c) 2005, Herve Drolon, FreeImage Team
14
 * Copyright (c) 2008, 2011-2012, Centre National d'Etudes Spatiales (CNES), FR
15
 * Copyright (c) 2012, CS Systemes d'Information, France
16
 * All rights reserved.
17
 *
18
 * Redistribution and use in source and binary forms, with or without
19
 * modification, are permitted provided that the following conditions
20
 * are met:
21
 * 1. Redistributions of source code must retain the above copyright
22
 *    notice, this list of conditions and the following disclaimer.
23
 * 2. Redistributions in binary form must reproduce the above copyright
24
 *    notice, this list of conditions and the following disclaimer in the
25
 *    documentation and/or other materials provided with the distribution.
26
 *
27
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
28
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
31
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37
 * POSSIBILITY OF SUCH DAMAGE.
38
 */
39
40
#include "opj_includes.h"
41
42
/*
43
==========================================================
44
   Tag-tree coder interface
45
==========================================================
46
*/
47
48
opj_tgt_tree_t *opj_tgt_create(OPJ_UINT32 numleafsh, OPJ_UINT32 numleafsv,
49
                               opj_event_mgr_t *p_manager)
50
5.52M
{
51
5.52M
    OPJ_INT32 nplh[32];
52
5.52M
    OPJ_INT32 nplv[32];
53
5.52M
    opj_tgt_node_t *node = 00;
54
5.52M
    opj_tgt_node_t *l_parent_node = 00;
55
5.52M
    opj_tgt_node_t *l_parent_node0 = 00;
56
5.52M
    opj_tgt_tree_t *tree = 00;
57
5.52M
    OPJ_UINT32 i;
58
5.52M
    OPJ_INT32  j, k;
59
5.52M
    OPJ_UINT32 numlvls;
60
5.52M
    OPJ_UINT32 n;
61
62
5.52M
    tree = (opj_tgt_tree_t *) opj_calloc(1, sizeof(opj_tgt_tree_t));
63
5.52M
    if (!tree) {
64
0
        opj_event_msg(p_manager, EVT_ERROR, "Not enough memory to create Tag-tree\n");
65
0
        return 00;
66
0
    }
67
68
5.52M
    tree->numleafsh = numleafsh;
69
5.52M
    tree->numleafsv = numleafsv;
70
71
5.52M
    numlvls = 0;
72
5.52M
    nplh[0] = (OPJ_INT32)numleafsh;
73
5.52M
    nplv[0] = (OPJ_INT32)numleafsv;
74
5.52M
    tree->numnodes = 0;
75
6.13M
    do {
76
6.13M
        n = (OPJ_UINT32)(nplh[numlvls] * nplv[numlvls]);
77
6.13M
        nplh[numlvls + 1] = (nplh[numlvls] + 1) / 2;
78
6.13M
        nplv[numlvls + 1] = (nplv[numlvls] + 1) / 2;
79
6.13M
        tree->numnodes += n;
80
6.13M
        ++numlvls;
81
6.13M
    } while (n > 1);
82
83
    /* ADD */
84
5.52M
    if (tree->numnodes == 0) {
85
17.5k
        opj_free(tree);
86
17.5k
        return 00;
87
17.5k
    }
88
89
5.50M
    tree->nodes = (opj_tgt_node_t*) opj_calloc(tree->numnodes,
90
5.50M
                  sizeof(opj_tgt_node_t));
91
5.50M
    if (!tree->nodes) {
92
0
        opj_event_msg(p_manager, EVT_ERROR,
93
0
                      "Not enough memory to create Tag-tree nodes\n");
94
0
        opj_free(tree);
95
0
        return 00;
96
0
    }
97
5.50M
    tree->nodes_size = tree->numnodes * (OPJ_UINT32)sizeof(opj_tgt_node_t);
98
99
5.50M
    node = tree->nodes;
100
5.50M
    l_parent_node = &tree->nodes[tree->numleafsh * tree->numleafsv];
101
5.50M
    l_parent_node0 = l_parent_node;
102
103
6.11M
    for (i = 0; i < numlvls - 1; ++i) {
104
3.10M
        for (j = 0; j < nplv[i]; ++j) {
105
2.49M
            k = nplh[i];
106
5.32M
            while (--k >= 0) {
107
2.82M
                node->parent = l_parent_node;
108
2.82M
                ++node;
109
2.82M
                if (--k >= 0) {
110
451k
                    node->parent = l_parent_node;
111
451k
                    ++node;
112
451k
                }
113
2.82M
                ++l_parent_node;
114
2.82M
            }
115
2.49M
            if ((j & 1) || j == nplv[i] - 1) {
116
1.29M
                l_parent_node0 = l_parent_node;
117
1.29M
            } else {
118
1.19M
                l_parent_node = l_parent_node0;
119
1.19M
                l_parent_node0 += nplh[i];
120
1.19M
            }
121
2.49M
        }
122
609k
    }
123
5.50M
    node->parent = 0;
124
5.50M
    opj_tgt_reset(tree);
125
5.50M
    return tree;
126
5.50M
}
127
128
/**
129
 * Reinitialises a tag-tree from an existing one.
130
 *
131
 * @param       p_tree                          the tree to reinitialize.
132
 * @param       p_num_leafs_h           the width of the array of leafs of the tree
133
 * @param       p_num_leafs_v           the height of the array of leafs of the tree
134
 * @return      a new tag-tree if successful, NULL otherwise
135
*/
136
opj_tgt_tree_t *opj_tgt_init(opj_tgt_tree_t * p_tree, OPJ_UINT32 p_num_leafs_h,
137
                             OPJ_UINT32 p_num_leafs_v, opj_event_mgr_t *p_manager)
138
0
{
139
0
    OPJ_INT32 l_nplh[32];
140
0
    OPJ_INT32 l_nplv[32];
141
0
    opj_tgt_node_t *l_node = 00;
142
0
    opj_tgt_node_t *l_parent_node = 00;
143
0
    opj_tgt_node_t *l_parent_node0 = 00;
144
0
    OPJ_UINT32 i;
145
0
    OPJ_INT32 j, k;
146
0
    OPJ_UINT32 l_num_levels;
147
0
    OPJ_UINT32 n;
148
0
    OPJ_UINT32 l_node_size;
149
150
0
    if (! p_tree) {
151
0
        return 00;
152
0
    }
153
154
0
    if ((p_tree->numleafsh != p_num_leafs_h) ||
155
0
            (p_tree->numleafsv != p_num_leafs_v)) {
156
0
        p_tree->numleafsh = p_num_leafs_h;
157
0
        p_tree->numleafsv = p_num_leafs_v;
158
159
0
        l_num_levels = 0;
160
0
        l_nplh[0] = (OPJ_INT32)p_num_leafs_h;
161
0
        l_nplv[0] = (OPJ_INT32)p_num_leafs_v;
162
0
        p_tree->numnodes = 0;
163
0
        do {
164
0
            n = (OPJ_UINT32)(l_nplh[l_num_levels] * l_nplv[l_num_levels]);
165
0
            l_nplh[l_num_levels + 1] = (l_nplh[l_num_levels] + 1) / 2;
166
0
            l_nplv[l_num_levels + 1] = (l_nplv[l_num_levels] + 1) / 2;
167
0
            p_tree->numnodes += n;
168
0
            ++l_num_levels;
169
0
        } while (n > 1);
170
171
        /* ADD */
172
0
        if (p_tree->numnodes == 0) {
173
0
            opj_tgt_destroy(p_tree);
174
0
            return 00;
175
0
        }
176
0
        l_node_size = p_tree->numnodes * (OPJ_UINT32)sizeof(opj_tgt_node_t);
177
178
0
        if (l_node_size > p_tree->nodes_size) {
179
0
            opj_tgt_node_t* new_nodes = (opj_tgt_node_t*) opj_realloc(p_tree->nodes,
180
0
                                        l_node_size);
181
0
            if (! new_nodes) {
182
0
                opj_event_msg(p_manager, EVT_ERROR,
183
0
                              "Not enough memory to reinitialize the tag tree\n");
184
0
                opj_tgt_destroy(p_tree);
185
0
                return 00;
186
0
            }
187
0
            p_tree->nodes = new_nodes;
188
0
            memset(((char *) p_tree->nodes) + p_tree->nodes_size, 0,
189
0
                   l_node_size - p_tree->nodes_size);
190
0
            p_tree->nodes_size = l_node_size;
191
0
        }
192
0
        l_node = p_tree->nodes;
193
0
        l_parent_node = &p_tree->nodes[p_tree->numleafsh * p_tree->numleafsv];
194
0
        l_parent_node0 = l_parent_node;
195
196
0
        for (i = 0; i < l_num_levels - 1; ++i) {
197
0
            for (j = 0; j < l_nplv[i]; ++j) {
198
0
                k = l_nplh[i];
199
0
                while (--k >= 0) {
200
0
                    l_node->parent = l_parent_node;
201
0
                    ++l_node;
202
0
                    if (--k >= 0) {
203
0
                        l_node->parent = l_parent_node;
204
0
                        ++l_node;
205
0
                    }
206
0
                    ++l_parent_node;
207
0
                }
208
0
                if ((j & 1) || j == l_nplv[i] - 1) {
209
0
                    l_parent_node0 = l_parent_node;
210
0
                } else {
211
0
                    l_parent_node = l_parent_node0;
212
0
                    l_parent_node0 += l_nplh[i];
213
0
                }
214
0
            }
215
0
        }
216
0
        l_node->parent = 0;
217
0
    }
218
0
    opj_tgt_reset(p_tree);
219
220
0
    return p_tree;
221
0
}
222
223
void opj_tgt_destroy(opj_tgt_tree_t *p_tree)
224
5.52M
{
225
5.52M
    if (! p_tree) {
226
17.5k
        return;
227
17.5k
    }
228
229
5.50M
    if (p_tree->nodes) {
230
5.50M
        opj_free(p_tree->nodes);
231
5.50M
        p_tree->nodes = 00;
232
5.50M
    }
233
5.50M
    opj_free(p_tree);
234
5.50M
}
235
236
void opj_tgt_reset(opj_tgt_tree_t *p_tree)
237
10.9M
{
238
10.9M
    OPJ_UINT32 i;
239
10.9M
    opj_tgt_node_t * l_current_node = 00;;
240
241
10.9M
    if (! p_tree) {
242
5.87k
        return;
243
5.87k
    }
244
245
10.9M
    l_current_node = p_tree->nodes;
246
28.0M
    for (i = 0; i < p_tree->numnodes; ++i) {
247
17.1M
        l_current_node->value = 999;
248
17.1M
        l_current_node->low = 0;
249
17.1M
        l_current_node->known = 0;
250
17.1M
        ++l_current_node;
251
17.1M
    }
252
10.9M
}
253
254
void opj_tgt_setvalue(opj_tgt_tree_t *tree, OPJ_UINT32 leafno, OPJ_INT32 value)
255
0
{
256
0
    opj_tgt_node_t *node;
257
0
    node = &tree->nodes[leafno];
258
0
    while (node && node->value > value) {
259
0
        node->value = value;
260
0
        node = node->parent;
261
0
    }
262
0
}
263
264
void opj_tgt_encode(opj_bio_t *bio, opj_tgt_tree_t *tree, OPJ_UINT32 leafno,
265
                    OPJ_INT32 threshold)
266
0
{
267
0
    opj_tgt_node_t *stk[31];
268
0
    opj_tgt_node_t **stkptr;
269
0
    opj_tgt_node_t *node;
270
0
    OPJ_INT32 low;
271
272
0
    stkptr = stk;
273
0
    node = &tree->nodes[leafno];
274
0
    while (node->parent) {
275
0
        *stkptr++ = node;
276
0
        node = node->parent;
277
0
    }
278
279
0
    low = 0;
280
0
    for (;;) {
281
0
        if (low > node->low) {
282
0
            node->low = low;
283
0
        } else {
284
0
            low = node->low;
285
0
        }
286
287
0
        while (low < threshold) {
288
0
            if (low >= node->value) {
289
0
                if (!node->known) {
290
0
                    opj_bio_putbit(bio, 1);
291
0
                    node->known = 1;
292
0
                }
293
0
                break;
294
0
            }
295
0
            opj_bio_putbit(bio, 0);
296
0
            ++low;
297
0
        }
298
299
0
        node->low = low;
300
0
        if (stkptr == stk) {
301
0
            break;
302
0
        }
303
0
        node = *--stkptr;
304
0
    }
305
0
}
306
307
OPJ_UINT32 opj_tgt_decode(opj_bio_t *bio, opj_tgt_tree_t *tree,
308
                          OPJ_UINT32 leafno, OPJ_INT32 threshold)
309
1.23M
{
310
1.23M
    opj_tgt_node_t *stk[31];
311
1.23M
    opj_tgt_node_t **stkptr;
312
1.23M
    opj_tgt_node_t *node;
313
1.23M
    OPJ_INT32 low;
314
315
1.23M
    stkptr = stk;
316
1.23M
    node = &tree->nodes[leafno];
317
3.32M
    while (node->parent) {
318
2.09M
        *stkptr++ = node;
319
2.09M
        node = node->parent;
320
2.09M
    }
321
322
1.23M
    low = 0;
323
3.32M
    for (;;) {
324
3.32M
        if (low > node->low) {
325
410k
            node->low = low;
326
2.91M
        } else {
327
2.91M
            low = node->low;
328
2.91M
        }
329
4.32M
        while (low < threshold && low < node->value) {
330
992k
            if (opj_bio_read(bio, 1)) {
331
581k
                node->value = low;
332
581k
            } else {
333
410k
                ++low;
334
410k
            }
335
992k
        }
336
3.32M
        node->low = low;
337
3.32M
        if (stkptr == stk) {
338
1.23M
            break;
339
1.23M
        }
340
2.09M
        node = *--stkptr;
341
2.09M
    }
342
343
1.23M
    return (node->value < threshold) ? 1 : 0;
344
1.23M
}