Coverage Report

Created: 2025-12-31 06:53

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/opencv/3rdparty/openjpeg/openjp2/ht_dec.c
Line
Count
Source
1
//***************************************************************************/
2
// This software is released under the 2-Clause BSD license, included
3
// below.
4
//
5
// Copyright (c) 2021, Aous Naman
6
// Copyright (c) 2021, Kakadu Software Pty Ltd, Australia
7
// Copyright (c) 2021, The University of New South Wales, Australia
8
//
9
// Redistribution and use in source and binary forms, with or without
10
// modification, are permitted provided that the following conditions are
11
// met:
12
//
13
// 1. Redistributions of source code must retain the above copyright
14
// notice, this list of conditions and the following disclaimer.
15
//
16
// 2. Redistributions in binary form must reproduce the above copyright
17
// notice, this list of conditions and the following disclaimer in the
18
// documentation and/or other materials provided with the distribution.
19
//
20
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
21
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23
// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24
// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
26
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
//***************************************************************************/
32
// This file is part of the OpenJpeg software implementation.
33
// File: ht_dec.c
34
// Author: Aous Naman
35
// Date: 01 September 2021
36
//***************************************************************************/
37
38
//***************************************************************************/
39
/** @file ht_dec.c
40
 *  @brief implements HTJ2K block decoder
41
 */
42
43
#include <assert.h>
44
#include <string.h>
45
#include "opj_includes.h"
46
47
#include "t1_ht_luts.h"
48
49
/////////////////////////////////////////////////////////////////////////////
50
// compiler detection
51
/////////////////////////////////////////////////////////////////////////////
52
#ifdef _MSC_VER
53
#define OPJ_COMPILER_MSVC
54
#elif (defined __GNUC__)
55
#define OPJ_COMPILER_GNUC
56
#endif
57
58
#if defined(OPJ_COMPILER_MSVC) && defined(_M_ARM64) \
59
    && !defined(_M_ARM64EC) && !defined(_M_CEE_PURE) && !defined(__CUDACC__) \
60
    && !defined(__INTEL_COMPILER) && !defined(__clang__)
61
#define MSVC_NEON_INTRINSICS
62
#endif
63
64
#ifdef MSVC_NEON_INTRINSICS
65
#include <arm64_neon.h>
66
#endif
67
68
//************************************************************************/
69
/** @brief Displays the error message for disabling the decoding of SPP and
70
  * MRP passes
71
  */
72
static OPJ_BOOL only_cleanup_pass_is_decoded = OPJ_FALSE;
73
74
//************************************************************************/
75
/** @brief Generates population count (i.e., the number of set bits)
76
  *
77
  *   @param [in]  val is the value for which population count is sought
78
  */
79
static INLINE
80
OPJ_UINT32 population_count(OPJ_UINT32 val)
81
7.19k
{
82
#if defined(OPJ_COMPILER_MSVC) && (defined(_M_IX86) || defined(_M_AMD64))
83
    return (OPJ_UINT32)__popcnt(val);
84
#elif defined(OPJ_COMPILER_MSVC) && defined(MSVC_NEON_INTRINSICS)
85
    const __n64 temp = neon_cnt(__uint64ToN64_v(val));
86
    return neon_addv8(temp).n8_i8[0];
87
#elif (defined OPJ_COMPILER_GNUC)
88
    return (OPJ_UINT32)__builtin_popcount(val);
89
#else
90
    val -= ((val >> 1) & 0x55555555);
91
    val = (((val >> 2) & 0x33333333) + (val & 0x33333333));
92
    val = (((val >> 4) + val) & 0x0f0f0f0f);
93
    val += (val >> 8);
94
    val += (val >> 16);
95
    return (OPJ_UINT32)(val & 0x0000003f);
96
#endif
97
7.19k
}
98
99
//************************************************************************/
100
/** @brief Counts the number of leading zeros
101
  *
102
  *   @param [in]  val is the value for which leading zero count is sought
103
  */
104
#ifdef OPJ_COMPILER_MSVC
105
#pragma intrinsic(_BitScanReverse)
106
#endif
107
static INLINE
108
OPJ_UINT32 count_leading_zeros(OPJ_UINT32 val)
109
28.3k
{
110
#ifdef OPJ_COMPILER_MSVC
111
    unsigned long result = 0;
112
    _BitScanReverse(&result, val);
113
    return 31U ^ (OPJ_UINT32)result;
114
#elif (defined OPJ_COMPILER_GNUC)
115
    return (OPJ_UINT32)__builtin_clz(val);
116
#else
117
    val |= (val >> 1);
118
    val |= (val >> 2);
119
    val |= (val >> 4);
120
    val |= (val >> 8);
121
    val |= (val >> 16);
122
    return 32U - population_count(val);
123
#endif
124
28.3k
}
125
126
//************************************************************************/
127
/** @brief Read a little-endian serialized UINT32.
128
  *
129
  *   @param [in]  dataIn pointer to byte stream to read from
130
  */
131
static INLINE OPJ_UINT32 read_le_uint32(const void* dataIn)
132
15.5k
{
133
#if defined(OPJ_BIG_ENDIAN)
134
    const OPJ_UINT8* data = (const OPJ_UINT8*)dataIn;
135
    return ((OPJ_UINT32)data[0]) | (OPJ_UINT32)(data[1] << 8) | (OPJ_UINT32)(
136
               data[2] << 16) | (((
137
                                      OPJ_UINT32)data[3]) <<
138
                                 24U);
139
#else
140
15.5k
    return *(OPJ_UINT32*)dataIn;
141
15.5k
#endif
142
15.5k
}
143
144
//************************************************************************/
145
/** @brief MEL state structure for reading and decoding the MEL bitstream
146
  *
147
  *  A number of events is decoded from the MEL bitstream ahead of time
148
  *  and stored in run/num_runs.
149
  *  Each run represents the number of zero events before a one event.
150
  */
151
typedef struct dec_mel {
152
    // data decoding machinery
153
    OPJ_UINT8* data;  //!<the address of data (or bitstream)
154
    OPJ_UINT64 tmp;   //!<temporary buffer for read data
155
    int bits;         //!<number of bits stored in tmp
156
    int size;         //!<number of bytes in MEL code
157
    OPJ_BOOL unstuff; //!<true if the next bit needs to be unstuffed
158
    int k;            //!<state of MEL decoder
159
160
    // queue of decoded runs
161
    int num_runs;    //!<number of decoded runs left in runs (maximum 8)
162
    OPJ_UINT64 runs; //!<runs of decoded MEL codewords (7 bits/run)
163
} dec_mel_t;
164
165
//************************************************************************/
166
/** @brief Reads and unstuffs the MEL bitstream
167
  *
168
  *  This design needs more bytes in the codeblock buffer than the length
169
  *  of the cleanup pass by up to 2 bytes.
170
  *
171
  *  Unstuffing removes the MSB of the byte following a byte whose
172
  *  value is 0xFF; this prevents sequences larger than 0xFF7F in value
173
  *  from appearing the bitstream.
174
  *
175
  *  @param [in]  melp is a pointer to dec_mel_t structure
176
  */
177
static INLINE
178
void mel_read(dec_mel_t *melp)
179
791
{
180
791
    OPJ_UINT32 val;
181
791
    int bits;
182
791
    OPJ_UINT32 t;
183
791
    OPJ_BOOL unstuff;
184
185
791
    if (melp->bits > 32) { //there are enough bits in the tmp variable
186
0
        return;    // return without reading new data
187
0
    }
188
189
791
    val = 0xFFFFFFFF;      // feed in 0xFF if buffer is exhausted
190
791
    if (melp->size > 4) {  // if there is more than 4 bytes the MEL segment
191
758
        val = read_le_uint32(melp->data);  // read 32 bits from MEL data
192
758
        melp->data += 4;           // advance pointer
193
758
        melp->size -= 4;           // reduce counter
194
758
    } else if (melp->size > 0) { // 4 or less
195
20
        OPJ_UINT32 m, v;
196
20
        int i = 0;
197
61
        while (melp->size > 1) {
198
41
            OPJ_UINT32 v = *melp->data++; // read one byte at a time
199
41
            OPJ_UINT32 m = ~(0xFFu << i); // mask of location
200
41
            val = (val & m) | (v << i);   // put byte in its correct location
201
41
            --melp->size;
202
41
            i += 8;
203
41
        }
204
        // size equal to 1
205
20
        v = *melp->data++;  // the one before the last is different
206
20
        v |= 0xF;                         // MEL and VLC segments can overlap
207
20
        m = ~(0xFFu << i);
208
20
        val = (val & m) | (v << i);
209
20
        --melp->size;
210
20
    }
211
212
    // next we unstuff them before adding them to the buffer
213
791
    bits = 32 - melp->unstuff;      // number of bits in val, subtract 1 if
214
    // the previously read byte requires
215
    // unstuffing
216
217
    // data is unstuffed and accumulated in t
218
    // bits has the number of bits in t
219
791
    t = val & 0xFF;
220
791
    unstuff = ((val & 0xFF) == 0xFF); // true if the byte needs unstuffing
221
791
    bits -= unstuff; // there is one less bit in t if unstuffing is needed
222
791
    t = t << (8 - unstuff); // move up to make room for the next byte
223
224
    //this is a repeat of the above
225
791
    t |= (val >> 8) & 0xFF;
226
791
    unstuff = (((val >> 8) & 0xFF) == 0xFF);
227
791
    bits -= unstuff;
228
791
    t = t << (8 - unstuff);
229
230
791
    t |= (val >> 16) & 0xFF;
231
791
    unstuff = (((val >> 16) & 0xFF) == 0xFF);
232
791
    bits -= unstuff;
233
791
    t = t << (8 - unstuff);
234
235
791
    t |= (val >> 24) & 0xFF;
236
791
    melp->unstuff = (((val >> 24) & 0xFF) == 0xFF);
237
238
    // move t to tmp, and push the result all the way up, so we read from
239
    // the MSB
240
791
    melp->tmp |= ((OPJ_UINT64)t) << (64 - bits - melp->bits);
241
791
    melp->bits += bits; //increment the number of bits in tmp
242
791
}
243
244
//************************************************************************/
245
/** @brief Decodes unstuffed MEL segment bits stored in tmp to runs
246
  *
247
  *  Runs are stored in "runs" and the number of runs in "num_runs".
248
  *  Each run represents a number of zero events that may or may not
249
  *  terminate in a 1 event.
250
  *  Each run is stored in 7 bits.  The LSB is 1 if the run terminates in
251
  *  a 1 event, 0 otherwise.  The next 6 bits, for the case terminating
252
  *  with 1, contain the number of consecutive 0 zero events * 2; for the
253
  *  case terminating with 0, they store (number of consecutive 0 zero
254
  *  events - 1) * 2.
255
  *  A total of 6 bits (made up of 1 + 5) should have been enough.
256
  *
257
  *  @param [in]  melp is a pointer to dec_mel_t structure
258
  */
259
static INLINE
260
void mel_decode(dec_mel_t *melp)
261
2.93k
{
262
2.93k
    static const int mel_exp[13] = { //MEL exponents
263
2.93k
        0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 4, 5
264
2.93k
    };
265
266
2.93k
    if (melp->bits < 6) { // if there are less than 6 bits in tmp
267
791
        mel_read(melp);    // then read from the MEL bitstream
268
791
    }
269
    // 6 bits is the largest decodable MEL cwd
270
271
    //repeat so long that there is enough decodable bits in tmp,
272
    // and the runs store is not full (num_runs < 8)
273
24.0k
    while (melp->bits >= 6 && melp->num_runs < 8) {
274
21.0k
        int eval = mel_exp[melp->k]; // number of bits associated with state
275
21.0k
        int run = 0;
276
21.0k
        if (melp->tmp & (1ull << 63)) { //The next bit to decode (stored in MSB)
277
            //one is found
278
6.79k
            run = 1 << eval;
279
6.79k
            run--; // consecutive runs of 0 events - 1
280
6.79k
            melp->k = melp->k + 1 < 12 ? melp->k + 1 : 12;//increment, max is 12
281
6.79k
            melp->tmp <<= 1; // consume one bit from tmp
282
6.79k
            melp->bits -= 1;
283
6.79k
            run = run << 1; // a stretch of zeros not terminating in one
284
14.2k
        } else {
285
            //0 is found
286
14.2k
            run = (int)(melp->tmp >> (63 - eval)) & ((1 << eval) - 1);
287
14.2k
            melp->k = melp->k - 1 > 0 ? melp->k - 1 : 0; //decrement, min is 0
288
14.2k
            melp->tmp <<= eval + 1; //consume eval + 1 bits (max is 6)
289
14.2k
            melp->bits -= eval + 1;
290
14.2k
            run = (run << 1) + 1; // a stretch of zeros terminating with one
291
14.2k
        }
292
21.0k
        eval = melp->num_runs * 7;                 // 7 bits per run
293
21.0k
        melp->runs &= ~((OPJ_UINT64)0x3F << eval); // 6 bits are sufficient
294
21.0k
        melp->runs |= ((OPJ_UINT64)run) << eval;   // store the value in runs
295
21.0k
        melp->num_runs++;                          // increment count
296
21.0k
    }
297
2.93k
}
298
299
//************************************************************************/
300
/** @brief Initiates a dec_mel_t structure for MEL decoding and reads
301
  *         some bytes in order to get the read address to a multiple
302
  *         of 4
303
  *
304
  *  @param [in]  melp is a pointer to dec_mel_t structure
305
  *  @param [in]  bbuf is a pointer to byte buffer
306
  *  @param [in]  lcup is the length of MagSgn+MEL+VLC segments
307
  *  @param [in]  scup is the length of MEL+VLC segments
308
  */
309
static INLINE
310
OPJ_BOOL mel_init(dec_mel_t *melp, OPJ_UINT8* bbuf, int lcup, int scup)
311
396
{
312
396
    int num;
313
396
    int i;
314
315
396
    melp->data = bbuf + lcup - scup; // move the pointer to the start of MEL
316
396
    melp->bits = 0;                  // 0 bits in tmp
317
396
    melp->tmp = 0;                   //
318
396
    melp->unstuff = OPJ_FALSE;       // no unstuffing
319
396
    melp->size = scup - 1;           // size is the length of MEL+VLC-1
320
396
    melp->k = 0;                     // 0 for state
321
396
    melp->num_runs = 0;              // num_runs is 0
322
396
    melp->runs = 0;                  //
323
324
    //This code is borrowed; original is for a different architecture
325
    //These few lines take care of the case where data is not at a multiple
326
    // of 4 boundary.  It reads 1,2,3 up to 4 bytes from the MEL segment
327
396
    num = 4 - (int)((intptr_t)(melp->data) & 0x3);
328
1.05k
    for (i = 0; i < num; ++i) { // this code is similar to mel_read
329
658
        OPJ_UINT64 d;
330
658
        int d_bits;
331
332
658
        if (melp->unstuff == OPJ_TRUE && melp->data[0] > 0x8F) {
333
0
            return OPJ_FALSE;
334
0
        }
335
658
        d = (melp->size > 0) ? *melp->data : 0xFF; // if buffer is consumed
336
        // set data to 0xFF
337
658
        if (melp->size == 1) {
338
0
            d |= 0xF;    //if this is MEL+VLC-1, set LSBs to 0xF
339
0
        }
340
        // see the standard
341
658
        melp->data += melp->size-- > 0; //increment if the end is not reached
342
658
        d_bits = 8 - melp->unstuff; //if unstuffing is needed, reduce by 1
343
658
        melp->tmp = (melp->tmp << d_bits) | d; //store bits in tmp
344
658
        melp->bits += d_bits;  //increment tmp by number of bits
345
658
        melp->unstuff = ((d & 0xFF) == 0xFF); //true of next byte needs
346
        //unstuffing
347
658
    }
348
396
    melp->tmp <<= (64 - melp->bits); //push all the way up so the first bit
349
    // is the MSB
350
396
    return OPJ_TRUE;
351
396
}
352
353
//************************************************************************/
354
/** @brief Retrieves one run from dec_mel_t; if there are no runs stored
355
  *         MEL segment is decoded
356
  *
357
  * @param [in]  melp is a pointer to dec_mel_t structure
358
  */
359
static INLINE
360
int mel_get_run(dec_mel_t *melp)
361
19.7k
{
362
19.7k
    int t;
363
19.7k
    if (melp->num_runs == 0) { //if no runs, decode more bit from MEL segment
364
2.93k
        mel_decode(melp);
365
2.93k
    }
366
367
19.7k
    t = melp->runs & 0x7F; //retrieve one run
368
19.7k
    melp->runs >>= 7;  // remove the retrieved run
369
19.7k
    melp->num_runs--;
370
19.7k
    return t; // return run
371
19.7k
}
372
373
//************************************************************************/
374
/** @brief A structure for reading and unstuffing a segment that grows
375
  *         backward, such as VLC and MRP
376
  */
377
typedef struct rev_struct {
378
    //storage
379
    OPJ_UINT8* data;  //!<pointer to where to read data
380
    OPJ_UINT64 tmp;     //!<temporary buffer of read data
381
    OPJ_UINT32 bits;  //!<number of bits stored in tmp
382
    int size;         //!<number of bytes left
383
    OPJ_BOOL unstuff; //!<true if the last byte is more than 0x8F
384
    //!<then the current byte is unstuffed if it is 0x7F
385
} rev_struct_t;
386
387
//************************************************************************/
388
/** @brief Read and unstuff data from a backwardly-growing segment
389
  *
390
  *  This reader can read up to 8 bytes from before the VLC segment.
391
  *  Care must be taken not read from unreadable memory, causing a
392
  *  segmentation fault.
393
  *
394
  *  Note that there is another subroutine rev_read_mrp that is slightly
395
  *  different.  The other one fills zeros when the buffer is exhausted.
396
  *  This one basically does not care if the bytes are consumed, because
397
  *  any extra data should not be used in the actual decoding.
398
  *
399
  *  Unstuffing is needed to prevent sequences more than 0xFF8F from
400
  *  appearing in the bits stream; since we are reading backward, we keep
401
  *  watch when a value larger than 0x8F appears in the bitstream.
402
  *  If the byte following this is 0x7F, we unstuff this byte (ignore the
403
  *  MSB of that byte, which should be 0).
404
  *
405
  *  @param [in]  vlcp is a pointer to rev_struct_t structure
406
  */
407
static INLINE
408
void rev_read(rev_struct_t *vlcp)
409
6.68k
{
410
6.68k
    OPJ_UINT32 val;
411
6.68k
    OPJ_UINT32 tmp;
412
6.68k
    OPJ_UINT32 bits;
413
6.68k
    OPJ_BOOL unstuff;
414
415
    //process 4 bytes at a time
416
6.68k
    if (vlcp->bits > 32) { // if there are more than 32 bits in tmp, then
417
12
        return;    // reading 32 bits can overflow vlcp->tmp
418
12
    }
419
6.66k
    val = 0;
420
    //the next line (the if statement) needs to be tested first
421
6.66k
    if (vlcp->size > 3) { // if there are more than 3 bytes left in VLC
422
        // (vlcp->data - 3) move pointer back to read 32 bits at once
423
5.31k
        val = read_le_uint32(vlcp->data - 3); // then read 32 bits
424
5.31k
        vlcp->data -= 4;                // move data pointer back by 4
425
5.31k
        vlcp->size -= 4;                // reduce available byte by 4
426
5.31k
    } else if (vlcp->size > 0) { // 4 or less
427
100
        int i = 24;
428
329
        while (vlcp->size > 0) {
429
229
            OPJ_UINT32 v = *vlcp->data--; // read one byte at a time
430
229
            val |= (v << i);              // put byte in its correct location
431
229
            --vlcp->size;
432
229
            i -= 8;
433
229
        }
434
100
    }
435
436
    //accumulate in tmp, number of bits in tmp are stored in bits
437
6.66k
    tmp = val >> 24;  //start with the MSB byte
438
439
    // test unstuff (previous byte is >0x8F), and this byte is 0x7F
440
6.66k
    bits = 8u - ((vlcp->unstuff && (((val >> 24) & 0x7F) == 0x7F)) ? 1u : 0u);
441
6.66k
    unstuff = (val >> 24) > 0x8F; //this is for the next byte
442
443
6.66k
    tmp |= ((val >> 16) & 0xFF) << bits; //process the next byte
444
6.66k
    bits += 8u - ((unstuff && (((val >> 16) & 0x7F) == 0x7F)) ? 1u : 0u);
445
6.66k
    unstuff = ((val >> 16) & 0xFF) > 0x8F;
446
447
6.66k
    tmp |= ((val >> 8) & 0xFF) << bits;
448
6.66k
    bits += 8u - ((unstuff && (((val >> 8) & 0x7F) == 0x7F)) ? 1u : 0u);
449
6.66k
    unstuff = ((val >> 8) & 0xFF) > 0x8F;
450
451
6.66k
    tmp |= (val & 0xFF) << bits;
452
6.66k
    bits += 8u - ((unstuff && ((val & 0x7F) == 0x7F)) ? 1u : 0u);
453
6.66k
    unstuff = (val & 0xFF) > 0x8F;
454
455
    // now move the read and unstuffed bits into vlcp->tmp
456
6.66k
    vlcp->tmp |= (OPJ_UINT64)tmp << vlcp->bits;
457
6.66k
    vlcp->bits += bits;
458
6.66k
    vlcp->unstuff = unstuff; // this for the next read
459
6.66k
}
460
461
//************************************************************************/
462
/** @brief Initiates the rev_struct_t structure and reads a few bytes to
463
  *         move the read address to multiple of 4
464
  *
465
  *  There is another similar rev_init_mrp subroutine.  The difference is
466
  *  that this one, rev_init, discards the first 12 bits (they have the
467
  *  sum of the lengths of VLC and MEL segments), and first unstuff depends
468
  *  on first 4 bits.
469
  *
470
  *  @param [in]  vlcp is a pointer to rev_struct_t structure
471
  *  @param [in]  data is a pointer to byte at the start of the cleanup pass
472
  *  @param [in]  lcup is the length of MagSgn+MEL+VLC segments
473
  *  @param [in]  scup is the length of MEL+VLC segments
474
  */
475
static INLINE
476
void rev_init(rev_struct_t *vlcp, OPJ_UINT8* data, int lcup, int scup)
477
396
{
478
396
    OPJ_UINT32 d;
479
396
    int num, tnum, i;
480
481
    //first byte has only the upper 4 bits
482
396
    vlcp->data = data + lcup - 2;
483
484
    //size can not be larger than this, in fact it should be smaller
485
396
    vlcp->size = scup - 2;
486
487
396
    d = *vlcp->data--;            // read one byte (this is a half byte)
488
396
    vlcp->tmp = d >> 4;           // both initialize and set
489
396
    vlcp->bits = 4 - ((vlcp->tmp & 7) == 7); //check standard
490
396
    vlcp->unstuff = (d | 0xF) > 0x8F; //this is useful for the next byte
491
492
    //This code is designed for an architecture that read address should
493
    // align to the read size (address multiple of 4 if read size is 4)
494
    //These few lines take care of the case where data is not at a multiple
495
    // of 4 boundary. It reads 1,2,3 up to 4 bytes from the VLC bitstream.
496
    // To read 32 bits, read from (vlcp->data - 3)
497
396
    num = 1 + (int)((intptr_t)(vlcp->data) & 0x3);
498
396
    tnum = num < vlcp->size ? num : vlcp->size;
499
1.22k
    for (i = 0; i < tnum; ++i) {
500
829
        OPJ_UINT64 d;
501
829
        OPJ_UINT32 d_bits;
502
829
        d = *vlcp->data--;  // read one byte and move read pointer
503
        //check if the last byte was >0x8F (unstuff == true) and this is 0x7F
504
829
        d_bits = 8u - ((vlcp->unstuff && ((d & 0x7F) == 0x7F)) ? 1u : 0u);
505
829
        vlcp->tmp |= d << vlcp->bits; // move data to vlcp->tmp
506
829
        vlcp->bits += d_bits;
507
829
        vlcp->unstuff = d > 0x8F; // for next byte
508
829
    }
509
396
    vlcp->size -= tnum;
510
396
    rev_read(vlcp);  // read another 32 buts
511
396
}
512
513
//************************************************************************/
514
/** @brief Retrieves 32 bits from the head of a rev_struct structure
515
  *
516
  *  By the end of this call, vlcp->tmp must have no less than 33 bits
517
  *
518
  *  @param [in]  vlcp is a pointer to rev_struct structure
519
  */
520
static INLINE
521
OPJ_UINT32 rev_fetch(rev_struct_t *vlcp)
522
30.4k
{
523
30.4k
    if (vlcp->bits < 32) { // if there are less then 32 bits, read more
524
6.28k
        rev_read(vlcp);     // read 32 bits, but unstuffing might reduce this
525
6.28k
        if (vlcp->bits < 32) { // if there is still space in vlcp->tmp for 32 bits
526
4
            rev_read(vlcp);    // read another 32
527
4
        }
528
6.28k
    }
529
30.4k
    return (OPJ_UINT32)vlcp->tmp; // return the head (bottom-most) of vlcp->tmp
530
30.4k
}
531
532
//************************************************************************/
533
/** @brief Consumes num_bits from a rev_struct structure
534
  *
535
  *  @param [in]  vlcp is a pointer to rev_struct structure
536
  *  @param [in]  num_bits is the number of bits to be removed
537
  */
538
static INLINE
539
OPJ_UINT32 rev_advance(rev_struct_t *vlcp, OPJ_UINT32 num_bits)
540
91.1k
{
541
91.1k
    assert(num_bits <= vlcp->bits); // vlcp->tmp must have more than num_bits
542
91.1k
    vlcp->tmp >>= num_bits;         // remove bits
543
91.1k
    vlcp->bits -= num_bits;         // decrement the number of bits
544
91.1k
    return (OPJ_UINT32)vlcp->tmp;
545
91.1k
}
546
547
//************************************************************************/
548
/** @brief Reads and unstuffs from rev_struct
549
  *
550
  *  This is different than rev_read in that this fills in zeros when the
551
  *  the available data is consumed.  The other does not care about the
552
  *  values when all data is consumed.
553
  *
554
  *  See rev_read for more information about unstuffing
555
  *
556
  *  @param [in]  mrp is a pointer to rev_struct structure
557
  */
558
static INLINE
559
void rev_read_mrp(rev_struct_t *mrp)
560
1.80k
{
561
1.80k
    OPJ_UINT32 val;
562
1.80k
    OPJ_UINT32 tmp;
563
1.80k
    OPJ_UINT32 bits;
564
1.80k
    OPJ_BOOL unstuff;
565
566
    //process 4 bytes at a time
567
1.80k
    if (mrp->bits > 32) {
568
0
        return;
569
0
    }
570
1.80k
    val = 0;
571
1.80k
    if (mrp->size > 3) { // If there are 3 byte or more
572
        // (mrp->data - 3) move pointer back to read 32 bits at once
573
1.36k
        val = read_le_uint32(mrp->data - 3); // read 32 bits
574
1.36k
        mrp->data -= 4;                      // move back pointer
575
1.36k
        mrp->size -= 4;                      // reduce count
576
1.36k
    } else if (mrp->size > 0) {
577
5
        int i = 24;
578
14
        while (mrp->size > 0) {
579
9
            OPJ_UINT32 v = *mrp->data--; // read one byte at a time
580
9
            val |= (v << i);             // put byte in its correct location
581
9
            --mrp->size;
582
9
            i -= 8;
583
9
        }
584
5
    }
585
586
587
    //accumulate in tmp, and keep count in bits
588
1.80k
    tmp = val >> 24;
589
590
    //test if the last byte > 0x8F (unstuff must be true) and this is 0x7F
591
1.80k
    bits = 8u - ((mrp->unstuff && (((val >> 24) & 0x7F) == 0x7F)) ? 1u : 0u);
592
1.80k
    unstuff = (val >> 24) > 0x8F;
593
594
    //process the next byte
595
1.80k
    tmp |= ((val >> 16) & 0xFF) << bits;
596
1.80k
    bits += 8u - ((unstuff && (((val >> 16) & 0x7F) == 0x7F)) ? 1u : 0u);
597
1.80k
    unstuff = ((val >> 16) & 0xFF) > 0x8F;
598
599
1.80k
    tmp |= ((val >> 8) & 0xFF) << bits;
600
1.80k
    bits += 8u - ((unstuff && (((val >> 8) & 0x7F) == 0x7F)) ? 1u : 0u);
601
1.80k
    unstuff = ((val >> 8) & 0xFF) > 0x8F;
602
603
1.80k
    tmp |= (val & 0xFF) << bits;
604
1.80k
    bits += 8u - ((unstuff && ((val & 0x7F) == 0x7F)) ? 1u : 0u);
605
1.80k
    unstuff = (val & 0xFF) > 0x8F;
606
607
1.80k
    mrp->tmp |= (OPJ_UINT64)tmp << mrp->bits; // move data to mrp pointer
608
1.80k
    mrp->bits += bits;
609
1.80k
    mrp->unstuff = unstuff;                   // next byte
610
1.80k
}
611
612
//************************************************************************/
613
/** @brief Initialized rev_struct structure for MRP segment, and reads
614
  *         a number of bytes such that the next 32 bits read are from
615
  *         an address that is a multiple of 4. Note this is designed for
616
  *         an architecture that read size must be compatible with the
617
  *         alignment of the read address
618
  *
619
  *  There is another similar subroutine rev_init.  This subroutine does
620
  *  NOT skip the first 12 bits, and starts with unstuff set to true.
621
  *
622
  *  @param [in]  mrp is a pointer to rev_struct structure
623
  *  @param [in]  data is a pointer to byte at the start of the cleanup pass
624
  *  @param [in]  lcup is the length of MagSgn+MEL+VLC segments
625
  *  @param [in]  len2 is the length of SPP+MRP segments
626
  */
627
static INLINE
628
void rev_init_mrp(rev_struct_t *mrp, OPJ_UINT8* data, int lcup, int len2)
629
369
{
630
369
    int num, i;
631
632
369
    mrp->data = data + lcup + len2 - 1;
633
369
    mrp->size = len2;
634
369
    mrp->unstuff = OPJ_TRUE;
635
369
    mrp->bits = 0;
636
369
    mrp->tmp = 0;
637
638
    //This code is designed for an architecture that read address should
639
    // align to the read size (address multiple of 4 if read size is 4)
640
    //These few lines take care of the case where data is not at a multiple
641
    // of 4 boundary.  It reads 1,2,3 up to 4 bytes from the MRP stream
642
369
    num = 1 + (int)((intptr_t)(mrp->data) & 0x3);
643
1.65k
    for (i = 0; i < num; ++i) {
644
1.28k
        OPJ_UINT64 d;
645
1.28k
        OPJ_UINT32 d_bits;
646
647
        //read a byte, 0 if no more data
648
1.28k
        d = (mrp->size-- > 0) ? *mrp->data-- : 0;
649
        //check if unstuffing is needed
650
1.28k
        d_bits = 8u - ((mrp->unstuff && ((d & 0x7F) == 0x7F)) ? 1u : 0u);
651
1.28k
        mrp->tmp |= d << mrp->bits; // move data to vlcp->tmp
652
1.28k
        mrp->bits += d_bits;
653
1.28k
        mrp->unstuff = d > 0x8F; // for next byte
654
1.28k
    }
655
369
    rev_read_mrp(mrp);
656
369
}
657
658
//************************************************************************/
659
/** @brief Retrieves 32 bits from the head of a rev_struct structure
660
  *
661
  *  By the end of this call, mrp->tmp must have no less than 33 bits
662
  *
663
  *  @param [in]  mrp is a pointer to rev_struct structure
664
  */
665
static INLINE
666
OPJ_UINT32 rev_fetch_mrp(rev_struct_t *mrp)
667
7.19k
{
668
7.19k
    if (mrp->bits < 32) { // if there are less than 32 bits in mrp->tmp
669
1.43k
        rev_read_mrp(mrp);    // read 30-32 bits from mrp
670
1.43k
        if (mrp->bits < 32) { // if there is a space of 32 bits
671
0
            rev_read_mrp(mrp);    // read more
672
0
        }
673
1.43k
    }
674
7.19k
    return (OPJ_UINT32)mrp->tmp;  // return the head of mrp->tmp
675
7.19k
}
676
677
//************************************************************************/
678
/** @brief Consumes num_bits from a rev_struct structure
679
  *
680
  *  @param [in]  mrp is a pointer to rev_struct structure
681
  *  @param [in]  num_bits is the number of bits to be removed
682
  */
683
static INLINE
684
OPJ_UINT32 rev_advance_mrp(rev_struct_t *mrp, OPJ_UINT32 num_bits)
685
7.19k
{
686
7.19k
    assert(num_bits <= mrp->bits); // we must not consume more than mrp->bits
687
7.19k
    mrp->tmp >>= num_bits;         // discard the lowest num_bits bits
688
7.19k
    mrp->bits -= num_bits;
689
7.19k
    return (OPJ_UINT32)mrp->tmp;   // return data after consumption
690
7.19k
}
691
692
//************************************************************************/
693
/** @brief Decode initial UVLC to get the u value (or u_q)
694
  *
695
  *  @param [in]  vlc is the head of the VLC bitstream
696
  *  @param [in]  mode is 0, 1, 2, 3, or 4. Values in 0 to 3 are composed of
697
  *               u_off of 1st quad and 2nd quad of a quad pair.  The value
698
  *               4 occurs when both bits are 1, and the event decoded
699
  *               from MEL bitstream is also 1.
700
  *  @param [out] u is the u value (or u_q) + 1.  Note: we produce u + 1;
701
  *               this value is a partial calculation of u + kappa.
702
  */
703
static INLINE
704
OPJ_UINT32 decode_init_uvlc(OPJ_UINT32 vlc, OPJ_UINT32 mode, OPJ_UINT32 *u)
705
7.32k
{
706
    //table stores possible decoding three bits from vlc
707
    // there are 8 entries for xx1, x10, 100, 000, where x means do not care
708
    // table value is made up of
709
    // 2 bits in the LSB for prefix length
710
    // 3 bits for suffix length
711
    // 3 bits in the MSB for prefix value (u_pfx in Table 3 of ITU T.814)
712
7.32k
    static const OPJ_UINT8 dec[8] = { // the index is the prefix codeword
713
7.32k
        3 | (5 << 2) | (5 << 5),        //000 == 000, prefix codeword "000"
714
7.32k
        1 | (0 << 2) | (1 << 5),        //001 == xx1, prefix codeword "1"
715
7.32k
        2 | (0 << 2) | (2 << 5),        //010 == x10, prefix codeword "01"
716
7.32k
        1 | (0 << 2) | (1 << 5),        //011 == xx1, prefix codeword "1"
717
7.32k
        3 | (1 << 2) | (3 << 5),        //100 == 100, prefix codeword "001"
718
7.32k
        1 | (0 << 2) | (1 << 5),        //101 == xx1, prefix codeword "1"
719
7.32k
        2 | (0 << 2) | (2 << 5),        //110 == x10, prefix codeword "01"
720
7.32k
        1 | (0 << 2) | (1 << 5)         //111 == xx1, prefix codeword "1"
721
7.32k
    };
722
723
7.32k
    OPJ_UINT32 consumed_bits = 0;
724
7.32k
    if (mode == 0) { // both u_off are 0
725
5.05k
        u[0] = u[1] = 1; //Kappa is 1 for initial line
726
5.05k
    } else if (mode <= 2) { // u_off are either 01 or 10
727
680
        OPJ_UINT32 d;
728
680
        OPJ_UINT32 suffix_len;
729
730
680
        d = dec[vlc & 0x7];   //look at the least significant 3 bits
731
680
        vlc >>= d & 0x3;                 //prefix length
732
680
        consumed_bits += d & 0x3;
733
734
680
        suffix_len = ((d >> 2) & 0x7);
735
680
        consumed_bits += suffix_len;
736
737
680
        d = (d >> 5) + (vlc & ((1U << suffix_len) - 1)); // u value
738
680
        u[0] = (mode == 1) ? d + 1 : 1; // kappa is 1 for initial line
739
680
        u[1] = (mode == 1) ? 1 : d + 1; // kappa is 1 for initial line
740
1.59k
    } else if (mode == 3) { // both u_off are 1, and MEL event is 0
741
669
        OPJ_UINT32 d1 = dec[vlc & 0x7];  // LSBs of VLC are prefix codeword
742
669
        vlc >>= d1 & 0x3;                // Consume bits
743
669
        consumed_bits += d1 & 0x3;
744
745
669
        if ((d1 & 0x3) > 2) {
746
374
            OPJ_UINT32 suffix_len;
747
748
            //u_{q_2} prefix
749
374
            u[1] = (vlc & 1) + 1 + 1; //Kappa is 1 for initial line
750
374
            ++consumed_bits;
751
374
            vlc >>= 1;
752
753
374
            suffix_len = ((d1 >> 2) & 0x7);
754
374
            consumed_bits += suffix_len;
755
374
            d1 = (d1 >> 5) + (vlc & ((1U << suffix_len) - 1)); // u value
756
374
            u[0] = d1 + 1; //Kappa is 1 for initial line
757
374
        } else {
758
295
            OPJ_UINT32 d2;
759
295
            OPJ_UINT32 suffix_len;
760
761
295
            d2 = dec[vlc & 0x7];  // LSBs of VLC are prefix codeword
762
295
            vlc >>= d2 & 0x3;                // Consume bits
763
295
            consumed_bits += d2 & 0x3;
764
765
295
            suffix_len = ((d1 >> 2) & 0x7);
766
295
            consumed_bits += suffix_len;
767
768
295
            d1 = (d1 >> 5) + (vlc & ((1U << suffix_len) - 1)); // u value
769
295
            u[0] = d1 + 1; //Kappa is 1 for initial line
770
295
            vlc >>= suffix_len;
771
772
295
            suffix_len = ((d2 >> 2) & 0x7);
773
295
            consumed_bits += suffix_len;
774
775
295
            d2 = (d2 >> 5) + (vlc & ((1U << suffix_len) - 1)); // u value
776
295
            u[1] = d2 + 1; //Kappa is 1 for initial line
777
295
        }
778
926
    } else if (mode == 4) { // both u_off are 1, and MEL event is 1
779
926
        OPJ_UINT32 d1;
780
926
        OPJ_UINT32 d2;
781
926
        OPJ_UINT32 suffix_len;
782
783
926
        d1 = dec[vlc & 0x7];  // LSBs of VLC are prefix codeword
784
926
        vlc >>= d1 & 0x3;                // Consume bits
785
926
        consumed_bits += d1 & 0x3;
786
787
926
        d2 = dec[vlc & 0x7];  // LSBs of VLC are prefix codeword
788
926
        vlc >>= d2 & 0x3;                // Consume bits
789
926
        consumed_bits += d2 & 0x3;
790
791
926
        suffix_len = ((d1 >> 2) & 0x7);
792
926
        consumed_bits += suffix_len;
793
794
926
        d1 = (d1 >> 5) + (vlc & ((1U << suffix_len) - 1)); // u value
795
926
        u[0] = d1 + 3; // add 2+kappa
796
926
        vlc >>= suffix_len;
797
798
926
        suffix_len = ((d2 >> 2) & 0x7);
799
926
        consumed_bits += suffix_len;
800
801
926
        d2 = (d2 >> 5) + (vlc & ((1U << suffix_len) - 1)); // u value
802
926
        u[1] = d2 + 3; // add 2+kappa
803
926
    }
804
7.32k
    return consumed_bits;
805
7.32k
}
806
807
//************************************************************************/
808
/** @brief Decode non-initial UVLC to get the u value (or u_q)
809
  *
810
  *  @param [in]  vlc is the head of the VLC bitstream
811
  *  @param [in]  mode is 0, 1, 2, or 3. The 1st bit is u_off of 1st quad
812
  *               and 2nd for 2nd quad of a quad pair
813
  *  @param [out] u is the u value (or u_q) + 1.  Note: we produce u + 1;
814
  *               this value is a partial calculation of u + kappa.
815
  */
816
static INLINE
817
OPJ_UINT32 decode_noninit_uvlc(OPJ_UINT32 vlc, OPJ_UINT32 mode, OPJ_UINT32 *u)
818
23.0k
{
819
    //table stores possible decoding three bits from vlc
820
    // there are 8 entries for xx1, x10, 100, 000, where x means do not care
821
    // table value is made up of
822
    // 2 bits in the LSB for prefix length
823
    // 3 bits for suffix length
824
    // 3 bits in the MSB for prefix value (u_pfx in Table 3 of ITU T.814)
825
23.0k
    static const OPJ_UINT8 dec[8] = {
826
23.0k
        3 | (5 << 2) | (5 << 5), //000 == 000, prefix codeword "000"
827
23.0k
        1 | (0 << 2) | (1 << 5), //001 == xx1, prefix codeword "1"
828
23.0k
        2 | (0 << 2) | (2 << 5), //010 == x10, prefix codeword "01"
829
23.0k
        1 | (0 << 2) | (1 << 5), //011 == xx1, prefix codeword "1"
830
23.0k
        3 | (1 << 2) | (3 << 5), //100 == 100, prefix codeword "001"
831
23.0k
        1 | (0 << 2) | (1 << 5), //101 == xx1, prefix codeword "1"
832
23.0k
        2 | (0 << 2) | (2 << 5), //110 == x10, prefix codeword "01"
833
23.0k
        1 | (0 << 2) | (1 << 5)  //111 == xx1, prefix codeword "1"
834
23.0k
    };
835
836
23.0k
    OPJ_UINT32 consumed_bits = 0;
837
23.0k
    if (mode == 0) {
838
16.5k
        u[0] = u[1] = 1; //for kappa
839
16.5k
    } else if (mode <= 2) { //u_off are either 01 or 10
840
3.67k
        OPJ_UINT32 d;
841
3.67k
        OPJ_UINT32 suffix_len;
842
843
3.67k
        d = dec[vlc & 0x7];  //look at the least significant 3 bits
844
3.67k
        vlc >>= d & 0x3;                //prefix length
845
3.67k
        consumed_bits += d & 0x3;
846
847
3.67k
        suffix_len = ((d >> 2) & 0x7);
848
3.67k
        consumed_bits += suffix_len;
849
850
3.67k
        d = (d >> 5) + (vlc & ((1U << suffix_len) - 1)); // u value
851
3.67k
        u[0] = (mode == 1) ? d + 1 : 1; //for kappa
852
3.67k
        u[1] = (mode == 1) ? 1 : d + 1; //for kappa
853
3.67k
    } else if (mode == 3) { // both u_off are 1
854
2.84k
        OPJ_UINT32 d1;
855
2.84k
        OPJ_UINT32 d2;
856
2.84k
        OPJ_UINT32 suffix_len;
857
858
2.84k
        d1 = dec[vlc & 0x7];  // LSBs of VLC are prefix codeword
859
2.84k
        vlc >>= d1 & 0x3;                // Consume bits
860
2.84k
        consumed_bits += d1 & 0x3;
861
862
2.84k
        d2 = dec[vlc & 0x7];  // LSBs of VLC are prefix codeword
863
2.84k
        vlc >>= d2 & 0x3;                // Consume bits
864
2.84k
        consumed_bits += d2 & 0x3;
865
866
2.84k
        suffix_len = ((d1 >> 2) & 0x7);
867
2.84k
        consumed_bits += suffix_len;
868
869
2.84k
        d1 = (d1 >> 5) + (vlc & ((1U << suffix_len) - 1)); // u value
870
2.84k
        u[0] = d1 + 1;  //1 for kappa
871
2.84k
        vlc >>= suffix_len;
872
873
2.84k
        suffix_len = ((d2 >> 2) & 0x7);
874
2.84k
        consumed_bits += suffix_len;
875
876
2.84k
        d2 = (d2 >> 5) + (vlc & ((1U << suffix_len) - 1)); // u value
877
2.84k
        u[1] = d2 + 1;  //1 for kappa
878
2.84k
    }
879
23.0k
    return consumed_bits;
880
23.0k
}
881
882
//************************************************************************/
883
/** @brief State structure for reading and unstuffing of forward-growing
884
  *         bitstreams; these are: MagSgn and SPP bitstreams
885
  */
886
typedef struct frwd_struct {
887
    const OPJ_UINT8* data; //!<pointer to bitstream
888
    OPJ_UINT64 tmp;        //!<temporary buffer of read data
889
    OPJ_UINT32 bits;       //!<number of bits stored in tmp
890
    OPJ_BOOL unstuff;      //!<true if a bit needs to be unstuffed from next byte
891
    int size;              //!<size of data
892
    OPJ_UINT32 X;          //!<0 or 0xFF, X's are inserted at end of bitstream
893
} frwd_struct_t;
894
895
//************************************************************************/
896
/** @brief Read and unstuffs 32 bits from forward-growing bitstream
897
  *
898
  *  A subroutine to read from both the MagSgn or SPP bitstreams;
899
  *  in particular, when MagSgn bitstream is consumed, 0xFF's are fed,
900
  *  while when SPP is exhausted 0's are fed in.
901
  *  X controls this value.
902
  *
903
  *  Unstuffing prevent sequences that are more than 0xFF7F from appearing
904
  *  in the compressed sequence.  So whenever a value of 0xFF is coded, the
905
  *  MSB of the next byte is set 0 and must be ignored during decoding.
906
  *
907
  *  Reading can go beyond the end of buffer by up to 3 bytes.
908
  *
909
  *  @param  [in]  msp is a pointer to frwd_struct_t structure
910
  *
911
  */
912
static INLINE
913
void frwd_read(frwd_struct_t *msp)
914
10.7k
{
915
10.7k
    OPJ_UINT32 val;
916
10.7k
    OPJ_UINT32 bits;
917
10.7k
    OPJ_UINT32 t;
918
10.7k
    OPJ_BOOL unstuff;
919
920
10.7k
    assert(msp->bits <= 32); // assert that there is a space for 32 bits
921
922
10.7k
    val = 0u;
923
10.7k
    if (msp->size > 3) {
924
8.06k
        val = read_le_uint32(msp->data);  // read 32 bits
925
8.06k
        msp->data += 4;           // increment pointer
926
8.06k
        msp->size -= 4;           // reduce size
927
8.06k
    } else if (msp->size > 0) {
928
158
        int i = 0;
929
158
        val = msp->X != 0 ? 0xFFFFFFFFu : 0;
930
612
        while (msp->size > 0) {
931
454
            OPJ_UINT32 v = *msp->data++;  // read one byte at a time
932
454
            OPJ_UINT32 m = ~(0xFFu << i); // mask of location
933
454
            val = (val & m) | (v << i);   // put one byte in its correct location
934
454
            --msp->size;
935
454
            i += 8;
936
454
        }
937
2.57k
    } else {
938
2.57k
        val = msp->X != 0 ? 0xFFFFFFFFu : 0;
939
2.57k
    }
940
941
    // we accumulate in t and keep a count of the number of bits in bits
942
10.7k
    bits = 8u - (msp->unstuff ? 1u : 0u);
943
10.7k
    t = val & 0xFF;
944
10.7k
    unstuff = ((val & 0xFF) == 0xFF);  // Do we need unstuffing next?
945
946
10.7k
    t |= ((val >> 8) & 0xFF) << bits;
947
10.7k
    bits += 8u - (unstuff ? 1u : 0u);
948
10.7k
    unstuff = (((val >> 8) & 0xFF) == 0xFF);
949
950
10.7k
    t |= ((val >> 16) & 0xFF) << bits;
951
10.7k
    bits += 8u - (unstuff ? 1u : 0u);
952
10.7k
    unstuff = (((val >> 16) & 0xFF) == 0xFF);
953
954
10.7k
    t |= ((val >> 24) & 0xFF) << bits;
955
10.7k
    bits += 8u - (unstuff ? 1u : 0u);
956
10.7k
    msp->unstuff = (((val >> 24) & 0xFF) == 0xFF); // for next byte
957
958
10.7k
    msp->tmp |= ((OPJ_UINT64)t) << msp->bits;  // move data to msp->tmp
959
10.7k
    msp->bits += bits;
960
10.7k
}
961
962
//************************************************************************/
963
/** @brief Initialize frwd_struct_t struct and reads some bytes
964
  *
965
  *  @param [in]  msp is a pointer to frwd_struct_t
966
  *  @param [in]  data is a pointer to the start of data
967
  *  @param [in]  size is the number of byte in the bitstream
968
  *  @param [in]  X is the value fed in when the bitstream is exhausted.
969
  *               See frwd_read.
970
  */
971
static INLINE
972
void frwd_init(frwd_struct_t *msp, const OPJ_UINT8* data, int size,
973
               OPJ_UINT32 X)
974
774
{
975
774
    int num, i;
976
977
774
    msp->data = data;
978
774
    msp->tmp = 0;
979
774
    msp->bits = 0;
980
774
    msp->unstuff = OPJ_FALSE;
981
774
    msp->size = size;
982
774
    msp->X = X;
983
774
    assert(msp->X == 0 || msp->X == 0xFF);
984
985
    //This code is designed for an architecture that read address should
986
    // align to the read size (address multiple of 4 if read size is 4)
987
    //These few lines take care of the case where data is not at a multiple
988
    // of 4 boundary.  It reads 1,2,3 up to 4 bytes from the bitstream
989
774
    num = 4 - (int)((intptr_t)(msp->data) & 0x3);
990
3.82k
    for (i = 0; i < num; ++i) {
991
3.05k
        OPJ_UINT64 d;
992
        //read a byte if the buffer is not exhausted, otherwise set it to X
993
3.05k
        d = msp->size-- > 0 ? *msp->data++ : msp->X;
994
3.05k
        msp->tmp |= (d << msp->bits);      // store data in msp->tmp
995
3.05k
        msp->bits += 8u - (msp->unstuff ? 1u : 0u); // number of bits added to msp->tmp
996
3.05k
        msp->unstuff = ((d & 0xFF) == 0xFF); // unstuffing for next byte
997
3.05k
    }
998
774
    frwd_read(msp); // read 32 bits more
999
774
}
1000
1001
//************************************************************************/
1002
/** @brief Consume num_bits bits from the bitstream of frwd_struct_t
1003
  *
1004
  *  @param [in]  msp is a pointer to frwd_struct_t
1005
  *  @param [in]  num_bits is the number of bit to consume
1006
  */
1007
static INLINE
1008
void frwd_advance(frwd_struct_t *msp, OPJ_UINT32 num_bits)
1009
74.7k
{
1010
74.7k
    assert(num_bits <= msp->bits);
1011
74.7k
    msp->tmp >>= num_bits;  // consume num_bits
1012
74.7k
    msp->bits -= num_bits;
1013
74.7k
}
1014
1015
//************************************************************************/
1016
/** @brief Fetches 32 bits from the frwd_struct_t bitstream
1017
  *
1018
  *  @param [in]  msp is a pointer to frwd_struct_t
1019
  */
1020
static INLINE
1021
OPJ_UINT32 frwd_fetch(frwd_struct_t *msp)
1022
74.7k
{
1023
74.7k
    if (msp->bits < 32) {
1024
10.0k
        frwd_read(msp);
1025
10.0k
        if (msp->bits < 32) { //need to test
1026
0
            frwd_read(msp);
1027
0
        }
1028
10.0k
    }
1029
74.7k
    return (OPJ_UINT32)msp->tmp;
1030
74.7k
}
1031
1032
//************************************************************************/
1033
/** @brief Allocates T1 buffers
1034
  *
1035
  *  @param [in, out]  t1 is codeblock coefficients storage
1036
  *  @param [in]       w is codeblock width
1037
  *  @param [in]       h is codeblock height
1038
  */
1039
static OPJ_BOOL opj_t1_allocate_buffers(
1040
    opj_t1_t *t1,
1041
    OPJ_UINT32 w,
1042
    OPJ_UINT32 h)
1043
1.54k
{
1044
1.54k
    OPJ_UINT32 flagssize;
1045
1046
    /* No risk of overflow. Prior checks ensure those assert are met */
1047
    /* They are per the specification */
1048
1.54k
    assert(w <= 1024);
1049
1.54k
    assert(h <= 1024);
1050
1.54k
    assert(w * h <= 4096);
1051
1052
    /* encoder uses tile buffer, so no need to allocate */
1053
1.54k
    {
1054
1.54k
        OPJ_UINT32 datasize = w * h;
1055
1056
1.54k
        if (datasize > t1->datasize) {
1057
125
            opj_aligned_free(t1->data);
1058
125
            t1->data = (OPJ_INT32*)
1059
125
                       opj_aligned_malloc(datasize * sizeof(OPJ_INT32));
1060
125
            if (!t1->data) {
1061
                /* FIXME event manager error callback */
1062
0
                return OPJ_FALSE;
1063
0
            }
1064
125
            t1->datasize = datasize;
1065
125
        }
1066
        /* memset first arg is declared to never be null by gcc */
1067
1.54k
        if (t1->data != NULL) {
1068
1.54k
            memset(t1->data, 0, datasize * sizeof(OPJ_INT32));
1069
1.54k
        }
1070
1.54k
    }
1071
1072
    // We expand these buffers to multiples of 16 bytes.
1073
    // We need 4 buffers of 129 integers each, expanded to 132 integers each
1074
    // We also need 514 bytes of buffer, expanded to 528 bytes
1075
0
    flagssize = 132U * sizeof(OPJ_UINT32) * 4U; // expanded to multiple of 16
1076
1.54k
    flagssize += 528U; // 514 expanded to multiples of 16
1077
1078
1.54k
    {
1079
1.54k
        if (flagssize > t1->flagssize) {
1080
1081
76
            opj_aligned_free(t1->flags);
1082
76
            t1->flags = (opj_flag_t*) opj_aligned_malloc(flagssize * sizeof(opj_flag_t));
1083
76
            if (!t1->flags) {
1084
                /* FIXME event manager error callback */
1085
0
                return OPJ_FALSE;
1086
0
            }
1087
76
        }
1088
1.54k
        t1->flagssize = flagssize;
1089
1090
1.54k
        memset(t1->flags, 0, flagssize * sizeof(opj_flag_t));
1091
1.54k
    }
1092
1093
0
    t1->w = w;
1094
1.54k
    t1->h = h;
1095
1096
1.54k
    return OPJ_TRUE;
1097
1.54k
}
1098
1099
/**
1100
Decode 1 HT code-block
1101
@param t1 T1 handle
1102
@param cblk Code-block coding parameters
1103
@param orient
1104
@param roishift Region of interest shifting value
1105
@param cblksty Code-block style
1106
@param p_manager the event manager
1107
@param p_manager_mutex mutex for the event manager
1108
@param check_pterm whether PTERM correct termination should be checked
1109
*/
1110
OPJ_BOOL opj_t1_ht_decode_cblk(opj_t1_t *t1,
1111
                               opj_tcd_cblk_dec_t* cblk,
1112
                               OPJ_UINT32 orient,
1113
                               OPJ_UINT32 roishift,
1114
                               OPJ_UINT32 cblksty,
1115
                               opj_event_mgr_t *p_manager,
1116
                               opj_mutex_t* p_manager_mutex,
1117
                               OPJ_BOOL check_pterm);
1118
1119
//************************************************************************/
1120
/** @brief Decodes one codeblock, processing the cleanup, siginificance
1121
  *         propagation, and magnitude refinement pass
1122
  *
1123
  *  @param [in, out]  t1 is codeblock coefficients storage
1124
  *  @param [in]       cblk is codeblock properties
1125
  *  @param [in]       orient is the subband to which the codeblock belongs (not needed)
1126
  *  @param [in]       roishift is region of interest shift
1127
  *  @param [in]       cblksty is codeblock style
1128
  *  @param [in]       p_manager is events print manager
1129
  *  @param [in]       p_manager_mutex a mutex to control access to p_manager
1130
  *  @param [in]       check_pterm: check termination (not used)
1131
  */
1132
OPJ_BOOL opj_t1_ht_decode_cblk(opj_t1_t *t1,
1133
                               opj_tcd_cblk_dec_t* cblk,
1134
                               OPJ_UINT32 orient,
1135
                               OPJ_UINT32 roishift,
1136
                               OPJ_UINT32 cblksty,
1137
                               opj_event_mgr_t *p_manager,
1138
                               opj_mutex_t* p_manager_mutex,
1139
                               OPJ_BOOL check_pterm)
1140
1.54k
{
1141
1.54k
    OPJ_BYTE* cblkdata = NULL;
1142
1.54k
    OPJ_UINT8* coded_data;
1143
1.54k
    OPJ_UINT32* decoded_data;
1144
1.54k
    OPJ_UINT32 zero_bplanes;
1145
1.54k
    OPJ_UINT32 num_passes;
1146
1.54k
    OPJ_UINT32 lengths1;
1147
1.54k
    OPJ_UINT32 lengths2;
1148
1.54k
    OPJ_INT32 width;
1149
1.54k
    OPJ_INT32 height;
1150
1.54k
    OPJ_INT32 stride;
1151
1.54k
    OPJ_UINT32 *pflags, *sigma1, *sigma2, *mbr1, *mbr2, *sip, sip_shift;
1152
1.54k
    OPJ_UINT32 p;
1153
1.54k
    OPJ_UINT32 zero_bplanes_p1;
1154
1.54k
    int lcup, scup;
1155
1.54k
    dec_mel_t mel;
1156
1.54k
    rev_struct_t vlc;
1157
1.54k
    frwd_struct_t magsgn;
1158
1.54k
    frwd_struct_t sigprop;
1159
1.54k
    rev_struct_t magref;
1160
1.54k
    OPJ_UINT8 *lsp, *line_state;
1161
1.54k
    int run;
1162
1.54k
    OPJ_UINT32 vlc_val;              // fetched data from VLC bitstream
1163
1.54k
    OPJ_UINT32 qinf[2];
1164
1.54k
    OPJ_UINT32 c_q;
1165
1.54k
    OPJ_UINT32* sp;
1166
1.54k
    OPJ_INT32 x, y; // loop indices
1167
1.54k
    OPJ_BOOL stripe_causal = (cblksty & J2K_CCP_CBLKSTY_VSC) != 0;
1168
1.54k
    OPJ_UINT32 cblk_len = 0;
1169
1170
1.54k
    (void)(orient);      // stops unused parameter message
1171
1.54k
    (void)(check_pterm); // stops unused parameter message
1172
1173
    // We ignor orient, because the same decoder is used for all subbands
1174
    // We also ignore check_pterm, because I am not sure how it applies
1175
1.54k
    if (roishift != 0) {
1176
0
        if (p_manager_mutex) {
1177
0
            opj_mutex_lock(p_manager_mutex);
1178
0
        }
1179
0
        opj_event_msg(p_manager, EVT_ERROR, "We do not support ROI in decoding "
1180
0
                      "HT codeblocks\n");
1181
0
        if (p_manager_mutex) {
1182
0
            opj_mutex_unlock(p_manager_mutex);
1183
0
        }
1184
0
        return OPJ_FALSE;
1185
0
    }
1186
1187
1.54k
    if (!opj_t1_allocate_buffers(
1188
1.54k
                t1,
1189
1.54k
                (OPJ_UINT32)(cblk->x1 - cblk->x0),
1190
1.54k
                (OPJ_UINT32)(cblk->y1 - cblk->y0))) {
1191
0
        return OPJ_FALSE;
1192
0
    }
1193
1194
1.54k
    if (cblk->Mb == 0) {
1195
1.11k
        return OPJ_TRUE;
1196
1.11k
    }
1197
1198
    /* numbps = Mb + 1 - zero_bplanes, Mb = Kmax, zero_bplanes = missing_msbs */
1199
435
    zero_bplanes = (cblk->Mb + 1) - cblk->numbps;
1200
1201
    /* Compute whole codeblock length from chunk lengths */
1202
435
    cblk_len = 0;
1203
435
    {
1204
435
        OPJ_UINT32 i;
1205
4.67k
        for (i = 0; i < cblk->numchunks; i++) {
1206
4.24k
            cblk_len += cblk->chunks[i].len;
1207
4.24k
        }
1208
435
    }
1209
1210
435
    if (cblk->numchunks > 1 || t1->mustuse_cblkdatabuffer) {
1211
426
        OPJ_UINT32 i;
1212
1213
        /* Allocate temporary memory if needed */
1214
426
        if (cblk_len > t1->cblkdatabuffersize) {
1215
118
            cblkdata = (OPJ_BYTE*)opj_realloc(
1216
118
                           t1->cblkdatabuffer, cblk_len);
1217
118
            if (cblkdata == NULL) {
1218
0
                return OPJ_FALSE;
1219
0
            }
1220
118
            t1->cblkdatabuffer = cblkdata;
1221
118
            t1->cblkdatabuffersize = cblk_len;
1222
118
        }
1223
1224
        /* Concatenate all chunks */
1225
426
        cblkdata = t1->cblkdatabuffer;
1226
426
        if (cblkdata == NULL) {
1227
0
            return OPJ_FALSE;
1228
0
        }
1229
426
        cblk_len = 0;
1230
4.66k
        for (i = 0; i < cblk->numchunks; i++) {
1231
4.23k
            memcpy(cblkdata + cblk_len, cblk->chunks[i].data, cblk->chunks[i].len);
1232
4.23k
            cblk_len += cblk->chunks[i].len;
1233
4.23k
        }
1234
426
    } else if (cblk->numchunks == 1) {
1235
9
        cblkdata = cblk->chunks[0].data;
1236
9
    } else {
1237
        /* Not sure if that can happen in practice, but avoid Coverity to */
1238
        /* think we will dereference a null cblkdta pointer */
1239
0
        return OPJ_TRUE;
1240
0
    }
1241
1242
    // OPJ_BYTE* coded_data is a pointer to bitstream
1243
435
    coded_data = cblkdata;
1244
    // OPJ_UINT32* decoded_data is a pointer to decoded codeblock data buf.
1245
435
    decoded_data = (OPJ_UINT32*)t1->data;
1246
    // OPJ_UINT32 num_passes is the number of passes: 1 if CUP only, 2 for
1247
    // CUP+SPP, and 3 for CUP+SPP+MRP
1248
435
    num_passes = cblk->numsegs > 0 ? cblk->segs[0].real_num_passes : 0;
1249
435
    num_passes += cblk->numsegs > 1 ? cblk->segs[1].real_num_passes : 0;
1250
    // OPJ_UINT32 lengths1 is the length of cleanup pass
1251
435
    lengths1 = num_passes > 0 ? cblk->segs[0].len : 0;
1252
    // OPJ_UINT32 lengths2 is the length of refinement passes (either SPP only or SPP+MRP)
1253
435
    lengths2 = num_passes > 1 ? cblk->segs[1].len : 0;
1254
    // OPJ_INT32 width is the decoded codeblock width
1255
435
    width = cblk->x1 - cblk->x0;
1256
    // OPJ_INT32 height is the decoded codeblock height
1257
435
    height = cblk->y1 - cblk->y0;
1258
    // OPJ_INT32 stride is the decoded codeblock buffer stride
1259
435
    stride = width;
1260
1261
    /*  sigma1 and sigma2 contains significant (i.e., non-zero) pixel
1262
     *  locations.  The buffers are used interchangeably, because we need
1263
     *  more than 4 rows of significance information at a given time.
1264
     *  Each 32 bits contain significance information for 4 rows of 8
1265
     *  columns each.  If we denote 32 bits by 0xaaaaaaaa, the each "a" is
1266
     *  called a nibble and has significance information for 4 rows.
1267
     *  The least significant nibble has information for the first column,
1268
     *  and so on. The nibble's LSB is for the first row, and so on.
1269
     *  Since, at most, we can have 1024 columns in a quad, we need 128
1270
     *  entries; we added 1 for convenience when propagation of signifcance
1271
     *  goes outside the structure
1272
     *  To work in OpenJPEG these buffers has been expanded to 132.
1273
     */
1274
    // OPJ_UINT32 *pflags, *sigma1, *sigma2, *mbr1, *mbr2, *sip, sip_shift;
1275
435
    pflags = (OPJ_UINT32 *)t1->flags;
1276
435
    sigma1 = pflags;
1277
435
    sigma2 = sigma1 + 132;
1278
    // mbr arrangement is similar to sigma; mbr contains locations
1279
    // that become significant during significance propagation pass
1280
435
    mbr1 = sigma2 + 132;
1281
435
    mbr2 = mbr1 + 132;
1282
    //a pointer to sigma
1283
435
    sip = sigma1;  //pointers to arrays to be used interchangeably
1284
435
    sip_shift = 0; //the amount of shift needed for sigma
1285
1286
435
    if (num_passes > 1 && lengths2 == 0) {
1287
8
        if (p_manager_mutex) {
1288
8
            opj_mutex_lock(p_manager_mutex);
1289
8
        }
1290
8
        opj_event_msg(p_manager, EVT_WARNING, "A malformed codeblock that has "
1291
8
                      "more than one coding pass, but zero length for "
1292
8
                      "2nd and potentially the 3rd pass in an HT codeblock.\n");
1293
8
        if (p_manager_mutex) {
1294
8
            opj_mutex_unlock(p_manager_mutex);
1295
8
        }
1296
8
        num_passes = 1;
1297
8
    }
1298
435
    if (num_passes > 3) {
1299
13
        if (p_manager_mutex) {
1300
13
            opj_mutex_lock(p_manager_mutex);
1301
13
        }
1302
13
        opj_event_msg(p_manager, EVT_ERROR, "We do not support more than 3 "
1303
13
                      "coding passes in an HT codeblock; This codeblocks has "
1304
13
                      "%d passes.\n", num_passes);
1305
13
        if (p_manager_mutex) {
1306
13
            opj_mutex_unlock(p_manager_mutex);
1307
13
        }
1308
13
        return OPJ_FALSE;
1309
13
    }
1310
1311
422
    if (cblk->Mb > 30) {
1312
        /* This check is better moved to opj_t2_read_packet_header() in t2.c
1313
           We do not have enough precision to decode any passes
1314
           The design of openjpeg assumes that the bits of a 32-bit integer are
1315
           assigned as follows:
1316
           bit 31 is for sign
1317
           bits 30-1 are for magnitude
1318
           bit 0 is for the center of the quantization bin
1319
           Therefore we can only do values of cblk->Mb <= 30
1320
         */
1321
0
        if (p_manager_mutex) {
1322
0
            opj_mutex_lock(p_manager_mutex);
1323
0
        }
1324
0
        opj_event_msg(p_manager, EVT_ERROR, "32 bits are not enough to "
1325
0
                      "decode this codeblock, since the number of "
1326
0
                      "bitplane, %d, is larger than 30.\n", cblk->Mb);
1327
0
        if (p_manager_mutex) {
1328
0
            opj_mutex_unlock(p_manager_mutex);
1329
0
        }
1330
0
        return OPJ_FALSE;
1331
0
    }
1332
422
    if (zero_bplanes > cblk->Mb) {
1333
        /* This check is better moved to opj_t2_read_packet_header() in t2.c,
1334
           in the line "l_cblk->numbps = (OPJ_UINT32)l_band->numbps + 1 - i;"
1335
           where i is the zero bitplanes, and should be no larger than cblk->Mb
1336
           We cannot have more zero bitplanes than there are planes. */
1337
0
        if (p_manager_mutex) {
1338
0
            opj_mutex_lock(p_manager_mutex);
1339
0
        }
1340
0
        opj_event_msg(p_manager, EVT_ERROR, "Malformed HT codeblock. "
1341
0
                      "Decoding this codeblock is stopped. There are "
1342
0
                      "%d zero bitplanes in %d bitplanes.\n",
1343
0
                      zero_bplanes, cblk->Mb);
1344
1345
0
        if (p_manager_mutex) {
1346
0
            opj_mutex_unlock(p_manager_mutex);
1347
0
        }
1348
0
        return OPJ_FALSE;
1349
422
    } else if (zero_bplanes == cblk->Mb && num_passes > 1) {
1350
        /* When the number of zero bitplanes is equal to the number of bitplanes,
1351
           only the cleanup pass makes sense*/
1352
17
        if (only_cleanup_pass_is_decoded == OPJ_FALSE) {
1353
2
            if (p_manager_mutex) {
1354
2
                opj_mutex_lock(p_manager_mutex);
1355
2
            }
1356
            /* We have a second check to prevent the possibility of an overrun condition,
1357
               in the very unlikely event of a second thread discovering that
1358
               only_cleanup_pass_is_decoded is false before the first thread changing
1359
               the condition. */
1360
2
            if (only_cleanup_pass_is_decoded == OPJ_FALSE) {
1361
2
                only_cleanup_pass_is_decoded = OPJ_TRUE;
1362
2
                opj_event_msg(p_manager, EVT_WARNING, "Malformed HT codeblock. "
1363
2
                              "When the number of zero planes bitplanes is "
1364
2
                              "equal to the number of bitplanes, only the cleanup "
1365
2
                              "pass makes sense, but we have %d passes in this "
1366
2
                              "codeblock. Therefore, only the cleanup pass will be "
1367
2
                              "decoded. This message will not be displayed again.\n",
1368
2
                              num_passes);
1369
2
            }
1370
2
            if (p_manager_mutex) {
1371
2
                opj_mutex_unlock(p_manager_mutex);
1372
2
            }
1373
2
        }
1374
17
        num_passes = 1;
1375
17
    }
1376
1377
    /* OPJ_UINT32 */
1378
422
    p = cblk->numbps;
1379
1380
    // OPJ_UINT32 zero planes plus 1
1381
422
    zero_bplanes_p1 = zero_bplanes + 1;
1382
1383
422
    if (lengths1 < 2 || (OPJ_UINT32)lengths1 > cblk_len ||
1384
412
            (OPJ_UINT32)(lengths1 + lengths2) > cblk_len) {
1385
10
        if (p_manager_mutex) {
1386
10
            opj_mutex_lock(p_manager_mutex);
1387
10
        }
1388
10
        opj_event_msg(p_manager, EVT_ERROR, "Malformed HT codeblock. "
1389
10
                      "Invalid codeblock length values.\n");
1390
1391
10
        if (p_manager_mutex) {
1392
10
            opj_mutex_unlock(p_manager_mutex);
1393
10
        }
1394
10
        return OPJ_FALSE;
1395
10
    }
1396
    // read scup and fix the bytes there
1397
412
    lcup = (int)lengths1;  // length of CUP
1398
    //scup is the length of MEL + VLC
1399
412
    scup = (((int)coded_data[lcup - 1]) << 4) + (coded_data[lcup - 2] & 0xF);
1400
412
    if (scup < 2 || scup > lcup || scup > 4079) { //something is wrong
1401
        /* The standard stipulates 2 <= Scup <= min(Lcup, 4079) */
1402
16
        if (p_manager_mutex) {
1403
16
            opj_mutex_lock(p_manager_mutex);
1404
16
        }
1405
16
        opj_event_msg(p_manager, EVT_ERROR, "Malformed HT codeblock. "
1406
16
                      "One of the following condition is not met: "
1407
16
                      "2 <= Scup <= min(Lcup, 4079)\n");
1408
1409
16
        if (p_manager_mutex) {
1410
16
            opj_mutex_unlock(p_manager_mutex);
1411
16
        }
1412
16
        return OPJ_FALSE;
1413
16
    }
1414
1415
    // init structures
1416
396
    if (mel_init(&mel, coded_data, lcup, scup) == OPJ_FALSE) {
1417
0
        if (p_manager_mutex) {
1418
0
            opj_mutex_lock(p_manager_mutex);
1419
0
        }
1420
0
        opj_event_msg(p_manager, EVT_ERROR, "Malformed HT codeblock. "
1421
0
                      "Incorrect MEL segment sequence.\n");
1422
0
        if (p_manager_mutex) {
1423
0
            opj_mutex_unlock(p_manager_mutex);
1424
0
        }
1425
0
        return OPJ_FALSE;
1426
0
    }
1427
396
    rev_init(&vlc, coded_data, lcup, scup);
1428
396
    frwd_init(&magsgn, coded_data, lcup - scup, 0xFF);
1429
396
    if (num_passes > 1) { // needs to be tested
1430
378
        frwd_init(&sigprop, coded_data + lengths1, (int)lengths2, 0);
1431
378
    }
1432
396
    if (num_passes > 2) {
1433
369
        rev_init_mrp(&magref, coded_data, (int)lengths1, (int)lengths2);
1434
369
    }
1435
1436
    /** State storage
1437
      *  One byte per quad; for 1024 columns, or 512 quads, we need
1438
      *  512 bytes. We are using 2 extra bytes one on the left and one on
1439
      *  the right for convenience.
1440
      *
1441
      *  The MSB bit in each byte is (\sigma^nw | \sigma^n), and the 7 LSBs
1442
      *  contain max(E^nw | E^n)
1443
      */
1444
1445
    // 514 is enough for a block width of 1024, +2 extra
1446
    // here expanded to 528
1447
396
    line_state = (OPJ_UINT8 *)(mbr2 + 132);
1448
1449
    //initial 2 lines
1450
    /////////////////
1451
396
    lsp = line_state;              // point to line state
1452
396
    lsp[0] = 0;                    // for initial row of quad, we set to 0
1453
396
    run = mel_get_run(&mel);    // decode runs of events from MEL bitstrm
1454
    // data represented as runs of 0 events
1455
    // See mel_decode description
1456
396
    qinf[0] = qinf[1] = 0;      // quad info decoded from VLC bitstream
1457
396
    c_q = 0;                    // context for quad q
1458
396
    sp = decoded_data;          // decoded codeblock samples
1459
    // vlc_val;                 // fetched data from VLC bitstream
1460
1461
7.71k
    for (x = 0; x < width; x += 4) { // one iteration per quad pair
1462
7.32k
        OPJ_UINT32 U_q[2]; // u values for the quad pair
1463
7.32k
        OPJ_UINT32 uvlc_mode;
1464
7.32k
        OPJ_UINT32 consumed_bits;
1465
7.32k
        OPJ_UINT32 m_n, v_n;
1466
7.32k
        OPJ_UINT32 ms_val;
1467
7.32k
        OPJ_UINT32 locs;
1468
1469
        // decode VLC
1470
        /////////////
1471
1472
        //first quad
1473
        // Get the head of the VLC bitstream. One fetch is enough for two
1474
        // quads, since the largest VLC code is 7 bits, and maximum number of
1475
        // bits used for u is 8.  Therefore for two quads we need 30 bits
1476
        // (if we include unstuffing, then 32 bits are enough, since we have
1477
        // a maximum of one stuffing per two bytes)
1478
7.32k
        vlc_val = rev_fetch(&vlc);
1479
1480
        //decode VLC using the context c_q and the head of the VLC bitstream
1481
7.32k
        qinf[0] = vlc_tbl0[(c_q << 7) | (vlc_val & 0x7F) ];
1482
1483
7.32k
        if (c_q == 0) { // if zero context, we need to use one MEL event
1484
3.29k
            run -= 2; //the number of 0 events is multiplied by 2, so subtract 2
1485
1486
            // Is the run terminated in 1? if so, use decoded VLC code,
1487
            // otherwise, discard decoded data, since we will decoded again
1488
            // using a different context
1489
3.29k
            qinf[0] = (run == -1) ? qinf[0] : 0;
1490
1491
            // is run -1 or -2? this means a run has been consumed
1492
3.29k
            if (run < 0) {
1493
2.48k
                run = mel_get_run(&mel);    // get another run
1494
2.48k
            }
1495
3.29k
        }
1496
1497
        // prepare context for the next quad; eqn. 1 in ITU T.814
1498
7.32k
        c_q = ((qinf[0] & 0x10) >> 4) | ((qinf[0] & 0xE0) >> 5);
1499
1500
        //remove data from vlc stream (0 bits are removed if qinf is not used)
1501
7.32k
        vlc_val = rev_advance(&vlc, qinf[0] & 0x7);
1502
1503
        //update sigma
1504
        // The update depends on the value of x; consider one OPJ_UINT32
1505
        // if x is 0, 8, 16 and so on, then this line update c locations
1506
        //      nibble (4 bits) number   0 1 2 3 4 5 6 7
1507
        //                         LSB   c c 0 0 0 0 0 0
1508
        //                               c c 0 0 0 0 0 0
1509
        //                               0 0 0 0 0 0 0 0
1510
        //                               0 0 0 0 0 0 0 0
1511
        // if x is 4, 12, 20, then this line update locations c
1512
        //      nibble (4 bits) number   0 1 2 3 4 5 6 7
1513
        //                         LSB   0 0 0 0 c c 0 0
1514
        //                               0 0 0 0 c c 0 0
1515
        //                               0 0 0 0 0 0 0 0
1516
        //                               0 0 0 0 0 0 0 0
1517
7.32k
        *sip |= (((qinf[0] & 0x30) >> 4) | ((qinf[0] & 0xC0) >> 2)) << sip_shift;
1518
1519
        //second quad
1520
7.32k
        qinf[1] = 0;
1521
7.32k
        if (x + 2 < width) { // do not run if codeblock is narrower
1522
            //decode VLC using the context c_q and the head of the VLC bitstream
1523
7.30k
            qinf[1] = vlc_tbl0[(c_q << 7) | (vlc_val & 0x7F)];
1524
1525
            // if context is zero, use one MEL event
1526
7.30k
            if (c_q == 0) { //zero context
1527
3.11k
                run -= 2; //subtract 2, since events number if multiplied by 2
1528
1529
                // if event is 0, discard decoded qinf
1530
3.11k
                qinf[1] = (run == -1) ? qinf[1] : 0;
1531
1532
3.11k
                if (run < 0) { // have we consumed all events in a run
1533
1.84k
                    run = mel_get_run(&mel);    // if yes, then get another run
1534
1.84k
                }
1535
3.11k
            }
1536
1537
            //prepare context for the next quad, eqn. 1 in ITU T.814
1538
7.30k
            c_q = ((qinf[1] & 0x10) >> 4) | ((qinf[1] & 0xE0) >> 5);
1539
1540
            //remove data from vlc stream, if qinf is not used, cwdlen is 0
1541
7.30k
            vlc_val = rev_advance(&vlc, qinf[1] & 0x7);
1542
7.30k
        }
1543
1544
        //update sigma
1545
        // The update depends on the value of x; consider one OPJ_UINT32
1546
        // if x is 0, 8, 16 and so on, then this line update c locations
1547
        //      nibble (4 bits) number   0 1 2 3 4 5 6 7
1548
        //                         LSB   0 0 c c 0 0 0 0
1549
        //                               0 0 c c 0 0 0 0
1550
        //                               0 0 0 0 0 0 0 0
1551
        //                               0 0 0 0 0 0 0 0
1552
        // if x is 4, 12, 20, then this line update locations c
1553
        //      nibble (4 bits) number   0 1 2 3 4 5 6 7
1554
        //                         LSB   0 0 0 0 0 0 c c
1555
        //                               0 0 0 0 0 0 c c
1556
        //                               0 0 0 0 0 0 0 0
1557
        //                               0 0 0 0 0 0 0 0
1558
7.32k
        *sip |= (((qinf[1] & 0x30) | ((qinf[1] & 0xC0) << 2))) << (4 + sip_shift);
1559
1560
7.32k
        sip += x & 0x7 ? 1 : 0; // move sigma pointer to next entry
1561
7.32k
        sip_shift ^= 0x10;      // increment/decrement sip_shift by 16
1562
1563
        // retrieve u
1564
        /////////////
1565
1566
        // uvlc_mode is made up of u_offset bits from the quad pair
1567
7.32k
        uvlc_mode = ((qinf[0] & 0x8) >> 3) | ((qinf[1] & 0x8) >> 2);
1568
7.32k
        if (uvlc_mode == 3) { // if both u_offset are set, get an event from
1569
            // the MEL run of events
1570
1.59k
            run -= 2; //subtract 2, since events number if multiplied by 2
1571
1.59k
            uvlc_mode += (run == -1) ? 1 : 0; //increment uvlc_mode if event is 1
1572
1.59k
            if (run < 0) { // if run is consumed (run is -1 or -2), get another run
1573
1.30k
                run = mel_get_run(&mel);
1574
1.30k
            }
1575
1.59k
        }
1576
        //decode uvlc_mode to get u for both quads
1577
7.32k
        consumed_bits = decode_init_uvlc(vlc_val, uvlc_mode, U_q);
1578
7.32k
        if (U_q[0] > zero_bplanes_p1 || U_q[1] > zero_bplanes_p1) {
1579
8
            if (p_manager_mutex) {
1580
8
                opj_mutex_lock(p_manager_mutex);
1581
8
            }
1582
8
            opj_event_msg(p_manager, EVT_ERROR, "Malformed HT codeblock. Decoding "
1583
8
                          "this codeblock is stopped. U_q is larger than zero "
1584
8
                          "bitplanes + 1 \n");
1585
8
            if (p_manager_mutex) {
1586
8
                opj_mutex_unlock(p_manager_mutex);
1587
8
            }
1588
8
            return OPJ_FALSE;
1589
8
        }
1590
1591
        //consume u bits in the VLC code
1592
7.31k
        vlc_val = rev_advance(&vlc, consumed_bits);
1593
1594
        //decode magsgn and update line_state
1595
        /////////////////////////////////////
1596
1597
        //We obtain a mask for the samples locations that needs evaluation
1598
7.31k
        locs = 0xFF;
1599
7.31k
        if (x + 4 > width) {
1600
16
            locs >>= (x + 4 - width) << 1;    // limits width
1601
16
        }
1602
7.31k
        locs = height > 1 ? locs : (locs & 0x55);         // limits height
1603
1604
7.31k
        if ((((qinf[0] & 0xF0) >> 4) | (qinf[1] & 0xF0)) & ~locs) {
1605
1
            if (p_manager_mutex) {
1606
1
                opj_mutex_lock(p_manager_mutex);
1607
1
            }
1608
1
            opj_event_msg(p_manager, EVT_ERROR, "Malformed HT codeblock. "
1609
1
                          "VLC code produces significant samples outside "
1610
1
                          "the codeblock area.\n");
1611
1
            if (p_manager_mutex) {
1612
1
                opj_mutex_unlock(p_manager_mutex);
1613
1
            }
1614
1
            return OPJ_FALSE;
1615
1
        }
1616
1617
        //first quad, starting at first sample in quad and moving on
1618
7.31k
        if (qinf[0] & 0x10) { //is it significant? (sigma_n)
1619
1.88k
            OPJ_UINT32 val;
1620
1621
1.88k
            ms_val = frwd_fetch(&magsgn);         //get 32 bits of magsgn data
1622
1.88k
            m_n = U_q[0] - ((qinf[0] >> 12) & 1); //evaluate m_n (number of bits
1623
            // to read from bitstream), using EMB e_k
1624
1.88k
            frwd_advance(&magsgn, m_n);         //consume m_n
1625
1.88k
            val = ms_val << 31;                 //get sign bit
1626
1.88k
            v_n = ms_val & ((1U << m_n) - 1);   //keep only m_n bits
1627
1.88k
            v_n |= ((qinf[0] & 0x100) >> 8) << m_n;  //add EMB e_1 as MSB
1628
1.88k
            v_n |= 1;                                //add center of bin
1629
            //v_n now has 2 * (\mu - 1) + 0.5 with correct sign bit
1630
            //add 2 to make it 2*\mu+0.5, shift it up to missing MSBs
1631
1.88k
            sp[0] = val | ((v_n + 2) << (p - 1));
1632
5.43k
        } else if (locs & 0x1) { // if this is inside the codeblock, set the
1633
5.43k
            sp[0] = 0;           // sample to zero
1634
5.43k
        }
1635
1636
7.31k
        if (qinf[0] & 0x20) { //sigma_n
1637
2.46k
            OPJ_UINT32 val, t;
1638
1639
2.46k
            ms_val = frwd_fetch(&magsgn);         //get 32 bits
1640
2.46k
            m_n = U_q[0] - ((qinf[0] >> 13) & 1); //m_n, uses EMB e_k
1641
2.46k
            frwd_advance(&magsgn, m_n);           //consume m_n
1642
2.46k
            val = ms_val << 31;                   //get sign bit
1643
2.46k
            v_n = ms_val & ((1U << m_n) - 1);     //keep only m_n bits
1644
2.46k
            v_n |= ((qinf[0] & 0x200) >> 9) << m_n; //add EMB e_1
1645
2.46k
            v_n |= 1;                               //bin center
1646
            //v_n now has 2 * (\mu - 1) + 0.5 with correct sign bit
1647
            //add 2 to make it 2*\mu+0.5, shift it up to missing MSBs
1648
2.46k
            sp[stride] = val | ((v_n + 2) << (p - 1));
1649
1650
            //update line_state: bit 7 (\sigma^N), and E^N
1651
2.46k
            t = lsp[0] & 0x7F;       // keep E^NW
1652
2.46k
            v_n = 32 - count_leading_zeros(v_n);
1653
2.46k
            lsp[0] = (OPJ_UINT8)(0x80 | (t > v_n ? t : v_n)); //max(E^NW, E^N) | s
1654
4.85k
        } else if (locs & 0x2) { // if this is inside the codeblock, set the
1655
4.85k
            sp[stride] = 0;      // sample to zero
1656
4.85k
        }
1657
1658
7.31k
        ++lsp; // move to next quad information
1659
7.31k
        ++sp;  // move to next column of samples
1660
1661
        //this is similar to the above two samples
1662
7.31k
        if (qinf[0] & 0x40) {
1663
2.00k
            OPJ_UINT32 val;
1664
1665
2.00k
            ms_val = frwd_fetch(&magsgn);
1666
2.00k
            m_n = U_q[0] - ((qinf[0] >> 14) & 1);
1667
2.00k
            frwd_advance(&magsgn, m_n);
1668
2.00k
            val = ms_val << 31;
1669
2.00k
            v_n = ms_val & ((1U << m_n) - 1);
1670
2.00k
            v_n |= (((qinf[0] & 0x400) >> 10) << m_n);
1671
2.00k
            v_n |= 1;
1672
2.00k
            sp[0] = val | ((v_n + 2) << (p - 1));
1673
5.31k
        } else if (locs & 0x4) {
1674
5.31k
            sp[0] = 0;
1675
5.31k
        }
1676
1677
7.31k
        lsp[0] = 0;
1678
7.31k
        if (qinf[0] & 0x80) {
1679
2.68k
            OPJ_UINT32 val;
1680
2.68k
            ms_val = frwd_fetch(&magsgn);
1681
2.68k
            m_n = U_q[0] - ((qinf[0] >> 15) & 1); //m_n
1682
2.68k
            frwd_advance(&magsgn, m_n);
1683
2.68k
            val = ms_val << 31;
1684
2.68k
            v_n = ms_val & ((1U << m_n) - 1);
1685
2.68k
            v_n |= ((qinf[0] & 0x800) >> 11) << m_n;
1686
2.68k
            v_n |= 1; //center of bin
1687
2.68k
            sp[stride] = val | ((v_n + 2) << (p - 1));
1688
1689
            //line_state: bit 7 (\sigma^NW), and E^NW for next quad
1690
2.68k
            lsp[0] = (OPJ_UINT8)(0x80 | (32 - count_leading_zeros(v_n)));
1691
4.62k
        } else if (locs & 0x8) { //if outside set to 0
1692
4.62k
            sp[stride] = 0;
1693
4.62k
        }
1694
1695
7.31k
        ++sp; //move to next column
1696
1697
        //second quad
1698
7.31k
        if (qinf[1] & 0x10) {
1699
2.20k
            OPJ_UINT32 val;
1700
1701
2.20k
            ms_val = frwd_fetch(&magsgn);
1702
2.20k
            m_n = U_q[1] - ((qinf[1] >> 12) & 1); //m_n
1703
2.20k
            frwd_advance(&magsgn, m_n);
1704
2.20k
            val = ms_val << 31;
1705
2.20k
            v_n = ms_val & ((1U << m_n) - 1);
1706
2.20k
            v_n |= (((qinf[1] & 0x100) >> 8) << m_n);
1707
2.20k
            v_n |= 1;
1708
2.20k
            sp[0] = val | ((v_n + 2) << (p - 1));
1709
5.11k
        } else if (locs & 0x10) {
1710
5.09k
            sp[0] = 0;
1711
5.09k
        }
1712
1713
7.31k
        if (qinf[1] & 0x20) {
1714
3.47k
            OPJ_UINT32 val, t;
1715
1716
3.47k
            ms_val = frwd_fetch(&magsgn);
1717
3.47k
            m_n = U_q[1] - ((qinf[1] >> 13) & 1); //m_n
1718
3.47k
            frwd_advance(&magsgn, m_n);
1719
3.47k
            val = ms_val << 31;
1720
3.47k
            v_n = ms_val & ((1U << m_n) - 1);
1721
3.47k
            v_n |= (((qinf[1] & 0x200) >> 9) << m_n);
1722
3.47k
            v_n |= 1;
1723
3.47k
            sp[stride] = val | ((v_n + 2) << (p - 1));
1724
1725
            //update line_state: bit 7 (\sigma^N), and E^N
1726
3.47k
            t = lsp[0] & 0x7F;            //E^NW
1727
3.47k
            v_n = 32 - count_leading_zeros(v_n);     //E^N
1728
3.47k
            lsp[0] = (OPJ_UINT8)(0x80 | (t > v_n ? t : v_n)); //max(E^NW, E^N) | s
1729
3.84k
        } else if (locs & 0x20) {
1730
3.82k
            sp[stride] = 0;    //no need to update line_state
1731
3.82k
        }
1732
1733
7.31k
        ++lsp; //move line state to next quad
1734
7.31k
        ++sp;  //move to next sample
1735
1736
7.31k
        if (qinf[1] & 0x40) {
1737
1.68k
            OPJ_UINT32 val;
1738
1739
1.68k
            ms_val = frwd_fetch(&magsgn);
1740
1.68k
            m_n = U_q[1] - ((qinf[1] >> 14) & 1); //m_n
1741
1.68k
            frwd_advance(&magsgn, m_n);
1742
1.68k
            val = ms_val << 31;
1743
1.68k
            v_n = ms_val & ((1U << m_n) - 1);
1744
1.68k
            v_n |= (((qinf[1] & 0x400) >> 10) << m_n);
1745
1.68k
            v_n |= 1;
1746
1.68k
            sp[0] = val | ((v_n + 2) << (p - 1));
1747
5.63k
        } else if (locs & 0x40) {
1748
5.62k
            sp[0] = 0;
1749
5.62k
        }
1750
1751
7.31k
        lsp[0] = 0;
1752
7.31k
        if (qinf[1] & 0x80) {
1753
2.05k
            OPJ_UINT32 val;
1754
1755
2.05k
            ms_val = frwd_fetch(&magsgn);
1756
2.05k
            m_n = U_q[1] - ((qinf[1] >> 15) & 1); //m_n
1757
2.05k
            frwd_advance(&magsgn, m_n);
1758
2.05k
            val = ms_val << 31;
1759
2.05k
            v_n = ms_val & ((1U << m_n) - 1);
1760
2.05k
            v_n |= (((qinf[1] & 0x800) >> 11) << m_n);
1761
2.05k
            v_n |= 1; //center of bin
1762
2.05k
            sp[stride] = val | ((v_n + 2) << (p - 1));
1763
1764
            //line_state: bit 7 (\sigma^NW), and E^NW for next quad
1765
2.05k
            lsp[0] = (OPJ_UINT8)(0x80 | (32 - count_leading_zeros(v_n)));
1766
5.25k
        } else if (locs & 0x80) {
1767
5.24k
            sp[stride] = 0;
1768
5.24k
        }
1769
1770
7.31k
        ++sp;
1771
7.31k
    }
1772
1773
    //non-initial lines
1774
    //////////////////////////
1775
1.90k
    for (y = 2; y < height; /*done at the end of loop*/) {
1776
1.52k
        OPJ_UINT32 *sip;
1777
1.52k
        OPJ_UINT8 ls0;
1778
1.52k
        OPJ_INT32 x;
1779
1780
1.52k
        sip_shift ^= 0x2;  // shift sigma to the upper half od the nibble
1781
1.52k
        sip_shift &= 0xFFFFFFEFU; //move back to 0 (it might have been at 0x10)
1782
1.52k
        sip = y & 0x4 ? sigma2 : sigma1; //choose sigma array
1783
1784
1.52k
        lsp = line_state;
1785
1.52k
        ls0 = lsp[0];                   // read the line state value
1786
1.52k
        lsp[0] = 0;                     // and set it to zero
1787
1.52k
        sp = decoded_data + y * stride; // generated samples
1788
1.52k
        c_q = 0;                        // context
1789
24.6k
        for (x = 0; x < width; x += 4) {
1790
23.0k
            OPJ_UINT32 U_q[2];
1791
23.0k
            OPJ_UINT32 uvlc_mode, consumed_bits;
1792
23.0k
            OPJ_UINT32 m_n, v_n;
1793
23.0k
            OPJ_UINT32 ms_val;
1794
23.0k
            OPJ_UINT32 locs;
1795
1796
            // decode vlc
1797
            /////////////
1798
1799
            //first quad
1800
            // get context, eqn. 2 ITU T.814
1801
            // c_q has \sigma^W | \sigma^SW
1802
23.0k
            c_q |= (ls0 >> 7);          //\sigma^NW | \sigma^N
1803
23.0k
            c_q |= (lsp[1] >> 5) & 0x4; //\sigma^NE | \sigma^NF
1804
1805
            //the following is very similar to previous code, so please refer to
1806
            // that
1807
23.0k
            vlc_val = rev_fetch(&vlc);
1808
23.0k
            qinf[0] = vlc_tbl1[(c_q << 7) | (vlc_val & 0x7F)];
1809
23.0k
            if (c_q == 0) { //zero context
1810
11.2k
                run -= 2;
1811
11.2k
                qinf[0] = (run == -1) ? qinf[0] : 0;
1812
11.2k
                if (run < 0) {
1813
6.77k
                    run = mel_get_run(&mel);
1814
6.77k
                }
1815
11.2k
            }
1816
            //prepare context for the next quad, \sigma^W | \sigma^SW
1817
23.0k
            c_q = ((qinf[0] & 0x40) >> 5) | ((qinf[0] & 0x80) >> 6);
1818
1819
            //remove data from vlc stream
1820
23.0k
            vlc_val = rev_advance(&vlc, qinf[0] & 0x7);
1821
1822
            //update sigma
1823
            // The update depends on the value of x and y; consider one OPJ_UINT32
1824
            // if x is 0, 8, 16 and so on, and y is 2, 6, etc., then this
1825
            // line update c locations
1826
            //      nibble (4 bits) number   0 1 2 3 4 5 6 7
1827
            //                         LSB   0 0 0 0 0 0 0 0
1828
            //                               0 0 0 0 0 0 0 0
1829
            //                               c c 0 0 0 0 0 0
1830
            //                               c c 0 0 0 0 0 0
1831
23.0k
            *sip |= (((qinf[0] & 0x30) >> 4) | ((qinf[0] & 0xC0) >> 2)) << sip_shift;
1832
1833
            //second quad
1834
23.0k
            qinf[1] = 0;
1835
23.0k
            if (x + 2 < width) {
1836
23.0k
                c_q |= (lsp[1] >> 7);
1837
23.0k
                c_q |= (lsp[2] >> 5) & 0x4;
1838
23.0k
                qinf[1] = vlc_tbl1[(c_q << 7) | (vlc_val & 0x7F)];
1839
23.0k
                if (c_q == 0) { //zero context
1840
10.4k
                    run -= 2;
1841
10.4k
                    qinf[1] = (run == -1) ? qinf[1] : 0;
1842
10.4k
                    if (run < 0) {
1843
6.93k
                        run = mel_get_run(&mel);
1844
6.93k
                    }
1845
10.4k
                }
1846
                //prepare context for the next quad
1847
23.0k
                c_q = ((qinf[1] & 0x40) >> 5) | ((qinf[1] & 0x80) >> 6);
1848
                //remove data from vlc stream
1849
23.0k
                vlc_val = rev_advance(&vlc, qinf[1] & 0x7);
1850
23.0k
            }
1851
1852
            //update sigma
1853
23.0k
            *sip |= (((qinf[1] & 0x30) | ((qinf[1] & 0xC0) << 2))) << (4 + sip_shift);
1854
1855
23.0k
            sip += x & 0x7 ? 1 : 0;
1856
23.0k
            sip_shift ^= 0x10;
1857
1858
            //retrieve u
1859
            ////////////
1860
23.0k
            uvlc_mode = ((qinf[0] & 0x8) >> 3) | ((qinf[1] & 0x8) >> 2);
1861
23.0k
            consumed_bits = decode_noninit_uvlc(vlc_val, uvlc_mode, U_q);
1862
23.0k
            vlc_val = rev_advance(&vlc, consumed_bits);
1863
1864
            //calculate E^max and add it to U_q, eqns 5 and 6 in ITU T.814
1865
23.0k
            if ((qinf[0] & 0xF0) & ((qinf[0] & 0xF0) - 1)) { // is \gamma_q 1?
1866
6.27k
                OPJ_UINT32 E = (ls0 & 0x7Fu);
1867
6.27k
                E = E > (lsp[1] & 0x7Fu) ? E : (lsp[1] & 0x7Fu); //max(E, E^NE, E^NF)
1868
                //since U_q already has u_q + 1, we subtract 2 instead of 1
1869
6.27k
                U_q[0] += E > 2 ? E - 2 : 0;
1870
6.27k
            }
1871
1872
23.0k
            if ((qinf[1] & 0xF0) & ((qinf[1] & 0xF0) - 1)) { //is \gamma_q 1?
1873
5.36k
                OPJ_UINT32 E = (lsp[1] & 0x7Fu);
1874
5.36k
                E = E > (lsp[2] & 0x7Fu) ? E : (lsp[2] & 0x7Fu); //max(E, E^NE, E^NF)
1875
                //since U_q already has u_q + 1, we subtract 2 instead of 1
1876
5.36k
                U_q[1] += E > 2 ? E - 2 : 0;
1877
5.36k
            }
1878
1879
23.0k
            if (U_q[0] > zero_bplanes_p1 || U_q[1] > zero_bplanes_p1) {
1880
9
                if (p_manager_mutex) {
1881
9
                    opj_mutex_lock(p_manager_mutex);
1882
9
                }
1883
9
                opj_event_msg(p_manager, EVT_ERROR, "Malformed HT codeblock. "
1884
9
                              "Decoding this codeblock is stopped. U_q is"
1885
9
                              "larger than bitplanes + 1 \n");
1886
9
                if (p_manager_mutex) {
1887
9
                    opj_mutex_unlock(p_manager_mutex);
1888
9
                }
1889
9
                return OPJ_FALSE;
1890
9
            }
1891
1892
23.0k
            ls0 = lsp[2]; //for next double quad
1893
23.0k
            lsp[1] = lsp[2] = 0;
1894
1895
            //decode magsgn and update line_state
1896
            /////////////////////////////////////
1897
1898
            //locations where samples need update
1899
23.0k
            locs = 0xFF;
1900
23.0k
            if (x + 4 > width) {
1901
43
                locs >>= (x + 4 - width) << 1;
1902
43
            }
1903
23.0k
            locs = y + 2 <= height ? locs : (locs & 0x55);
1904
1905
23.0k
            if ((((qinf[0] & 0xF0) >> 4) | (qinf[1] & 0xF0)) & ~locs) {
1906
3
                if (p_manager_mutex) {
1907
3
                    opj_mutex_lock(p_manager_mutex);
1908
3
                }
1909
3
                opj_event_msg(p_manager, EVT_ERROR, "Malformed HT codeblock. "
1910
3
                              "VLC code produces significant samples outside "
1911
3
                              "the codeblock area.\n");
1912
3
                if (p_manager_mutex) {
1913
3
                    opj_mutex_unlock(p_manager_mutex);
1914
3
                }
1915
3
                return OPJ_FALSE;
1916
3
            }
1917
1918
1919
1920
23.0k
            if (qinf[0] & 0x10) { //sigma_n
1921
8.45k
                OPJ_UINT32 val;
1922
1923
8.45k
                ms_val = frwd_fetch(&magsgn);
1924
8.45k
                m_n = U_q[0] - ((qinf[0] >> 12) & 1); //m_n
1925
8.45k
                frwd_advance(&magsgn, m_n);
1926
8.45k
                val = ms_val << 31;
1927
8.45k
                v_n = ms_val & ((1U << m_n) - 1);
1928
8.45k
                v_n |= ((qinf[0] & 0x100) >> 8) << m_n;
1929
8.45k
                v_n |= 1; //center of bin
1930
8.45k
                sp[0] = val | ((v_n + 2) << (p - 1));
1931
14.6k
            } else if (locs & 0x1) {
1932
14.6k
                sp[0] = 0;
1933
14.6k
            }
1934
1935
23.0k
            if (qinf[0] & 0x20) { //sigma_n
1936
5.22k
                OPJ_UINT32 val, t;
1937
1938
5.22k
                ms_val = frwd_fetch(&magsgn);
1939
5.22k
                m_n = U_q[0] - ((qinf[0] >> 13) & 1); //m_n
1940
5.22k
                frwd_advance(&magsgn, m_n);
1941
5.22k
                val = ms_val << 31;
1942
5.22k
                v_n = ms_val & ((1U << m_n) - 1);
1943
5.22k
                v_n |= ((qinf[0] & 0x200) >> 9) << m_n;
1944
5.22k
                v_n |= 1; //center of bin
1945
5.22k
                sp[stride] = val | ((v_n + 2) << (p - 1));
1946
1947
                //update line_state: bit 7 (\sigma^N), and E^N
1948
5.22k
                t = lsp[0] & 0x7F;          //E^NW
1949
5.22k
                v_n = 32 - count_leading_zeros(v_n);
1950
5.22k
                lsp[0] = (OPJ_UINT8)(0x80 | (t > v_n ? t : v_n));
1951
17.8k
            } else if (locs & 0x2) {
1952
17.6k
                sp[stride] = 0;    //no need to update line_state
1953
17.6k
            }
1954
1955
23.0k
            ++lsp;
1956
23.0k
            ++sp;
1957
1958
23.0k
            if (qinf[0] & 0x40) { //sigma_n
1959
4.84k
                OPJ_UINT32 val;
1960
1961
4.84k
                ms_val = frwd_fetch(&magsgn);
1962
4.84k
                m_n = U_q[0] - ((qinf[0] >> 14) & 1); //m_n
1963
4.84k
                frwd_advance(&magsgn, m_n);
1964
4.84k
                val = ms_val << 31;
1965
4.84k
                v_n = ms_val & ((1U << m_n) - 1);
1966
4.84k
                v_n |= (((qinf[0] & 0x400) >> 10) << m_n);
1967
4.84k
                v_n |= 1;                            //center of bin
1968
4.84k
                sp[0] = val | ((v_n + 2) << (p - 1));
1969
18.2k
            } else if (locs & 0x4) {
1970
18.2k
                sp[0] = 0;
1971
18.2k
            }
1972
1973
23.0k
            if (qinf[0] & 0x80) { //sigma_n
1974
4.35k
                OPJ_UINT32 val;
1975
1976
4.35k
                ms_val = frwd_fetch(&magsgn);
1977
4.35k
                m_n = U_q[0] - ((qinf[0] >> 15) & 1); //m_n
1978
4.35k
                frwd_advance(&magsgn, m_n);
1979
4.35k
                val = ms_val << 31;
1980
4.35k
                v_n = ms_val & ((1U << m_n) - 1);
1981
4.35k
                v_n |= ((qinf[0] & 0x800) >> 11) << m_n;
1982
4.35k
                v_n |= 1; //center of bin
1983
4.35k
                sp[stride] = val | ((v_n + 2) << (p - 1));
1984
1985
                //update line_state: bit 7 (\sigma^NW), and E^NW for next quad
1986
4.35k
                lsp[0] = (OPJ_UINT8)(0x80 | (32 - count_leading_zeros(v_n)));
1987
18.7k
            } else if (locs & 0x8) {
1988
18.5k
                sp[stride] = 0;
1989
18.5k
            }
1990
1991
23.0k
            ++sp;
1992
1993
23.0k
            if (qinf[1] & 0x10) { //sigma_n
1994
8.16k
                OPJ_UINT32 val;
1995
1996
8.16k
                ms_val = frwd_fetch(&magsgn);
1997
8.16k
                m_n = U_q[1] - ((qinf[1] >> 12) & 1); //m_n
1998
8.16k
                frwd_advance(&magsgn, m_n);
1999
8.16k
                val = ms_val << 31;
2000
8.16k
                v_n = ms_val & ((1U << m_n) - 1);
2001
8.16k
                v_n |= (((qinf[1] & 0x100) >> 8) << m_n);
2002
8.16k
                v_n |= 1;                            //center of bin
2003
8.16k
                sp[0] = val | ((v_n + 2) << (p - 1));
2004
14.9k
            } else if (locs & 0x10) {
2005
14.8k
                sp[0] = 0;
2006
14.8k
            }
2007
2008
23.0k
            if (qinf[1] & 0x20) { //sigma_n
2009
4.03k
                OPJ_UINT32 val, t;
2010
2011
4.03k
                ms_val = frwd_fetch(&magsgn);
2012
4.03k
                m_n = U_q[1] - ((qinf[1] >> 13) & 1); //m_n
2013
4.03k
                frwd_advance(&magsgn, m_n);
2014
4.03k
                val = ms_val << 31;
2015
4.03k
                v_n = ms_val & ((1U << m_n) - 1);
2016
4.03k
                v_n |= (((qinf[1] & 0x200) >> 9) << m_n);
2017
4.03k
                v_n |= 1; //center of bin
2018
4.03k
                sp[stride] = val | ((v_n + 2) << (p - 1));
2019
2020
                //update line_state: bit 7 (\sigma^N), and E^N
2021
4.03k
                t = lsp[0] & 0x7F;          //E^NW
2022
4.03k
                v_n = 32 - count_leading_zeros(v_n);
2023
4.03k
                lsp[0] = (OPJ_UINT8)(0x80 | (t > v_n ? t : v_n));
2024
19.0k
            } else if (locs & 0x20) {
2025
18.8k
                sp[stride] = 0;    //no need to update line_state
2026
18.8k
            }
2027
2028
23.0k
            ++lsp;
2029
23.0k
            ++sp;
2030
2031
23.0k
            if (qinf[1] & 0x40) { //sigma_n
2032
3.68k
                OPJ_UINT32 val;
2033
2034
3.68k
                ms_val = frwd_fetch(&magsgn);
2035
3.68k
                m_n = U_q[1] - ((qinf[1] >> 14) & 1); //m_n
2036
3.68k
                frwd_advance(&magsgn, m_n);
2037
3.68k
                val = ms_val << 31;
2038
3.68k
                v_n = ms_val & ((1U << m_n) - 1);
2039
3.68k
                v_n |= (((qinf[1] & 0x400) >> 10) << m_n);
2040
3.68k
                v_n |= 1;                            //center of bin
2041
3.68k
                sp[0] = val | ((v_n + 2) << (p - 1));
2042
19.3k
            } else if (locs & 0x40) {
2043
19.3k
                sp[0] = 0;
2044
19.3k
            }
2045
2046
23.0k
            if (qinf[1] & 0x80) { //sigma_n
2047
4.05k
                OPJ_UINT32 val;
2048
2049
4.05k
                ms_val = frwd_fetch(&magsgn);
2050
4.05k
                m_n = U_q[1] - ((qinf[1] >> 15) & 1); //m_n
2051
4.05k
                frwd_advance(&magsgn, m_n);
2052
4.05k
                val = ms_val << 31;
2053
4.05k
                v_n = ms_val & ((1U << m_n) - 1);
2054
4.05k
                v_n |= (((qinf[1] & 0x800) >> 11) << m_n);
2055
4.05k
                v_n |= 1; //center of bin
2056
4.05k
                sp[stride] = val | ((v_n + 2) << (p - 1));
2057
2058
                //update line_state: bit 7 (\sigma^NW), and E^NW for next quad
2059
4.05k
                lsp[0] = (OPJ_UINT8)(0x80 | (32 - count_leading_zeros(v_n)));
2060
19.0k
            } else if (locs & 0x80) {
2061
18.7k
                sp[stride] = 0;
2062
18.7k
            }
2063
2064
23.0k
            ++sp;
2065
23.0k
        }
2066
2067
1.51k
        y += 2;
2068
1.51k
        if (num_passes > 1 && (y & 3) == 0) { //executed at multiples of 4
2069
            // This is for SPP and potentially MRP
2070
2071
893
            if (num_passes > 2) { //do MRP
2072
                // select the current stripe
2073
828
                OPJ_UINT32 *cur_sig = y & 0x4 ? sigma1 : sigma2;
2074
                // the address of the data that needs updating
2075
828
                OPJ_UINT32 *dpp = decoded_data + (y - 4) * stride;
2076
828
                OPJ_UINT32 half = 1u << (p - 2); // half the center of the bin
2077
828
                OPJ_INT32 i;
2078
7.38k
                for (i = 0; i < width; i += 8) {
2079
                    //Process one entry from sigma array at a time
2080
                    // Each nibble (4 bits) in the sigma array represents 4 rows,
2081
                    // and the 32 bits contain 8 columns
2082
6.55k
                    OPJ_UINT32 cwd = rev_fetch_mrp(&magref); // get 32 bit data
2083
6.55k
                    OPJ_UINT32 sig = *cur_sig++; // 32 bit that will be processed now
2084
6.55k
                    OPJ_UINT32 col_mask = 0xFu;  // a mask for a column in sig
2085
6.55k
                    OPJ_UINT32 *dp = dpp + i;    // next column in decode samples
2086
6.55k
                    if (sig) { // if any of the 32 bits are set
2087
5.98k
                        int j;
2088
53.8k
                        for (j = 0; j < 8; ++j, dp++) { //one column at a time
2089
47.8k
                            if (sig & col_mask) { // lowest nibble
2090
28.1k
                                OPJ_UINT32 sample_mask = 0x11111111u & col_mask; //LSB
2091
2092
28.1k
                                if (sig & sample_mask) { //if LSB is set
2093
14.2k
                                    OPJ_UINT32 sym;
2094
2095
14.2k
                                    assert(dp[0] != 0); // decoded value cannot be zero
2096
14.2k
                                    sym = cwd & 1; // get it value
2097
                                    // remove center of bin if sym is 0
2098
14.2k
                                    dp[0] ^= (1 - sym) << (p - 1);
2099
14.2k
                                    dp[0] |= half;      // put half the center of bin
2100
14.2k
                                    cwd >>= 1;          //consume word
2101
14.2k
                                }
2102
28.1k
                                sample_mask += sample_mask; //next row
2103
2104
28.1k
                                if (sig & sample_mask) {
2105
13.2k
                                    OPJ_UINT32 sym;
2106
2107
13.2k
                                    assert(dp[stride] != 0);
2108
13.2k
                                    sym = cwd & 1;
2109
13.2k
                                    dp[stride] ^= (1 - sym) << (p - 1);
2110
13.2k
                                    dp[stride] |= half;
2111
13.2k
                                    cwd >>= 1;
2112
13.2k
                                }
2113
28.1k
                                sample_mask += sample_mask;
2114
2115
28.1k
                                if (sig & sample_mask) {
2116
12.3k
                                    OPJ_UINT32 sym;
2117
2118
12.3k
                                    assert(dp[2 * stride] != 0);
2119
12.3k
                                    sym = cwd & 1;
2120
12.3k
                                    dp[2 * stride] ^= (1 - sym) << (p - 1);
2121
12.3k
                                    dp[2 * stride] |= half;
2122
12.3k
                                    cwd >>= 1;
2123
12.3k
                                }
2124
28.1k
                                sample_mask += sample_mask;
2125
2126
28.1k
                                if (sig & sample_mask) {
2127
9.37k
                                    OPJ_UINT32 sym;
2128
2129
9.37k
                                    assert(dp[3 * stride] != 0);
2130
9.37k
                                    sym = cwd & 1;
2131
9.37k
                                    dp[3 * stride] ^= (1 - sym) << (p - 1);
2132
9.37k
                                    dp[3 * stride] |= half;
2133
9.37k
                                    cwd >>= 1;
2134
9.37k
                                }
2135
28.1k
                                sample_mask += sample_mask;
2136
28.1k
                            }
2137
47.8k
                            col_mask <<= 4; //next column
2138
47.8k
                        }
2139
5.98k
                    }
2140
                    // consume data according to the number of bits set
2141
6.55k
                    rev_advance_mrp(&magref, population_count(sig));
2142
6.55k
                }
2143
828
            }
2144
2145
893
            if (y >= 4) { // update mbr array at the end of each stripe
2146
                //generate mbr corresponding to a stripe
2147
893
                OPJ_UINT32 *sig = y & 0x4 ? sigma1 : sigma2;
2148
893
                OPJ_UINT32 *mbr = y & 0x4 ? mbr1 : mbr2;
2149
2150
                //data is processed in patches of 8 columns, each
2151
                // each 32 bits in sigma1 or mbr1 represent 4 rows
2152
2153
                //integrate horizontally
2154
893
                OPJ_UINT32 prev = 0; // previous columns
2155
893
                OPJ_INT32 i;
2156
7.78k
                for (i = 0; i < width; i += 8, mbr++, sig++) {
2157
6.89k
                    OPJ_UINT32 t, z;
2158
2159
6.89k
                    mbr[0] = sig[0];         //start with significant samples
2160
6.89k
                    mbr[0] |= prev >> 28;    //for first column, left neighbors
2161
6.89k
                    mbr[0] |= sig[0] << 4;   //left neighbors
2162
6.89k
                    mbr[0] |= sig[0] >> 4;   //right neighbors
2163
6.89k
                    mbr[0] |= sig[1] << 28;  //for last column, right neighbors
2164
6.89k
                    prev = sig[0];           // for next group of columns
2165
2166
                    //integrate vertically
2167
6.89k
                    t = mbr[0], z = mbr[0];
2168
6.89k
                    z |= (t & 0x77777777) << 1; //above neighbors
2169
6.89k
                    z |= (t & 0xEEEEEEEE) >> 1; //below neighbors
2170
6.89k
                    mbr[0] = z & ~sig[0]; //remove already significance samples
2171
6.89k
                }
2172
893
            }
2173
2174
893
            if (y >= 8) { //wait until 8 rows has been processed
2175
543
                OPJ_UINT32 *cur_sig, *cur_mbr, *nxt_sig, *nxt_mbr;
2176
543
                OPJ_UINT32 prev;
2177
543
                OPJ_UINT32 val;
2178
543
                OPJ_INT32 i;
2179
2180
                // add membership from the next stripe, obtained above
2181
543
                cur_sig = y & 0x4 ? sigma2 : sigma1;
2182
543
                cur_mbr = y & 0x4 ? mbr2 : mbr1;
2183
543
                nxt_sig = y & 0x4 ? sigma1 : sigma2;  //future samples
2184
543
                prev = 0; // the columns before these group of 8 columns
2185
4.59k
                for (i = 0; i < width; i += 8, cur_mbr++, cur_sig++, nxt_sig++) {
2186
4.05k
                    OPJ_UINT32 t = nxt_sig[0];
2187
4.05k
                    t |= prev >> 28;        //for first column, left neighbors
2188
4.05k
                    t |= nxt_sig[0] << 4;   //left neighbors
2189
4.05k
                    t |= nxt_sig[0] >> 4;   //right neighbors
2190
4.05k
                    t |= nxt_sig[1] << 28;  //for last column, right neighbors
2191
4.05k
                    prev = nxt_sig[0];      // for next group of columns
2192
2193
4.05k
                    if (!stripe_causal) {
2194
3.75k
                        cur_mbr[0] |= (t & 0x11111111u) << 3; //propagate up to cur_mbr
2195
3.75k
                    }
2196
4.05k
                    cur_mbr[0] &= ~cur_sig[0]; //remove already significance samples
2197
4.05k
                }
2198
2199
                //find new locations and get signs
2200
543
                cur_sig = y & 0x4 ? sigma2 : sigma1;
2201
543
                cur_mbr = y & 0x4 ? mbr2 : mbr1;
2202
543
                nxt_sig = y & 0x4 ? sigma1 : sigma2; //future samples
2203
543
                nxt_mbr = y & 0x4 ? mbr1 : mbr2;     //future samples
2204
543
                val = 3u << (p - 2); // sample values for newly discovered
2205
                // significant samples including the bin center
2206
4.59k
                for (i = 0; i < width;
2207
4.05k
                        i += 8, cur_sig++, cur_mbr++, nxt_sig++, nxt_mbr++) {
2208
4.05k
                    OPJ_UINT32 ux, tx;
2209
4.05k
                    OPJ_UINT32 mbr = *cur_mbr;
2210
4.05k
                    OPJ_UINT32 new_sig = 0;
2211
4.05k
                    if (mbr) { //are there any samples that might be significant
2212
3.82k
                        OPJ_INT32 n;
2213
11.4k
                        for (n = 0; n < 8; n += 4) {
2214
7.65k
                            OPJ_UINT32 col_mask;
2215
7.65k
                            OPJ_UINT32 inv_sig;
2216
7.65k
                            OPJ_INT32 end;
2217
7.65k
                            OPJ_INT32 j;
2218
2219
7.65k
                            OPJ_UINT32 cwd = frwd_fetch(&sigprop); //get 32 bits
2220
7.65k
                            OPJ_UINT32 cnt = 0;
2221
2222
7.65k
                            OPJ_UINT32 *dp = decoded_data + (y - 8) * stride;
2223
7.65k
                            dp += i + n; //address for decoded samples
2224
2225
7.65k
                            col_mask = 0xFu << (4 * n); //a mask to select a column
2226
2227
7.65k
                            inv_sig = ~cur_sig[0]; // insignificant samples
2228
2229
                            //find the last sample we operate on
2230
7.65k
                            end = n + 4 + i < width ? n + 4 : width - i;
2231
2232
37.9k
                            for (j = n; j < end; ++j, ++dp, col_mask <<= 4) {
2233
30.2k
                                OPJ_UINT32 sample_mask;
2234
2235
30.2k
                                if ((col_mask & mbr) == 0) { //no samples need checking
2236
3.36k
                                    continue;
2237
3.36k
                                }
2238
2239
                                //scan mbr to find a new significant sample
2240
26.8k
                                sample_mask = 0x11111111u & col_mask; // LSB
2241
26.8k
                                if (mbr & sample_mask) {
2242
15.0k
                                    assert(dp[0] == 0); // the sample must have been 0
2243
15.0k
                                    if (cwd & 1) { //if this sample has become significant
2244
                                        // must propagate it to nearby samples
2245
4.08k
                                        OPJ_UINT32 t;
2246
4.08k
                                        new_sig |= sample_mask;  // new significant samples
2247
4.08k
                                        t = 0x32u << (j * 4);// propagation to neighbors
2248
4.08k
                                        mbr |= t & inv_sig; //remove already significant samples
2249
4.08k
                                    }
2250
15.0k
                                    cwd >>= 1;
2251
15.0k
                                    ++cnt; //consume bit and increment number of
2252
                                    //consumed bits
2253
15.0k
                                }
2254
2255
26.8k
                                sample_mask += sample_mask;  // next row
2256
26.8k
                                if (mbr & sample_mask) {
2257
16.6k
                                    assert(dp[stride] == 0);
2258
16.6k
                                    if (cwd & 1) {
2259
4.19k
                                        OPJ_UINT32 t;
2260
4.19k
                                        new_sig |= sample_mask;
2261
4.19k
                                        t = 0x74u << (j * 4);
2262
4.19k
                                        mbr |= t & inv_sig;
2263
4.19k
                                    }
2264
16.6k
                                    cwd >>= 1;
2265
16.6k
                                    ++cnt;
2266
16.6k
                                }
2267
2268
26.8k
                                sample_mask += sample_mask;
2269
26.8k
                                if (mbr & sample_mask) {
2270
18.6k
                                    assert(dp[2 * stride] == 0);
2271
18.6k
                                    if (cwd & 1) {
2272
5.67k
                                        OPJ_UINT32 t;
2273
5.67k
                                        new_sig |= sample_mask;
2274
5.67k
                                        t = 0xE8u << (j * 4);
2275
5.67k
                                        mbr |= t & inv_sig;
2276
5.67k
                                    }
2277
18.6k
                                    cwd >>= 1;
2278
18.6k
                                    ++cnt;
2279
18.6k
                                }
2280
2281
26.8k
                                sample_mask += sample_mask;
2282
26.8k
                                if (mbr & sample_mask) {
2283
20.3k
                                    assert(dp[3 * stride] == 0);
2284
20.3k
                                    if (cwd & 1) {
2285
5.96k
                                        OPJ_UINT32 t;
2286
5.96k
                                        new_sig |= sample_mask;
2287
5.96k
                                        t = 0xC0u << (j * 4);
2288
5.96k
                                        mbr |= t & inv_sig;
2289
5.96k
                                    }
2290
20.3k
                                    cwd >>= 1;
2291
20.3k
                                    ++cnt;
2292
20.3k
                                }
2293
26.8k
                            }
2294
2295
                            //obtain signs here
2296
7.65k
                            if (new_sig & (0xFFFFu << (4 * n))) { //if any
2297
4.01k
                                OPJ_UINT32 col_mask;
2298
4.01k
                                OPJ_INT32 j;
2299
4.01k
                                OPJ_UINT32 *dp = decoded_data + (y - 8) * stride;
2300
4.01k
                                dp += i + n; // decoded samples address
2301
4.01k
                                col_mask = 0xFu << (4 * n); //mask to select a column
2302
2303
20.0k
                                for (j = n; j < end; ++j, ++dp, col_mask <<= 4) {
2304
16.0k
                                    OPJ_UINT32 sample_mask;
2305
2306
16.0k
                                    if ((col_mask & new_sig) == 0) { //if non is significant
2307
5.76k
                                        continue;
2308
5.76k
                                    }
2309
2310
                                    //scan 4 signs
2311
10.2k
                                    sample_mask = 0x11111111u & col_mask;
2312
10.2k
                                    if (new_sig & sample_mask) {
2313
4.08k
                                        assert(dp[0] == 0);
2314
4.08k
                                        dp[0] |= ((cwd & 1) << 31) | val; //put value and sign
2315
4.08k
                                        cwd >>= 1;
2316
4.08k
                                        ++cnt; //consume bit and increment number
2317
                                        //of consumed bits
2318
4.08k
                                    }
2319
2320
10.2k
                                    sample_mask += sample_mask;
2321
10.2k
                                    if (new_sig & sample_mask) {
2322
4.19k
                                        assert(dp[stride] == 0);
2323
4.19k
                                        dp[stride] |= ((cwd & 1) << 31) | val;
2324
4.19k
                                        cwd >>= 1;
2325
4.19k
                                        ++cnt;
2326
4.19k
                                    }
2327
2328
10.2k
                                    sample_mask += sample_mask;
2329
10.2k
                                    if (new_sig & sample_mask) {
2330
5.67k
                                        assert(dp[2 * stride] == 0);
2331
5.67k
                                        dp[2 * stride] |= ((cwd & 1) << 31) | val;
2332
5.67k
                                        cwd >>= 1;
2333
5.67k
                                        ++cnt;
2334
5.67k
                                    }
2335
2336
10.2k
                                    sample_mask += sample_mask;
2337
10.2k
                                    if (new_sig & sample_mask) {
2338
5.96k
                                        assert(dp[3 * stride] == 0);
2339
5.96k
                                        dp[3 * stride] |= ((cwd & 1) << 31) | val;
2340
5.96k
                                        cwd >>= 1;
2341
5.96k
                                        ++cnt;
2342
5.96k
                                    }
2343
10.2k
                                }
2344
2345
4.01k
                            }
2346
7.65k
                            frwd_advance(&sigprop, cnt); //consume the bits from bitstrm
2347
7.65k
                            cnt = 0;
2348
2349
                            //update the next 8 columns
2350
7.65k
                            if (n == 4) {
2351
                                //horizontally
2352
3.82k
                                OPJ_UINT32 t = new_sig >> 28;
2353
3.82k
                                t |= ((t & 0xE) >> 1) | ((t & 7) << 1);
2354
3.82k
                                cur_mbr[1] |= t & ~cur_sig[1];
2355
3.82k
                            }
2356
7.65k
                        }
2357
3.82k
                    }
2358
                    //update the next stripe (vertically propagation)
2359
4.05k
                    new_sig |= cur_sig[0];
2360
4.05k
                    ux = (new_sig & 0x88888888) >> 3;
2361
4.05k
                    tx = ux | (ux << 4) | (ux >> 4); //left and right neighbors
2362
4.05k
                    if (i > 0) {
2363
3.50k
                        nxt_mbr[-1] |= (ux << 28) & ~nxt_sig[-1];
2364
3.50k
                    }
2365
4.05k
                    nxt_mbr[0] |= tx & ~nxt_sig[0];
2366
4.05k
                    nxt_mbr[1] |= (ux >> 28) & ~nxt_sig[1];
2367
4.05k
                }
2368
2369
                //clear current sigma
2370
                //mbr need not be cleared because it is overwritten
2371
543
                cur_sig = y & 0x4 ? sigma2 : sigma1;
2372
543
                memset(cur_sig, 0, ((((OPJ_UINT32)width + 7u) >> 3) + 1u) << 2);
2373
543
            }
2374
893
        }
2375
1.51k
    }
2376
2377
    //terminating
2378
375
    if (num_passes > 1) {
2379
357
        OPJ_INT32 st, y;
2380
2381
357
        if (num_passes > 2 && ((height & 3) == 1 || (height & 3) == 2)) {
2382
            //do magref
2383
20
            OPJ_UINT32 *cur_sig = height & 0x4 ? sigma2 : sigma1; //reversed
2384
20
            OPJ_UINT32 *dpp = decoded_data + (height & 0xFFFFFC) * stride;
2385
20
            OPJ_UINT32 half = 1u << (p - 2);
2386
20
            OPJ_INT32 i;
2387
653
            for (i = 0; i < width; i += 8) {
2388
633
                OPJ_UINT32 cwd = rev_fetch_mrp(&magref);
2389
633
                OPJ_UINT32 sig = *cur_sig++;
2390
633
                OPJ_UINT32 col_mask = 0xF;
2391
633
                OPJ_UINT32 *dp = dpp + i;
2392
633
                if (sig) {
2393
377
                    int j;
2394
3.39k
                    for (j = 0; j < 8; ++j, dp++) {
2395
3.01k
                        if (sig & col_mask) {
2396
1.81k
                            OPJ_UINT32 sample_mask = 0x11111111 & col_mask;
2397
2398
1.81k
                            if (sig & sample_mask) {
2399
1.34k
                                OPJ_UINT32 sym;
2400
1.34k
                                assert(dp[0] != 0);
2401
1.34k
                                sym = cwd & 1;
2402
1.34k
                                dp[0] ^= (1 - sym) << (p - 1);
2403
1.34k
                                dp[0] |= half;
2404
1.34k
                                cwd >>= 1;
2405
1.34k
                            }
2406
1.81k
                            sample_mask += sample_mask;
2407
2408
1.81k
                            if (sig & sample_mask) {
2409
1.72k
                                OPJ_UINT32 sym;
2410
1.72k
                                assert(dp[stride] != 0);
2411
1.72k
                                sym = cwd & 1;
2412
1.72k
                                dp[stride] ^= (1 - sym) << (p - 1);
2413
1.72k
                                dp[stride] |= half;
2414
1.72k
                                cwd >>= 1;
2415
1.72k
                            }
2416
1.81k
                            sample_mask += sample_mask;
2417
2418
1.81k
                            if (sig & sample_mask) {
2419
0
                                OPJ_UINT32 sym;
2420
0
                                assert(dp[2 * stride] != 0);
2421
0
                                sym = cwd & 1;
2422
0
                                dp[2 * stride] ^= (1 - sym) << (p - 1);
2423
0
                                dp[2 * stride] |= half;
2424
0
                                cwd >>= 1;
2425
0
                            }
2426
1.81k
                            sample_mask += sample_mask;
2427
2428
1.81k
                            if (sig & sample_mask) {
2429
0
                                OPJ_UINT32 sym;
2430
0
                                assert(dp[3 * stride] != 0);
2431
0
                                sym = cwd & 1;
2432
0
                                dp[3 * stride] ^= (1 - sym) << (p - 1);
2433
0
                                dp[3 * stride] |= half;
2434
0
                                cwd >>= 1;
2435
0
                            }
2436
1.81k
                            sample_mask += sample_mask;
2437
1.81k
                        }
2438
3.01k
                        col_mask <<= 4;
2439
3.01k
                    }
2440
377
                }
2441
633
                rev_advance_mrp(&magref, population_count(sig));
2442
633
            }
2443
20
        }
2444
2445
        //do the last incomplete stripe
2446
        // for cases of (height & 3) == 0 and 3
2447
        // the should have been processed previously
2448
357
        if ((height & 3) == 1 || (height & 3) == 2) {
2449
            //generate mbr of first stripe
2450
21
            OPJ_UINT32 *sig = height & 0x4 ? sigma2 : sigma1;
2451
21
            OPJ_UINT32 *mbr = height & 0x4 ? mbr2 : mbr1;
2452
            //integrate horizontally
2453
21
            OPJ_UINT32 prev = 0;
2454
21
            OPJ_INT32 i;
2455
655
            for (i = 0; i < width; i += 8, mbr++, sig++) {
2456
634
                OPJ_UINT32 t, z;
2457
2458
634
                mbr[0] = sig[0];
2459
634
                mbr[0] |= prev >> 28;    //for first column, left neighbors
2460
634
                mbr[0] |= sig[0] << 4;   //left neighbors
2461
634
                mbr[0] |= sig[0] >> 4;   //left neighbors
2462
634
                mbr[0] |= sig[1] << 28;  //for last column, right neighbors
2463
634
                prev = sig[0];
2464
2465
                //integrate vertically
2466
634
                t = mbr[0], z = mbr[0];
2467
634
                z |= (t & 0x77777777) << 1; //above neighbors
2468
634
                z |= (t & 0xEEEEEEEE) >> 1; //below neighbors
2469
634
                mbr[0] = z & ~sig[0]; //remove already significance samples
2470
634
            }
2471
21
        }
2472
2473
357
        st = height;
2474
357
        st -= height > 6 ? (((height + 1) & 3) + 3) : height;
2475
717
        for (y = st; y < height; y += 4) {
2476
360
            OPJ_UINT32 *cur_sig, *cur_mbr, *nxt_sig, *nxt_mbr;
2477
360
            OPJ_UINT32 val;
2478
360
            OPJ_INT32 i;
2479
2480
360
            OPJ_UINT32 pattern = 0xFFFFFFFFu; // a pattern needed samples
2481
360
            if (height - y == 3) {
2482
10
                pattern = 0x77777777u;
2483
350
            } else if (height - y == 2) {
2484
18
                pattern = 0x33333333u;
2485
332
            } else if (height - y == 1) {
2486
3
                pattern = 0x11111111u;
2487
3
            }
2488
2489
            //add membership from the next stripe, obtained above
2490
360
            if (height - y > 4) {
2491
3
                OPJ_UINT32 prev = 0;
2492
3
                OPJ_INT32 i;
2493
3
                cur_sig = y & 0x4 ? sigma2 : sigma1;
2494
3
                cur_mbr = y & 0x4 ? mbr2 : mbr1;
2495
3
                nxt_sig = y & 0x4 ? sigma1 : sigma2;
2496
13
                for (i = 0; i < width; i += 8, cur_mbr++, cur_sig++, nxt_sig++) {
2497
10
                    OPJ_UINT32 t = nxt_sig[0];
2498
10
                    t |= prev >> 28;     //for first column, left neighbors
2499
10
                    t |= nxt_sig[0] << 4;   //left neighbors
2500
10
                    t |= nxt_sig[0] >> 4;   //left neighbors
2501
10
                    t |= nxt_sig[1] << 28;  //for last column, right neighbors
2502
10
                    prev = nxt_sig[0];
2503
2504
10
                    if (!stripe_causal) {
2505
10
                        cur_mbr[0] |= (t & 0x11111111u) << 3;
2506
10
                    }
2507
                    //remove already significance samples
2508
10
                    cur_mbr[0] &= ~cur_sig[0];
2509
10
                }
2510
3
            }
2511
2512
            //find new locations and get signs
2513
360
            cur_sig = y & 0x4 ? sigma2 : sigma1;
2514
360
            cur_mbr = y & 0x4 ? mbr2 : mbr1;
2515
360
            nxt_sig = y & 0x4 ? sigma1 : sigma2;
2516
360
            nxt_mbr = y & 0x4 ? mbr1 : mbr2;
2517
360
            val = 3u << (p - 2);
2518
3.75k
            for (i = 0; i < width; i += 8,
2519
3.39k
                    cur_sig++, cur_mbr++, nxt_sig++, nxt_mbr++) {
2520
3.39k
                OPJ_UINT32 mbr = *cur_mbr & pattern; //skip unneeded samples
2521
3.39k
                OPJ_UINT32 new_sig = 0;
2522
3.39k
                OPJ_UINT32 ux, tx;
2523
3.39k
                if (mbr) {
2524
2.92k
                    OPJ_INT32 n;
2525
8.77k
                    for (n = 0; n < 8; n += 4) {
2526
5.85k
                        OPJ_UINT32 col_mask;
2527
5.85k
                        OPJ_UINT32 inv_sig;
2528
5.85k
                        OPJ_INT32 end;
2529
5.85k
                        OPJ_INT32 j;
2530
2531
5.85k
                        OPJ_UINT32 cwd = frwd_fetch(&sigprop);
2532
5.85k
                        OPJ_UINT32 cnt = 0;
2533
2534
5.85k
                        OPJ_UINT32 *dp = decoded_data + y * stride;
2535
5.85k
                        dp += i + n;
2536
2537
5.85k
                        col_mask = 0xFu << (4 * n);
2538
2539
5.85k
                        inv_sig = ~cur_sig[0] & pattern;
2540
2541
5.85k
                        end = n + 4 + i < width ? n + 4 : width - i;
2542
29.1k
                        for (j = n; j < end; ++j, ++dp, col_mask <<= 4) {
2543
23.2k
                            OPJ_UINT32 sample_mask;
2544
2545
23.2k
                            if ((col_mask & mbr) == 0) {
2546
2.03k
                                continue;
2547
2.03k
                            }
2548
2549
                            //scan 4 mbr
2550
21.2k
                            sample_mask = 0x11111111u & col_mask;
2551
21.2k
                            if (mbr & sample_mask) {
2552
14.3k
                                assert(dp[0] == 0);
2553
14.3k
                                if (cwd & 1) {
2554
5.83k
                                    OPJ_UINT32 t;
2555
5.83k
                                    new_sig |= sample_mask;
2556
5.83k
                                    t = 0x32u << (j * 4);
2557
5.83k
                                    mbr |= t & inv_sig;
2558
5.83k
                                }
2559
14.3k
                                cwd >>= 1;
2560
14.3k
                                ++cnt;
2561
14.3k
                            }
2562
2563
21.2k
                            sample_mask += sample_mask;
2564
21.2k
                            if (mbr & sample_mask) {
2565
16.7k
                                assert(dp[stride] == 0);
2566
16.7k
                                if (cwd & 1) {
2567
6.99k
                                    OPJ_UINT32 t;
2568
6.99k
                                    new_sig |= sample_mask;
2569
6.99k
                                    t = 0x74u << (j * 4);
2570
6.99k
                                    mbr |= t & inv_sig;
2571
6.99k
                                }
2572
16.7k
                                cwd >>= 1;
2573
16.7k
                                ++cnt;
2574
16.7k
                            }
2575
2576
21.2k
                            sample_mask += sample_mask;
2577
21.2k
                            if (mbr & sample_mask) {
2578
13.5k
                                assert(dp[2 * stride] == 0);
2579
13.5k
                                if (cwd & 1) {
2580
5.64k
                                    OPJ_UINT32 t;
2581
5.64k
                                    new_sig |= sample_mask;
2582
5.64k
                                    t = 0xE8u << (j * 4);
2583
5.64k
                                    mbr |= t & inv_sig;
2584
5.64k
                                }
2585
13.5k
                                cwd >>= 1;
2586
13.5k
                                ++cnt;
2587
13.5k
                            }
2588
2589
21.2k
                            sample_mask += sample_mask;
2590
21.2k
                            if (mbr & sample_mask) {
2591
12.2k
                                assert(dp[3 * stride] == 0);
2592
12.2k
                                if (cwd & 1) {
2593
5.84k
                                    OPJ_UINT32 t;
2594
5.84k
                                    new_sig |= sample_mask;
2595
5.84k
                                    t = 0xC0u << (j * 4);
2596
5.84k
                                    mbr |= t & inv_sig;
2597
5.84k
                                }
2598
12.2k
                                cwd >>= 1;
2599
12.2k
                                ++cnt;
2600
12.2k
                            }
2601
21.2k
                        }
2602
2603
                        //signs here
2604
5.85k
                        if (new_sig & (0xFFFFu << (4 * n))) {
2605
4.59k
                            OPJ_UINT32 col_mask;
2606
4.59k
                            OPJ_INT32 j;
2607
4.59k
                            OPJ_UINT32 *dp = decoded_data + y * stride;
2608
4.59k
                            dp += i + n;
2609
4.59k
                            col_mask = 0xFu << (4 * n);
2610
2611
22.9k
                            for (j = n; j < end; ++j, ++dp, col_mask <<= 4) {
2612
18.3k
                                OPJ_UINT32 sample_mask;
2613
18.3k
                                if ((col_mask & new_sig) == 0) {
2614
3.53k
                                    continue;
2615
3.53k
                                }
2616
2617
                                //scan 4 signs
2618
14.8k
                                sample_mask = 0x11111111u & col_mask;
2619
14.8k
                                if (new_sig & sample_mask) {
2620
5.83k
                                    assert(dp[0] == 0);
2621
5.83k
                                    dp[0] |= ((cwd & 1) << 31) | val;
2622
5.83k
                                    cwd >>= 1;
2623
5.83k
                                    ++cnt;
2624
5.83k
                                }
2625
2626
14.8k
                                sample_mask += sample_mask;
2627
14.8k
                                if (new_sig & sample_mask) {
2628
6.99k
                                    assert(dp[stride] == 0);
2629
6.99k
                                    dp[stride] |= ((cwd & 1) << 31) | val;
2630
6.99k
                                    cwd >>= 1;
2631
6.99k
                                    ++cnt;
2632
6.99k
                                }
2633
2634
14.8k
                                sample_mask += sample_mask;
2635
14.8k
                                if (new_sig & sample_mask) {
2636
5.64k
                                    assert(dp[2 * stride] == 0);
2637
5.64k
                                    dp[2 * stride] |= ((cwd & 1) << 31) | val;
2638
5.64k
                                    cwd >>= 1;
2639
5.64k
                                    ++cnt;
2640
5.64k
                                }
2641
2642
14.8k
                                sample_mask += sample_mask;
2643
14.8k
                                if (new_sig & sample_mask) {
2644
5.84k
                                    assert(dp[3 * stride] == 0);
2645
5.84k
                                    dp[3 * stride] |= ((cwd & 1) << 31) | val;
2646
5.84k
                                    cwd >>= 1;
2647
5.84k
                                    ++cnt;
2648
5.84k
                                }
2649
14.8k
                            }
2650
2651
4.59k
                        }
2652
5.85k
                        frwd_advance(&sigprop, cnt);
2653
5.85k
                        cnt = 0;
2654
2655
                        //update next columns
2656
5.85k
                        if (n == 4) {
2657
                            //horizontally
2658
2.92k
                            OPJ_UINT32 t = new_sig >> 28;
2659
2.92k
                            t |= ((t & 0xE) >> 1) | ((t & 7) << 1);
2660
2.92k
                            cur_mbr[1] |= t & ~cur_sig[1];
2661
2.92k
                        }
2662
5.85k
                    }
2663
2.92k
                }
2664
                //propagate down (vertically propagation)
2665
3.39k
                new_sig |= cur_sig[0];
2666
3.39k
                ux = (new_sig & 0x88888888) >> 3;
2667
3.39k
                tx = ux | (ux << 4) | (ux >> 4);
2668
3.39k
                if (i > 0) {
2669
3.03k
                    nxt_mbr[-1] |= (ux << 28) & ~nxt_sig[-1];
2670
3.03k
                }
2671
3.39k
                nxt_mbr[0] |= tx & ~nxt_sig[0];
2672
3.39k
                nxt_mbr[1] |= (ux >> 28) & ~nxt_sig[1];
2673
3.39k
            }
2674
360
        }
2675
357
    }
2676
2677
375
    {
2678
375
        OPJ_INT32 x, y;
2679
3.71k
        for (y = 0; y < height; ++y) {
2680
3.34k
            OPJ_INT32* sp = (OPJ_INT32*)decoded_data + y * stride;
2681
220k
            for (x = 0; x < width; ++x, ++sp) {
2682
217k
                OPJ_INT32 val = (*sp & 0x7FFFFFFF);
2683
217k
                *sp = ((OPJ_UINT32) * sp & 0x80000000) ? -val : val;
2684
217k
            }
2685
3.34k
        }
2686
375
    }
2687
2688
375
    return OPJ_TRUE;
2689
387
}