Coverage Report

Created: 2026-08-08 08:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ghostpdl/jbig2dec/jbig2_generic.c
Line
Count
Source
1
/* Copyright (C) 2001-2023 Artifex Software, Inc.
2
   All Rights Reserved.
3
4
   This software is provided AS-IS with no warranty, either express or
5
   implied.
6
7
   This software is distributed under license and may not be copied,
8
   modified or distributed except as expressly authorized under the terms
9
   of the license contained in the file LICENSE in this distribution.
10
11
   Refer to licensing information at http://www.artifex.com or contact
12
   Artifex Software, Inc.,  39 Mesa Street, Suite 108A, San Francisco,
13
   CA 94129, USA, for further information.
14
*/
15
16
/*
17
    jbig2dec
18
*/
19
20
/**
21
 * Generic region handlers.
22
 **/
23
24
#ifdef HAVE_CONFIG_H
25
#include "config.h"
26
#endif
27
#include "os_types.h"
28
29
#include <stddef.h>
30
#include <string.h>             /* memcpy(), memset() */
31
32
#ifdef OUTPUT_PBM
33
#include <stdio.h>
34
#endif
35
36
#include "jbig2.h"
37
#include "jbig2_priv.h"
38
#include "jbig2_arith.h"
39
#include "jbig2_generic.h"
40
#include "jbig2_image.h"
41
#include "jbig2_mmr.h"
42
#include "jbig2_page.h"
43
#include "jbig2_segment.h"
44
45
/*
46
This is an explanation of the unoptimized and optimized generic
47
region decoder implementations below, wherein we try to explain
48
all the magic numbers.
49
50
The generic region decoders decode the output pixels one row at a
51
time, top to bottom. Within each row the pixels are decoded left
52
to right. The input for the arithmetic integer decoder used to
53
decode each pixel is a context consisting of up to 16 previously
54
decoded pixels. These pixels are chosen according to a predefined
55
template placed relative to the location of the pixel to be
56
decoded (6.2.5.3 figures 3, 4, 5 and 6). There are four different
57
template that may be used (6.2.5.3). The template to use is
58
determined by GBTEMPLATE. GBTEMPLATE is set in the symbol
59
dictionary (6.5.8.1), generic region (7.4.6.4), or when decoding
60
a halftone region's gray-scale image (annex C.5).
61
62
Most of the pixels in each template have fixed locations relative
63
to the pixel to be decoded. However, all templates have at least
64
one adaptive pixel. The adaptive pixels have nominal locations,
65
but these locations may be changed by GBAT. GBAT is set in the
66
symbol dictionary (7.4.2.1.2), generic region (7.4.6.1), or hard
67
coded as for halftone patterns (6.7.5).
68
69
Adaptive pixels are restricted to fall within a field of
70
previously decoded pixels relative to the pixel to be decoded
71
(figure 7). The relative Y-coordinate for these adaptive pixels
72
may vary between -128 and 0. The relative X-coordinate may vary
73
between -128 and +127 (however, if the Y-coordinate is 0 the
74
range of the X-coordinate is further restricted to -128 to -1
75
since the pixels at locations 0 to +127 have not yet been
76
decoded). If a template refers to a pixel location that reside
77
outside of the image boundaries its value is assumed to be 0.
78
79
UNOPTIMIZED DECODER
80
81
The unoptimized decoders first check the contents of GBAT. If
82
GBAT specifies that any of the adaptive pixels reside outside the
83
allowed field the decoding is aborted. Next, each row is
84
processed top to bottom, left to right, one pixel at a time. For
85
each pixel a context is created containing the bit values of the
86
pixels that fall inside the template.
87
88
The order these bits are stored in the context is implementation
89
dependent (6.2.5.3). We store the bit values in the CONTEXT
90
variable from LSB to MSB, starting with the value of the pixel to
91
the left of the current pixel, continuing right to left, bottom
92
to top following the template. Using the CONTEXT created from
93
these pixel values, the arithmetic integer decoder retrieves the
94
pixel value, which is then written into the output image.
95
96
Example when GBTEMPLATE is 2:
97
98
The figure below represents a pixel grid of the output image.
99
Each pixel is a single bit in the image. The pixel "OO" in the
100
figure below is about to be decoded. The pixels "??" have not
101
been decoded yet. The CONTEXT variable is constructed by
102
combining the bit values from the pixels referred to by the
103
template, shifted to their corresponding bit position.
104
105
     .    .    .    .    .    .    .    .
106
     .    .    .    .    .    .    .    .
107
  ...+----+----+----+----+----+----+----+...
108
     |    |    | X9 | X8 | X7 |    |    |
109
  ...+----+----+----+----+----+----+----+...
110
     |    | X6 | X5 | X4 | X3 | A1 |    |
111
  ...+----+----+----+----+----+----+----+...
112
     |    | X2 | X1 | OO | ?? | ?? | ?? |
113
  ...+----+----+----+----+----+----+----+...
114
     .    .    .    .    .    .    .    .
115
     .    .    .    .    .    .    .    .
116
117
In the table below pixel OO is assumed to be at coordinate (x, y).
118
119
Bit 9: Pixel at location (x-1, y-2) (This is fixed pixel X9)
120
Bit 8: Pixel at location (x  , y-2) (This is fixed pixel X8)
121
Bit 7: Pixel at location (x+1, y-2) (This is fixed pixel X7)
122
Bit 6: Pixel at location (x-2, y-1) (This is fixed pixel X6)
123
Bit 5: Pixel at location (x-1, y-1) (This is fixed pixel X5)
124
Bit 4: Pixel at location (x  , y-1) (This is fixed pixel X4)
125
Bit 3: Pixel at location (x+1, y-1) (This is fixed pixel X3)
126
Bit 2: Pixel at location (x+2, y-1) (This is adaptive pixel A1)
127
Bit 1: Pixel at location (x-2, y  ) (This is fixed pixel X2)
128
Bit 0: Pixel at location (x-1, y  ) (This is fixed pixel X1)
129
130
The location of adaptive pixel A1 may not always be at the
131
nominal location (x+2, y-1). It could be at any pixel location to
132
the left or above OO as specified by GBAT, e.g. at the location
133
(x-128, y+127).
134
135
OPTIMIZED DECODER
136
137
The optimized decoders work differently. They strive to avoid
138
recreating the arithmetic integer decoder context from scratch
139
for every pixel decoded. Instead they reuse part of the CONTEXT
140
used to compute the previous pixel (the pixel to left of the one
141
now being decoded). They also keep two sliding windows of pixel
142
bit values from the two rows of pixels immediately above the
143
pixel to be decoded. These are stored in the 32-bit variables
144
line_m1 (row above the pixel to be decoded) and line_m2 (row
145
above that of line_m1). These optimized decoders ONLY work for
146
the nominal adaptive pixel locations since these locations are
147
hard-coded into the implementation.
148
149
The bit ordering in the CONTEXT variable is identical to the
150
unoptimized case described above.
151
152
The optimized decoders decode the output pixels one row at a
153
time, top to bottom. Within each row the pixels are decoded in
154
batches of up to eight pixels at a time (except possibly the
155
right most batch which may be less than eight pixels). The
156
batches in a row are decoded in sequence from left to right.
157
Within each such batch the pixels are decoded in sequence from
158
left to right.
159
160
Before decoding the pixels in a row the two sliding windows of
161
pixel values are reset. The first eight pixels of the row above
162
the pixel to be decoded is stored in line_m1, while line_m2
163
stores the first eight pixels of the row above that of line_m1.
164
165
The figure below illustrates the situation where the template has
166
been placed so that the decoded pixel OO is the very first pixel
167
of a row. It also gives labels to various pixels that we will
168
refer to below.
169
170
             .    .    .    .    .    .    .    .    .    .    .
171
             |    .    .    .    .    .    .    .    .    .    .
172
   +    +    +----+----+----+----+----+----+----+----+----+----+...
173
          X9 | X8 | X7 | m1 | m2 | m3 | m4 | m5 | m6 | m7 |    |
174
   +    +    +----+----+----+----+----+----+----+----+----+----+...
175
     X6   X5 | X4 | X3 | A1 | n1 | n2 | n3 | n4 | n5 | n6 | n7 |
176
   +    +    +----+----+----+----+----+----+----+----+----+----+...
177
     X2   X1 | OO |    |    |    |    |    |    |    |    |    |
178
   +    +    +----+----+----+----+----+----+----+----+----+----+...
179
             |    .    .    .    .    .    .    .    .    .    .
180
             .    .    .    .    .    .    .    .    .    .    .
181
182
The pixels X1, X2, X5, X6 and X9 all reside outside the left edge
183
of the image. These pixels (like all others outside the image)
184
can according to 6.2.5.2 be assumed to be 0. line_m1 stores n5
185
through n1 as well as A1, and X3 through X6. line_m2 stores m6
186
through m1 as well as X7 through X9. The bits in line_m2 are also
187
shifted left four bits as seen below.
188
189
15 14 13 12 11 10  9  8  7  6  5  4  3  2  1  0 | bit position
190
------------------------------------------------+------------------
191
 0  0  0  0  0  0 X6 X5 X4 X3 A1 n1 n2 n3 n4 n5 | line_m1
192
 0  0  0 X9 X8 X7 m1 m2 m3 m4 m5 m6  0  0  0  0 | line_m2
193
194
The way line_m1 and line_m2 are stored means we can simply shift
195
them by the same amount to move the sliding window.
196
197
The bit order in line_m1 and line_m2 matches the ordering in the
198
CONTEXT variable. Each bit for the 'A' and 'X' pixels in line_m1
199
and line_m2 correspond to the equivalent bits in CONTEXT, only
200
shifted right by 3 bits. Thus X3 is bit 3 in CONTEXT and bit 6 in
201
line_m1, etc.
202
203
The initial arithmetic integer decoder context is created and
204
stored in the CONTEXT variable by masking, shifting, and bitwise
205
ORing the contents of line_m1 and line_m2. The "CONTEXT contents"
206
row is only shown for clarity, it is not present in the code.
207
208
15 14 13 12 11 10  9  8  7  6  5  4  3  2  1  0 | bit position
209
------------------------------------------------+---------------------------
210
 0  0  0  0  0  0  0  0  0 X6 X5 X4 X3 A1 n1 n2 | line_m1 >> 3
211
 0  0  0  0  0  0  0  0  0  1  1  1  1  1  0  0 | mask for line_m1 (0x7c)
212
 0  0  0  0  0  0  0  0  0 X6 X5 X4 X3 A1  0  0 | line_m1 AND mask
213
------------------------------------------------+---------------------------
214
 0  0  0  0  0  0 X9 X8 X7 m1 m2 m3 m4 m5 m6  0 | line_m2 >> 3
215
 0  0  0  0  0  0  1  1  1  0  0  0  0  0  0  0 | mask for line_m2 (0x380)
216
 0  0  0  0  0  0 X9 X8 X7  0  0  0  0  0  0  0 | line_m2 AND mask
217
------------------------------------------------+---------------------------
218
 0  0  0  0  0  0 X9 X8 X7 X6 X5 X4 X3 A1  0  0 | CONTEXT = line_m1 OR line_m2
219
------------------------------------------------+---------------------------
220
 0  0  0  0  0  0 X9 X8 X7 X6 X5 X4 X3 A1 X2 X1 | CONTEXT contents
221
222
Each batch is normally 8 bits, but at the right edge of the image
223
we may have fewer pixels to decode. The minor_width is how many
224
pixels the current batch should decode, with a counter variable
225
x_minor to keep track of the current pixel being decoded.
226
227
In order to process a new batch of pixels, unless we're at the
228
rightmost batch of pixels, we need to refill the sliding window
229
variables with eight new bits. Looking at the diagram above we
230
can see that in order to decode eight pixels starting with O0
231
we'll need to have bits up to pixel 'n7' for line_m1 and 'm7' for
232
line_m2 available (A1 and X7 moved right 7 times). To do this
233
simply and quickly, we shift line_m1 left by 8 bits, and OR in
234
the next byte from corresponding row. Likewise for line_m2, but
235
the next byte from the image is also shifted left by 4 bits to
236
compensate for line_m2 having the four least significant bits
237
unused.
238
239
These new eight bits contain the bit values of the eight pixels
240
to the right of those already present in line_m1 and line_m2. We
241
call these new bits m7 through mE, and n6 through nD, as
242
illustrated below.
243
244
23 22 21 20 19 18 17 16 15 14 13 12 11 10  9  8  7  6  5  4  3  2  1  0 | bit position
245
------------------------------------------------------------------------+-------------
246
 0  0  0  0  0  0  0  0  0  0  0  0  0  0 X6 X5 X4 X3 A1 n1 n2 n3 n4 n5 | original line_m1
247
 0  0  0  0  0  0 X6 X5 X4 X3 A1 n1 n2 n3 n4 n5  0  0  0  0  0  0  0  0 | line_m1 shifted left by 8
248
 0  0  0  0  0  0 X6 X5 X4 X3 A1 n1 n2 n3 n4 n5 n6 n7 n8 n9 nA nB nC nD | line_m1 with new bits ORed in
249
------------------------------------------------------------------------+-------------
250
 0  0  0  0  0  0  0  0  0  0  0 X9 X8 X7 m1 m2 m3 m4 m5 m6  0  0  0  0 | original line_m2
251
 0  0  0 X9 X8 X7 m1 m2 m3 m4 m5 m6  0  0  0  0  0  0  0  0  0  0  0  0 | line_m2 shifted left by 8
252
 0  0  0 X9 X8 X7 m1 m2 m3 m4 m5 m6 m7 m8 m9 mA mB mC mD mE  0  0  0  0 | line_m2 with new bits ORed in
253
254
             .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .
255
             |    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .
256
   +    +    +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+...
257
          X9 | X8 | X7 | m1 | m2 | m3 | m4 | m5 | m6 | m7 | m8 | m9 | mA | mB | mC | mD | mE |    |    |    |
258
   +    +    +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+...
259
     X6   X5 | X4 | X3 | A1 | n1 | n2 | n3 | n4 | n5 | n6 | n7 | n8 | n9 | nA | nB | nC | nD |    |    |    |
260
   +    +    +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+...
261
     X2   X1 | OO |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |
262
   +    +    +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+...
263
             |    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .
264
             .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .
265
266
CONTEXT, line_m1 and line_m2 now contain all necessary bits to
267
decode a full batch of eight pixels.
268
269
The first pixel in the batch is decoded using this CONTEXT. After
270
that, for each following pixel we need to update the CONTEXT
271
using both the last decoded pixel value and new bits from line_m1
272
and line_m2.
273
274
             .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .
275
             |    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .
276
   +    +    +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+...
277
         (X9)|_X8_|_X7_|>m1<| m2 | m3 | m4 | m5 | m6 | m7 | m8 | m9 | mA | mB | mC | mD | mE |    |    |    |
278
   +    +    +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+...
279
    (X6) _X5_|_X4_|_X3_|_A1_|>n1<| n2 | n3 | n4 | n5 | n6 | n7 | n8 | n9 | nA | nB | nC | nD |    |    |    |
280
   +    +    +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+...
281
    (X2) _X1_|>OO<| oo |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |    |
282
   +    +    +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+...
283
             |    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .
284
             .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .    .
285
286
This figure illustrates what happens when the same template is
287
overlaid on itself shifted one pixel to the right in order to
288
decode the next pixel. Pixels marked with _  _ are pixels that
289
are present in both templates' CONTEXTs and can be reused. Pixels
290
marked with (  ) are pixels from the first template that are no
291
longer necessary and can be removed from CONTEXT. Pixels marked
292
with >  < are new pixels that were not part of the original
293
CONTEXT, and so need to be moved into the CONTEXT at the
294
appropriate locations. In general the leftmost pixels of each
295
template row can be forgotten, while new pixels are needed at the
296
right most location of each row.
297
298
The CONTEXT corresponding to the current pixel OO and how it is
299
masked is shown below. Note how the left most pixel of each row
300
of the template is NOT propagated to the CONTEXT, these pixels
301
are X2, X6 and X9. This is done by having the mask being 0 at the
302
corresponding locations.
303
304
 9  8  7  6  5  4  3  2  1  0 | bit position
305
------------------------------+-------------
306
X9 X8 X7 X6 X5 X4 X3 A1 X2 X1 | pixel values from CONTEXT
307
 0  1  1  0  1  1  1  1  0  1 | reused pixel bit value mask (0x1bd)
308
 0 X8 X7  0 X5 X4 X3 A1  0 X1 | reused pixel values from CONTEXT
309
310
Next the CONTEXT is shifted left by one bit to make it reference
311
the next pixel to be decoded. The pixel bit value we just decoded
312
is then written into the bit corresponding to X1. The sliding
313
windows in line_m1 and line_m2 are both shifted (10 - x_minor)
314
bits to the right to make the needed pixels' bit values appear at
315
the correct positions to be ORed into CONTEXT. Note that this
316
shift amount depends on which bit in the batch is currently being
317
computed, as is given by the x_minor counter. In the example
318
below we assume that x_minor is 0.
319
320
 9  8  7  6  5  4  3  2  1  0 | bit position
321
------------------------------+--------------
322
 0 X8 X7  0 X5 X4 X3 A1  0  0 | reused pixels from CONTEXT
323
X8 X7  0 X5 X4 X3 A1  0  0  0 | reused pixels shifted left 1 bit
324
------------------------------+--------------
325
X8 X7  0 X5 X4 X3 A1  0 X1 OO | new CONTEXT with current pixel at LSB
326
------------------------------+--------------
327
 0  0 X6 X5 X4 X3 A1 n1 n2 n3 | line_m1 shifted (10 - x_minor) bits to the right
328
 0  0  0  0  0  0  0  1  0  0 | mask for new adaptive pixel one row above (0x4)
329
X8 X7  0 X5 X4 X3 A1 n1 X1 OO | new CONTEXT with new adaptive pixel
330
------------------------------+--------------
331
X8 X7 m1 m2 m3 m4 m5 m6 m7 m8 | line_m2 with new bits ORed in
332
 0  0  1  0  0  0  0  0  0  0 | mask for new pixel two rows above (0x80)
333
X8 X7 m1 X5 X4 X3 A1 n1 X1 OO | new CONTEXT with new pixel
334
335
This makes the computation of the new CONTEXT be:
336
337
NEWCONTEXT = (CONTEXT & 0x1bd) << 1
338
NEWCONTEXT |= newbit;
339
NEWCONTEXT |= (line_m1 >> (10-x_minor)) & 0x4;
340
NEWCONTEXT |= (line_m2 >> (10-x_minor)) & 0x80;
341
342
The optimized decoding functions for GBTEMPLATE 0, 1 and 3 all
343
work similarly. */
344
345
/* Get a bit. No bounds checking. */
346
static inline int
347
jbig2_image_get_pixel_fast(Jbig2Image *image, int64_t x, int64_t y)
348
294k
{
349
294k
    size_t sx = (size_t) x;
350
294k
    size_t sy = (size_t) y;
351
294k
    size_t byte = (sx >> 3) + sy * image->stride;
352
294k
    int bit = 7 - ((int) (sx & 7));
353
354
294k
    return ((image->data[byte] >> bit) & 1);
355
294k
}
356
357
/* return the appropriate context size for the given template */
358
int
359
jbig2_generic_stats_size(Jbig2Ctx *ctx, int template)
360
371
{
361
371
    int stats_size = template == 0 ? 1 << 16 : template == 1 ? 1 << 13 : 1 << 10;
362
363
371
    (void) ctx;
364
365
371
    return stats_size;
366
371
}
367
368
static int
369
jbig2_decode_generic_template0(Jbig2Ctx *ctx,
370
                               Jbig2Segment *segment,
371
                               const Jbig2GenericRegionParams *params, Jbig2ArithState *as,
372
                               Jbig2Image *image, Jbig2ArithCx *GB_stats)
373
558
{
374
558
    const int64_t GBW = image->width;
375
558
    const int64_t GBH = image->height;
376
558
    const uint32_t rowstride = image->stride;
377
558
    int64_t x, y;
378
558
    byte *line2 = NULL;
379
558
    byte *line1 = NULL;
380
558
    byte *gbreg_line = (byte *) image->data;
381
382
558
    (void) ctx;
383
558
    (void) params;
384
385
#ifdef OUTPUT_PBM
386
    printf("P4\n%u %u\n",
387
        (uint32_t) GBW,
388
        (uint32_t) GBH);
389
#endif
390
391
558
    if (GBW <= 0)
392
0
        return 0;
393
394
676k
    for (y = 0; y < GBH; y++) {
395
675k
        uint32_t CONTEXT;
396
675k
        uint32_t line_m1;
397
675k
        uint32_t line_m2;
398
675k
        int64_t padded_width = (GBW + 7) & -8;
399
400
675k
        line_m1 = line1 ? line1[0] : 0;
401
675k
        line_m2 = line2 ? line2[0] << 6 : 0;
402
675k
        CONTEXT = (line_m1 & 0x7f0) | (line_m2 & 0xf800);
403
404
        /* 6.2.5.7 3d */
405
202M
        for (x = 0; x < padded_width; x += 8) {
406
201M
            byte result = 0;
407
201M
            int64_t x_minor;
408
201M
            int64_t minor_width = GBW - x > 8 ? 8 : GBW - x;
409
410
201M
            if (line1)
411
201M
                line_m1 = (line_m1 << 8) | (x + 8 < GBW ? line1[(x >> 3) + 1] : 0);
412
413
201M
            if (line2)
414
201M
                line_m2 = (line_m2 << 8) | (x + 8 < GBW ? line2[(x >> 3) + 1] << 6 : 0);
415
416
            /* This is the speed-critical inner loop. */
417
1.81G
            for (x_minor = 0; x_minor < minor_width; x_minor++) {
418
1.61G
                int bit;
419
420
1.61G
                bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
421
1.61G
                if (bit < 0)
422
0
                    return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template0 optimized");
423
1.61G
                result |= bit << (7 - x_minor);
424
1.61G
                CONTEXT = ((CONTEXT & 0x7bf7) << 1) | bit | ((line_m1 >> (7 - x_minor)) & 0x10) | ((line_m2 >> (7 - x_minor)) & 0x800);
425
1.61G
            }
426
201M
            gbreg_line[x >> 3] = result;
427
201M
        }
428
#ifdef OUTPUT_PBM
429
        fwrite(gbreg_line, 1, rowstride, stdout);
430
#endif
431
675k
        line2 = line1;
432
675k
        line1 = gbreg_line;
433
675k
        gbreg_line += rowstride;
434
675k
    }
435
436
558
    return 0;
437
558
}
438
439
#define pixel_outside_field(x, y) \
440
786
    ((y) < -128 || (y) > 0 || (x) < -128 || ((y) < 0 && (x) > 127) || ((y) == 0 && (x) >= 0))
441
442
static int
443
jbig2_decode_generic_template0_unopt(Jbig2Ctx *ctx,
444
                                     Jbig2Segment *segment,
445
                                     const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
446
86
{
447
86
    const int64_t GBW = image->width;
448
86
    const int64_t GBH = image->height;
449
86
    uint32_t CONTEXT;
450
86
    int64_t x, y;
451
86
    int bit;
452
453
86
    if (pixel_outside_field(params->gbat[0], params->gbat[1]) ||
454
84
        pixel_outside_field(params->gbat[2], params->gbat[3]) ||
455
84
        pixel_outside_field(params->gbat[4], params->gbat[5]) ||
456
84
        pixel_outside_field(params->gbat[6], params->gbat[7]))
457
2
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number,
458
2
                           "adaptive template pixel is out of field");
459
460
3.87k
    for (y = 0; y < GBH; y++) {
461
3.79k
        uint32_t out_byte = 0;
462
3.79k
        int out_bits_to_go_in_byte = 8;
463
3.79k
        uint8_t *d = &image->data[image->stride * y];
464
3.79k
        uint32_t pd = 0;
465
3.79k
        uint32_t ppd = 0;
466
3.79k
        uint8_t *pline = NULL;
467
3.79k
        uint8_t *ppline = NULL;
468
3.79k
        if (y >= 1)
469
3.71k
        {
470
3.71k
            pline  = &image->data[image->stride * (y-1)];
471
3.71k
            pd = (*pline++ << 8);
472
3.71k
            if (GBW > 8)
473
3.71k
                pd |= *pline++;
474
3.71k
        }
475
3.79k
        if (y >= 2) {
476
3.62k
            ppline = &image->data[image->stride * (y-2)];
477
3.62k
            ppd = (*ppline++ << 8);
478
3.62k
            if (GBW > 8)
479
3.62k
                ppd |= *ppline++;
480
3.62k
        }
481
3.30M
        for (x = 0; x < GBW; x++) {
482
3.29M
            if (params->USESKIP && jbig2_image_get_pixel(params->SKIP, x, y)) {
483
0
                bit = 0;
484
3.29M
            } else {
485
3.29M
                CONTEXT  = out_byte & 0x000F; /* First 4 pixels */
486
3.29M
                CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[0], y + params->gbat[1]) << 4;
487
3.29M
                CONTEXT |= (pd>>8) & 0x03E0; /* Next 5 pixels */
488
3.29M
                CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[2], y + params->gbat[3]) << 10;
489
3.29M
                CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[4], y + params->gbat[5]) << 11;
490
3.29M
                CONTEXT |= (ppd>>2) & 0x7000; /* Next 3 pixels */
491
3.29M
                CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[6], y + params->gbat[7]) << 15;
492
3.29M
                bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
493
3.29M
                if (bit < 0)
494
0
                    return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template0 unoptimized");
495
3.29M
            }
496
3.29M
            pd = pd<<1;
497
3.29M
            ppd = ppd<<1;
498
3.29M
            out_byte = (out_byte<<1) | bit;
499
3.29M
            out_bits_to_go_in_byte--;
500
3.29M
            *d = out_byte<<out_bits_to_go_in_byte;
501
3.29M
            if (out_bits_to_go_in_byte == 0) {
502
410k
                out_bits_to_go_in_byte = 8;
503
410k
                d++;
504
410k
                if (x+9 < GBW && pline != NULL) {
505
389k
                    pd |= *pline++;
506
389k
                    if (ppline != NULL)
507
373k
                        ppd |= *ppline++;
508
389k
                }
509
410k
            }
510
3.29M
        }
511
3.79k
        if (out_bits_to_go_in_byte != 8)
512
2.16k
            *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
513
3.79k
    }
514
84
    return 0;
515
84
}
516
517
static int
518
jbig2_decode_generic_template1_unopt(Jbig2Ctx *ctx,
519
                                     Jbig2Segment *segment,
520
                                     const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
521
138
{
522
138
    const int64_t GBW = image->width;
523
138
    const int64_t GBH = image->height;
524
138
    uint32_t CONTEXT;
525
138
    int64_t x, y;
526
138
    int bit;
527
528
138
    if (pixel_outside_field(params->gbat[0], params->gbat[1]))
529
0
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number,
530
0
                           "adaptive template pixel is out of field");
531
532
71.4k
    for (y = 0; y < GBH; y++) {
533
71.3k
        uint32_t out_byte = 0;
534
71.3k
        int out_bits_to_go_in_byte = 8;
535
71.3k
        uint8_t *d = &image->data[image->stride * y];
536
71.3k
        uint32_t pd = 0;
537
71.3k
        uint32_t ppd = 0;
538
71.3k
        uint8_t *pline = NULL;
539
71.3k
        uint8_t *ppline = NULL;
540
71.3k
        if (y >= 1) {
541
71.2k
            pline  = &image->data[image->stride * (y-1)];
542
71.2k
            pd = (*pline++ << 8);
543
71.2k
            if (GBW > 8)
544
71.2k
                pd |= *pline++;
545
71.2k
        }
546
71.3k
        if (y >= 2) {
547
71.0k
            ppline = &image->data[image->stride * (y-2)];
548
71.0k
            ppd = (*ppline++ << 8);
549
71.0k
            if (GBW > 8)
550
71.0k
                ppd |= *ppline++;
551
71.0k
        }
552
23.4M
        for (x = 0; x < GBW; x++) {
553
23.3M
            if (params->USESKIP && jbig2_image_get_pixel(params->SKIP, x, y)) {
554
23.1M
                bit = 0;
555
23.1M
            } else {
556
279k
                CONTEXT  = out_byte & 0x0007; /* First 3 pixels */
557
279k
                CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[0], y + params->gbat[1]) << 3;
558
279k
                CONTEXT |= (pd>>9) & 0x01F0; /* Next 5 pixels */
559
279k
                CONTEXT |= (ppd>>4) & 0x1E00; /* Next 4 pixels */
560
279k
                bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
561
279k
                if (bit < 0)
562
0
                    return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template1 unoptimized");
563
279k
            }
564
23.3M
            pd = pd<<1;
565
23.3M
            ppd = ppd<<1;
566
23.3M
            out_byte = (out_byte<<1) | bit;
567
23.3M
            out_bits_to_go_in_byte--;
568
23.3M
            *d = out_byte<<out_bits_to_go_in_byte;
569
23.3M
            if (out_bits_to_go_in_byte == 0) {
570
2.89M
                out_bits_to_go_in_byte = 8;
571
2.89M
                d++;
572
2.89M
                if (x+9 < GBW && pline != NULL) {
573
2.76M
                    pd |= *pline++;
574
2.76M
                    if (ppline != NULL)
575
2.70M
                        ppd |= *ppline++;
576
2.76M
                }
577
2.89M
            }
578
23.3M
        }
579
71.3k
        if (out_bits_to_go_in_byte != 8)
580
71.3k
            *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
581
71.3k
    }
582
138
    return 0;
583
138
}
584
585
static int
586
jbig2_decode_generic_template1(Jbig2Ctx *ctx,
587
                               Jbig2Segment *segment,
588
                               const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
589
16
{
590
16
    const int64_t GBW = image->width;
591
16
    const int64_t GBH = image->height;
592
16
    const uint32_t rowstride = image->stride;
593
16
    int64_t x, y;
594
16
    byte *line2 = NULL;
595
16
    byte *line1 = NULL;
596
16
    byte *gbreg_line = (byte *) image->data;
597
598
16
    (void) params;
599
600
#ifdef OUTPUT_PBM
601
    printf("P4\n%u %u\n",
602
        (uint32_t) GBW,
603
        (uint32_t) GBH);
604
#endif
605
606
16
    if (GBW <= 0)
607
0
        return 0;
608
609
919
    for (y = 0; y < GBH; y++) {
610
903
        uint32_t CONTEXT;
611
903
        uint32_t line_m1;
612
903
        uint32_t line_m2;
613
903
        int64_t padded_width = (GBW + 7) & -8;
614
615
903
        line_m1 = line1 ? line1[0] : 0;
616
903
        line_m2 = line2 ? line2[0] << 5 : 0;
617
903
        CONTEXT = ((line_m1 >> 1) & 0x1f8) | ((line_m2 >> 1) & 0x1e00);
618
619
        /* 6.2.5.7 3d */
620
23.5k
        for (x = 0; x < padded_width; x += 8) {
621
22.6k
            byte result = 0;
622
22.6k
            int64_t x_minor;
623
22.6k
            int64_t minor_width = GBW - x > 8 ? 8 : GBW - x;
624
625
22.6k
            if (line1)
626
22.5k
                line_m1 = (line_m1 << 8) | (x + 8 < GBW ? line1[(x >> 3) + 1] : 0);
627
628
22.6k
            if (line2)
629
22.4k
                line_m2 = (line_m2 << 8) | (x + 8 < GBW ? line2[(x >> 3) + 1] << 5 : 0);
630
631
            /* This is the speed-critical inner loop. */
632
200k
            for (x_minor = 0; x_minor < minor_width; x_minor++) {
633
178k
                int bit;
634
635
178k
                bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
636
178k
                if (bit < 0)
637
0
                    return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template1 optimized");
638
178k
                result |= bit << (7 - x_minor);
639
178k
                CONTEXT = ((CONTEXT & 0xefb) << 1) | bit | ((line_m1 >> (8 - x_minor)) & 0x8) | ((line_m2 >> (8 - x_minor)) & 0x200);
640
178k
            }
641
22.6k
            gbreg_line[x >> 3] = result;
642
22.6k
        }
643
#ifdef OUTPUT_PBM
644
        fwrite(gbreg_line, 1, rowstride, stdout);
645
#endif
646
903
        line2 = line1;
647
903
        line1 = gbreg_line;
648
903
        gbreg_line += rowstride;
649
903
    }
650
651
16
    return 0;
652
16
}
653
654
static int
655
jbig2_decode_generic_template2_unopt(Jbig2Ctx *ctx,
656
                               Jbig2Segment *segment,
657
                               const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
658
12
{
659
12
    const int64_t GBW = image->width;
660
12
    const int64_t GBH = image->height;
661
12
    uint32_t CONTEXT;
662
12
    int64_t x, y;
663
12
    int bit;
664
665
12
    if (pixel_outside_field(params->gbat[0], params->gbat[1]))
666
0
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number,
667
0
                           "adaptive template pixel is out of field");
668
669
788
    for (y = 0; y < GBH; y++) {
670
776
        uint32_t out_byte = 0;
671
776
        int out_bits_to_go_in_byte = 8;
672
776
        uint8_t *d = &image->data[image->stride * y];
673
776
        uint8_t *pline  = &image->data[image->stride * (y-1)];
674
776
        uint8_t *ppline = &image->data[image->stride * (y-2)];
675
776
        uint32_t pd = 0;
676
776
        uint32_t ppd = 0;
677
776
        if (y > 0) {
678
764
            pd = (*pline++ << 8);
679
764
            if (GBW > 8)
680
764
                pd |= *pline++;
681
764
            if (y > 1) {
682
752
                ppd = (*ppline++ << 8);
683
752
                if (GBW > 8)
684
752
                    ppd |= *ppline++;
685
752
            }
686
764
        }
687
600k
        for (x = 0; x < GBW; x++) {
688
599k
            if (params->USESKIP && jbig2_image_get_pixel(params->SKIP, x, y)) {
689
5.56k
                bit = 0;
690
593k
            } else {
691
593k
                CONTEXT  = out_byte & 0x003; /* First 2 pixels */
692
593k
                CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[0], y + params->gbat[1]) << 2;
693
593k
                CONTEXT |= (pd>>11) & 0x078; /* Next 4 pixels */
694
593k
                CONTEXT |= (ppd>>7) & 0x380; /* Next 3 pixels */
695
593k
                bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
696
593k
                if (bit < 0)
697
0
                    return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template2 unoptimized");
698
593k
            }
699
599k
            pd = pd<<1;
700
599k
            ppd = ppd<<1;
701
599k
            out_byte = (out_byte<<1) | bit;
702
599k
            out_bits_to_go_in_byte--;
703
599k
            *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
704
599k
            if (out_bits_to_go_in_byte == 0) {
705
74.4k
                out_bits_to_go_in_byte = 8;
706
74.4k
                d++;
707
74.4k
                if (x+9 < GBW && y > 0) {
708
70.2k
                    pd |= *pline++;
709
70.2k
                    if (y > 1)
710
66.8k
                        ppd |= *ppline++;
711
70.2k
                }
712
74.4k
            }
713
599k
        }
714
776
        if (out_bits_to_go_in_byte != 8)
715
728
            *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
716
776
    }
717
718
12
    return 0;
719
12
}
720
721
static int
722
jbig2_decode_generic_template2(Jbig2Ctx *ctx,
723
                                Jbig2Segment *segment,
724
                                const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
725
337
{
726
337
    const int64_t GBW = image->width;
727
337
    const int64_t GBH = image->height;
728
337
    const uint32_t rowstride = image->stride;
729
337
    int64_t x, y;
730
337
    byte *line2 = NULL;
731
337
    byte *line1 = NULL;
732
337
    byte *gbreg_line = (byte *) image->data;
733
734
337
    (void) params;
735
736
#ifdef OUTPUT_PBM
737
    printf("P4\n%u %u\n",
738
        (uint32_t) GBW,
739
        (uint32_t) GBH);
740
#endif
741
742
337
    if (GBW <= 0)
743
0
        return 0;
744
745
5.51k
    for (y = 0; y < GBH; y++) {
746
5.18k
        uint32_t CONTEXT;
747
5.18k
        uint32_t line_m1;
748
5.18k
        uint32_t line_m2;
749
5.18k
        int64_t padded_width = (GBW + 7) & -8;
750
751
5.18k
        line_m1 = line1 ? line1[0] : 0;
752
5.18k
        line_m2 = line2 ? line2[0] << 4 : 0;
753
5.18k
        CONTEXT = ((line_m1 >> 3) & 0x7c) | ((line_m2 >> 3) & 0x380);
754
755
        /* 6.2.5.7 3d */
756
38.2k
        for (x = 0; x < padded_width; x += 8) {
757
33.0k
            byte result = 0;
758
33.0k
            int64_t x_minor;
759
33.0k
            int64_t minor_width = GBW - x > 8 ? 8 : GBW - x;
760
761
33.0k
            if (line1)
762
32.1k
                line_m1 = (line_m1 << 8) | (x + 8 < GBW ? line1[(x >> 3) + 1] : 0);
763
764
33.0k
            if (line2)
765
31.1k
                line_m2 = (line_m2 << 8) | (x + 8 < GBW ? line2[(x >> 3) + 1] << 4 : 0);
766
767
            /* This is the speed-critical inner loop. */
768
274k
            for (x_minor = 0; x_minor < minor_width; x_minor++) {
769
241k
                int bit;
770
771
241k
                bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
772
241k
                if (bit < 0)
773
0
                    return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template2 optimized");
774
241k
                result |= bit << (7 - x_minor);
775
241k
                CONTEXT = ((CONTEXT & 0x1bd) << 1) | bit | ((line_m1 >> (10 - x_minor)) & 0x4) | ((line_m2 >> (10 - x_minor)) & 0x80);
776
241k
            }
777
33.0k
            gbreg_line[x >> 3] = result;
778
33.0k
        }
779
#ifdef OUTPUT_PBM
780
        fwrite(gbreg_line, 1, rowstride, stdout);
781
#endif
782
5.18k
        line2 = line1;
783
5.18k
        line1 = gbreg_line;
784
5.18k
        gbreg_line += rowstride;
785
5.18k
    }
786
787
337
    return 0;
788
337
}
789
790
static int
791
jbig2_decode_generic_template3(Jbig2Ctx *ctx,
792
                               Jbig2Segment *segment,
793
                               const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
794
23
{
795
23
    const int64_t GBW = image->width;
796
23
    const int64_t GBH = image->height;
797
23
    const uint32_t rowstride = image->stride;
798
23
    byte *line1 = NULL;
799
23
    byte *gbreg_line = (byte *) image->data;
800
23
    int64_t x, y;
801
802
23
    (void) params;
803
804
#ifdef OUTPUT_PBM
805
    printf("P4\n%u %u\n",
806
        (uint32_t) GBW,
807
        (uint32_t) GBH);
808
#endif
809
810
23
    if (GBW <= 0)
811
0
        return 0;
812
813
1.10k
    for (y = 0; y < GBH; y++) {
814
1.07k
        uint32_t CONTEXT;
815
1.07k
        uint32_t line_m1;
816
1.07k
        int64_t padded_width = (GBW + 7) & -8;
817
818
1.07k
        line_m1 = line1 ? line1[0] : 0;
819
1.07k
        CONTEXT = (line_m1 >> 1) & 0x3f0;
820
821
        /* 6.2.5.7 3d */
822
26.5k
        for (x = 0; x < padded_width; x += 8) {
823
25.4k
            byte result = 0;
824
25.4k
            int64_t x_minor;
825
25.4k
            int64_t minor_width = GBW - x > 8 ? 8 : GBW - x;
826
827
25.4k
            if (line1)
828
25.2k
                line_m1 = (line_m1 << 8) | (x + 8 < GBW ? line1[(x >> 3) + 1] : 0);
829
830
            /* This is the speed-critical inner loop. */
831
224k
            for (x_minor = 0; x_minor < minor_width; x_minor++) {
832
199k
                int bit;
833
834
199k
                bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
835
199k
                if (bit < 0)
836
0
                    return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template3 optimized");
837
199k
                result |= bit << (7 - x_minor);
838
199k
                CONTEXT = ((CONTEXT & 0x1f7) << 1) | bit | ((line_m1 >> (8 - x_minor)) & 0x10);
839
199k
            }
840
25.4k
            gbreg_line[x >> 3] = result;
841
25.4k
        }
842
#ifdef OUTPUT_PBM
843
        fwrite(gbreg_line, 1, rowstride, stdout);
844
#endif
845
1.07k
        line1 = gbreg_line;
846
1.07k
        gbreg_line += rowstride;
847
1.07k
    }
848
849
23
    return 0;
850
23
}
851
852
static int
853
jbig2_decode_generic_template3_unopt(Jbig2Ctx *ctx,
854
                                     Jbig2Segment *segment,
855
                                     const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
856
13
{
857
13
    const int64_t GBW = image->width;
858
13
    const int64_t GBH = image->height;
859
13
    uint32_t CONTEXT;
860
13
    int64_t x, y;
861
13
    int bit;
862
863
13
    if (pixel_outside_field(params->gbat[0], params->gbat[1]))
864
0
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number,
865
0
                           "adaptive template pixel is out of field");
866
867
892
    for (y = 0; y < GBH; y++) {
868
879
        uint32_t out_byte = 0;
869
879
        int out_bits_to_go_in_byte = 8;
870
879
        uint8_t *d = &image->data[image->stride * y];
871
879
        uint8_t *pline  = &image->data[image->stride * (y-1)];
872
879
        uint32_t pd = 0;
873
879
        if (y > 0) {
874
866
            pd = (*pline++ << 8);
875
866
            if (GBW > 8)
876
866
                pd |= *pline++;
877
866
        }
878
1.71M
        for (x = 0; x < GBW; x++) {
879
1.71M
            if (params->USESKIP && jbig2_image_get_pixel(params->SKIP, x, y)) {
880
5.56k
                bit = 0;
881
1.70M
            } else {
882
1.70M
                CONTEXT  = out_byte & 0x00F; /* First 4 pixels */
883
1.70M
                CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[0], y + params->gbat[1]) << 4;
884
1.70M
                CONTEXT |= (pd>>9) & 0x3E0; /* Next 5 pixels */
885
1.70M
                bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
886
1.70M
                if (bit < 0)
887
0
                    return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template3 unoptimized");
888
1.70M
            }
889
1.71M
            pd = pd<<1;
890
1.71M
            out_byte = (out_byte<<1) | bit;
891
1.71M
            out_bits_to_go_in_byte--;
892
1.71M
            *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
893
1.71M
            if (out_bits_to_go_in_byte == 0) {
894
213k
                out_bits_to_go_in_byte = 8;
895
213k
                d++;
896
213k
                if (x+9 < GBW && y > 0)
897
209k
                    pd |= *pline++;
898
213k
            }
899
1.71M
        }
900
879
        if (out_bits_to_go_in_byte != 8)
901
831
            *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
902
879
    }
903
13
    return 0;
904
13
}
905
906
static void
907
copy_prev_row(Jbig2Image *image, int64_t row)
908
1.03k
{
909
1.03k
    if (!row) {
910
        /* no previous row */
911
5
        memset(image->data, 0, image->stride);
912
1.03k
    } else {
913
        /* duplicate data from the previous row */
914
1.03k
        uint8_t *src = image->data + (row - 1) * image->stride;
915
916
1.03k
        memcpy(src + image->stride, src, image->stride);
917
1.03k
    }
918
1.03k
}
919
920
static int
921
jbig2_decode_generic_template0_TPGDON(Jbig2Ctx *ctx,
922
                                      Jbig2Segment *segment,
923
                                      const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
924
3
{
925
3
    const int64_t GBW = image->width;
926
3
    const int64_t GBH = image->height;
927
3
    uint32_t CONTEXT;
928
3
    int64_t x, y;
929
3
    int LTP = 0;
930
3
    int gmin, gmax;
931
3
    int64_t left, right, top;
932
933
3
    if (pixel_outside_field(params->gbat[0], params->gbat[1]) ||
934
3
        pixel_outside_field(params->gbat[2], params->gbat[3]) ||
935
3
        pixel_outside_field(params->gbat[4], params->gbat[5]) ||
936
3
        pixel_outside_field(params->gbat[6], params->gbat[7]))
937
0
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number,
938
0
                           "adaptive template pixel is out of field");
939
940
    /* JBig2 has 'standard' values for gbat (see 6.2.5.4 of the spec).
941
     * Have an optimised version for those locations. This greatly
942
     * simplifies some of the fetches. It's almost like they thought
943
     * it through. */
944
3
    if (params->gbat[0] ==  3 && params->gbat[1] == -1 &&
945
2
        params->gbat[2] == -3 && params->gbat[3] == -1 &&
946
2
        params->gbat[4] ==  2 && params->gbat[5] == -2 &&
947
2
        params->gbat[6] == -2 && params->gbat[7] == -2)
948
2
    {
949
732
        for (y = 0; y < GBH; y++) {
950
730
            int bit = jbig2_arith_decode(ctx, as, &GB_stats[0x9B25]);
951
730
            if (bit < 0)
952
0
                return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template0 TPGDON1");
953
730
            LTP ^= bit;
954
730
            if (!LTP) {
955
523
                uint32_t out_byte = 0;
956
523
                int out_bits_to_go_in_byte = 8;
957
523
                uint8_t *d = &image->data[image->stride * y];
958
523
                uint8_t *pline  = y > 0 ? &image->data[image->stride * (y-1)] : NULL;
959
523
                uint8_t *ppline = y > 1 ? &image->data[image->stride * (y-2)] : NULL;
960
523
                uint32_t pd = 0;
961
523
                uint32_t ppd = 0;
962
523
                if (y > 0 && pline) {
963
522
                    pd = (*pline++ << 8);
964
522
                    if (GBW > 8)
965
522
                        pd |= *pline++;
966
522
                    if (y > 1 && ppline) {
967
521
                        ppd = (*ppline++ << 8);
968
521
                        if (GBW > 8)
969
521
                            ppd |= *ppline++;
970
521
                    }
971
522
                }
972
156k
                for (x = 0; x < GBW; x++) {
973
156k
                    if (params->USESKIP && jbig2_image_get_pixel(params->SKIP, x, y)) {
974
0
                        bit = 0;
975
156k
                    } else {
976
156k
                        CONTEXT  = out_byte & 0x00F; /* First 4 pixels */
977
156k
                        CONTEXT |= (pd>>8) & 0x7F0; /* Next 7 pixels */
978
156k
                        CONTEXT |= (ppd>>2) & 0xF800; /* Final 5 pixels */
979
156k
                        bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
980
156k
                        if (bit < 0)
981
0
                            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template0 TPGDON2");
982
156k
                    }
983
156k
                    pd = pd<<1;
984
156k
                    ppd = ppd<<1;
985
156k
                    out_byte = (out_byte<<1) | bit;
986
156k
                    out_bits_to_go_in_byte--;
987
156k
                    if (out_bits_to_go_in_byte == 0) {
988
19.3k
                        out_bits_to_go_in_byte = 8;
989
19.3k
                        *d++ = (uint8_t)out_byte;
990
19.3k
                        if (x+9 < GBW && y > 0 && pline) {
991
18.4k
                            pd |= *pline++;
992
18.4k
                            if (y > 1 && ppline)
993
18.4k
                                ppd |= *ppline++;
994
18.4k
                        }
995
19.3k
                    }
996
156k
                }
997
523
                if (out_bits_to_go_in_byte != 8)
998
193
                    *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
999
523
            } else {
1000
207
                copy_prev_row(image, y);
1001
207
            }
1002
730
        }
1003
2
        return 0;
1004
2
    }
1005
1006
    /* We divide the width into 3 regions 0..left...right...GBW,
1007
     * between left and right, we know that our accesses will never
1008
     * step outside the image, enabling us to use faster accessors. */
1009
1
    left = 4;
1010
1
    right = 2;
1011
1
    gmin = gmax = params->gbat[0];
1012
1
    if (params->gbat[2] < gmin)
1013
0
        gmin = params->gbat[2];
1014
1
    if (gmax < params->gbat[2])
1015
1
        gmax = params->gbat[2];
1016
1
    if (params->gbat[4] < gmin)
1017
1
        gmin = params->gbat[4];
1018
1
    if (gmax < params->gbat[4])
1019
0
        gmax = params->gbat[4];
1020
1
    if (params->gbat[6] < gmin)
1021
0
        gmin = params->gbat[6];
1022
1
    if (gmax < params->gbat[6])
1023
1
        gmax = params->gbat[6];
1024
1
    if (left < -((int64_t) gmin))
1025
1
        left = -((int64_t) gmin);
1026
1
    if (right < gmax)
1027
1
        right = gmax;
1028
1
    if (right > GBW)
1029
0
        right = GBW;
1030
1
    right = GBW - right;
1031
    /* So 0 <= x < left or right <= x < GBW needs bounds checking. */
1032
1033
    /* Now we do the same for the height, but here there is no bottom
1034
     * region, as we only ever look up for y. */
1035
1
    top = 2;
1036
1
    gmin = params->gbat[1];
1037
1
    if (params->gbat[3] < gmin)
1038
1
        gmin = params->gbat[3];
1039
1
    if (params->gbat[5] < gmin)
1040
1
        gmin = params->gbat[5];
1041
1
    if (params->gbat[7] < gmin)
1042
1
        gmin = params->gbat[7];
1043
1
    if (top < -((int64_t) gmin))
1044
1
        top = -((int64_t) gmin);
1045
    /* So 0 <= y < top needs bounds checking. */
1046
1047
401
    for (y = 0; y < GBH; y++) {
1048
400
        int bit = jbig2_arith_decode(ctx, as, &GB_stats[0x9B25]);
1049
400
        if (bit < 0)
1050
0
            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template0 TPGDON1");
1051
400
        LTP ^= bit;
1052
400
        if (!LTP) {
1053
193
            uint32_t out_byte = 0;
1054
193
            int out_bits_to_go_in_byte = 8;
1055
193
            uint8_t *d = &image->data[image->stride * y];
1056
193
            uint8_t *pline  = y > 0 ? &image->data[image->stride * (y-1)] : NULL;
1057
193
            uint8_t *ppline = y > 1 ? &image->data[image->stride * (y-2)] : NULL;
1058
193
            uint32_t pd = 0;
1059
193
            uint32_t ppd = 0;
1060
193
            if (y > 0 && pline) {
1061
193
                pd = (*pline++ << 8);
1062
193
                if (GBW > 8)
1063
193
                    pd |= *pline++;
1064
193
                if (y > 1 && ppline) {
1065
193
                    ppd = (*ppline++ << 8);
1066
193
                    if (GBW > 8)
1067
193
                        ppd |= *ppline++;
1068
193
                }
1069
193
            }
1070
77.2k
            for (x = 0; x < GBW; x++) {
1071
77.0k
                if (params->USESKIP && jbig2_image_get_pixel(params->SKIP, x, y)) {
1072
0
                    bit = 0;
1073
77.0k
                } else {
1074
77.0k
                    CONTEXT = out_byte & 0x000F; /* First 4 pixels */
1075
77.0k
                    CONTEXT |= (pd>>8) & 0x03E0; /* Skip one, next 5 pixels */
1076
77.0k
                    CONTEXT |= (ppd>>2) & 0x7000; /* Skip 2, next 3 pixels, skip one */
1077
77.0k
                    if (y >= top && x >= left && x < right)
1078
73.5k
                    {
1079
73.5k
                        CONTEXT |= jbig2_image_get_pixel_fast(image, x + params->gbat[0], y + params->gbat[1]) << 4;
1080
73.5k
                        CONTEXT |= jbig2_image_get_pixel_fast(image, x + params->gbat[2], y + params->gbat[3]) << 10;
1081
73.5k
                        CONTEXT |= jbig2_image_get_pixel_fast(image, x + params->gbat[4], y + params->gbat[5]) << 11;
1082
73.5k
                        CONTEXT |= jbig2_image_get_pixel_fast(image, x + params->gbat[6], y + params->gbat[7]) << 15;
1083
73.5k
                    }
1084
3.47k
                    else
1085
3.47k
                    {
1086
3.47k
                        CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[0], y + params->gbat[1]) << 4;
1087
3.47k
                        CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[2], y + params->gbat[3]) << 10;
1088
3.47k
                        CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[4], y + params->gbat[5]) << 11;
1089
3.47k
                        CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[6], y + params->gbat[7]) << 15;
1090
3.47k
                    }
1091
77.0k
                    bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
1092
77.0k
                    if (bit < 0)
1093
0
                        return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template0 TPGDON2");
1094
77.0k
                }
1095
77.0k
                pd = pd<<1;
1096
77.0k
                ppd = ppd<<1;
1097
77.0k
                out_byte = (out_byte<<1) | bit;
1098
77.0k
                out_bits_to_go_in_byte--;
1099
77.0k
                *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
1100
77.0k
                if (out_bits_to_go_in_byte == 0) {
1101
9.45k
                    out_bits_to_go_in_byte = 8;
1102
9.45k
                    d++;
1103
9.45k
                    if (x+9 < GBW && y > 0 && pline) {
1104
9.26k
                        pd |= *pline++;
1105
9.26k
                        if (y > 1 && ppline)
1106
9.26k
                            ppd |= *ppline++;
1107
9.26k
                    }
1108
9.45k
                }
1109
77.0k
            }
1110
193
            if (out_bits_to_go_in_byte != 8)
1111
193
                *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
1112
207
        } else {
1113
207
            copy_prev_row(image, y);
1114
207
        }
1115
400
    }
1116
1117
1
    return 0;
1118
1
}
1119
1120
static int
1121
jbig2_decode_generic_template1_TPGDON(Jbig2Ctx *ctx,
1122
                                      Jbig2Segment *segment,
1123
                                      const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
1124
4
{
1125
4
    const int64_t GBW = image->width;
1126
4
    const int64_t GBH = image->height;
1127
4
    uint32_t CONTEXT;
1128
4
    int64_t x, y;
1129
4
    int LTP = 0;
1130
1131
4
    if (pixel_outside_field(params->gbat[0], params->gbat[1]))
1132
1
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number,
1133
1
                           "adaptive template pixel is out of field");
1134
1135
1.13k
    for (y = 0; y < GBH; y++) {
1136
1.13k
        int bit = jbig2_arith_decode(ctx, as, &GB_stats[0x0795]);
1137
1.13k
        if (bit < 0)
1138
0
            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template1 TPGDON1");
1139
1.13k
        LTP ^= bit;
1140
1.13k
        if (!LTP) {
1141
716
            uint32_t out_byte = 0;
1142
716
            int out_bits_to_go_in_byte = 8;
1143
716
            uint8_t *d = &image->data[image->stride * y];
1144
716
            uint8_t *pline  = y > 0 ? &image->data[image->stride * (y-1)] : NULL;
1145
716
            uint8_t *ppline = y > 1 ? &image->data[image->stride * (y-2)] : NULL;
1146
716
            uint32_t pd = 0;
1147
716
            uint32_t ppd = 0;
1148
716
            if (y > 0 && pline) {
1149
715
                pd = (*pline++ << 8);
1150
715
                if (GBW > 8)
1151
715
                    pd |= *pline++;
1152
715
                if (y > 1 && ppline) {
1153
714
                    ppd = (*ppline++ << 8);
1154
714
                    if (GBW > 8)
1155
714
                        ppd |= *ppline++;
1156
714
                }
1157
715
            }
1158
224k
            for (x = 0; x < GBW; x++) {
1159
223k
                if (params->USESKIP && jbig2_image_get_pixel(params->SKIP, x, y)) {
1160
0
                    bit = 0;
1161
223k
                } else {
1162
223k
                    CONTEXT  = out_byte & 0x0007; /* First 3 pixels */
1163
223k
                    CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[0], y + params->gbat[1]) << 3;
1164
223k
                    CONTEXT |= (pd>>9) & 0x01F0; /* next 5 pixels */
1165
223k
                    CONTEXT |= (ppd>>4) & 0x1E00; /* next 4 pixels */
1166
223k
                    bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
1167
223k
                    if (bit < 0)
1168
0
                        return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template1 TPGDON2");
1169
223k
                }
1170
223k
                pd = pd<<1;
1171
223k
                ppd = ppd<<1;
1172
223k
                out_byte = (out_byte<<1) | bit;
1173
223k
                out_bits_to_go_in_byte--;
1174
223k
                *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
1175
223k
                if (out_bits_to_go_in_byte == 0) {
1176
27.4k
                    out_bits_to_go_in_byte = 8;
1177
27.4k
                    d++;
1178
27.4k
                    if (x+9 < GBW && y > 0 && pline) {
1179
26.7k
                        pd |= *pline++;
1180
26.7k
                        if (y > 1 && ppline)
1181
26.7k
                            ppd |= *ppline++;
1182
26.7k
                    }
1183
27.4k
                }
1184
223k
            }
1185
716
            if (out_bits_to_go_in_byte != 8)
1186
716
                *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
1187
716
        } else {
1188
414
            copy_prev_row(image, y);
1189
414
        }
1190
1.13k
    }
1191
1192
3
    return 0;
1193
3
}
1194
1195
static int
1196
jbig2_decode_generic_template2_TPGDON(Jbig2Ctx *ctx,
1197
                                      Jbig2Segment *segment,
1198
                                      const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
1199
2
{
1200
2
    const int64_t GBW = image->width;
1201
2
    const int64_t GBH = image->height;
1202
2
    uint32_t CONTEXT;
1203
2
    int64_t x, y;
1204
2
    int LTP = 0;
1205
1206
2
    if (pixel_outside_field(params->gbat[0], params->gbat[1]))
1207
0
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number,
1208
0
                           "adaptive template pixel is out of field");
1209
1210
732
    for (y = 0; y < GBH; y++) {
1211
730
        int bit = jbig2_arith_decode(ctx, as, &GB_stats[0xE5]);
1212
730
        if (bit < 0)
1213
0
            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template2 TPGDON1");
1214
730
        LTP ^= bit;
1215
730
        if (!LTP) {
1216
523
            uint32_t out_byte = 0;
1217
523
            int out_bits_to_go_in_byte = 8;
1218
523
            uint8_t *d = &image->data[image->stride * y];
1219
523
            uint8_t *pline  =  y > 0 ? &image->data[image->stride * (y-1)] : NULL;
1220
523
            uint8_t *ppline = y > 1 ? &image->data[image->stride * (y-2)] : NULL;
1221
523
            uint32_t pd = 0;
1222
523
            uint32_t ppd = 0;
1223
523
            if (y > 0 && pline) {
1224
522
                pd = (*pline++ << 8);
1225
522
                if (GBW > 8)
1226
522
                    pd |= *pline++;
1227
522
                if (y > 1 && ppline) {
1228
521
                    ppd = (*ppline++ << 8);
1229
521
                    if (GBW > 8)
1230
521
                        ppd |= *ppline++;
1231
521
                }
1232
522
            }
1233
127k
            for (x = 0; x < GBW; x++) {
1234
126k
                if (params->USESKIP && jbig2_image_get_pixel(params->SKIP, x, y)) {
1235
0
                    bit = 0;
1236
126k
                } else {
1237
126k
                    CONTEXT  = out_byte & 0x003; /* First 2 pixels */
1238
126k
                    CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[0], y + params->gbat[1]) << 2;
1239
126k
                    CONTEXT |= (pd>>11) & 0x078; /* next 4 pixels */
1240
126k
                    CONTEXT |= (ppd>>7) & 0x380; /* next 3 pixels */
1241
126k
                    bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
1242
126k
                    if (bit < 0)
1243
0
                        return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template2 TPGDON2");
1244
126k
                }
1245
126k
                pd = pd<<1;
1246
126k
                ppd = ppd<<1;
1247
126k
                out_byte = (out_byte<<1) | bit;
1248
126k
                out_bits_to_go_in_byte--;
1249
126k
                *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
1250
126k
                if (out_bits_to_go_in_byte == 0) {
1251
15.3k
                    out_bits_to_go_in_byte = 8;
1252
15.3k
                    d++;
1253
15.3k
                    if (x+9 < GBW && y > 0 && pline) {
1254
14.8k
                        pd |= *pline++;
1255
14.8k
                        if (y > 1 && ppline)
1256
14.8k
                            ppd |= *ppline++;
1257
14.8k
                    }
1258
15.3k
                }
1259
126k
            }
1260
523
            if (out_bits_to_go_in_byte != 8)
1261
523
                *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
1262
523
        } else {
1263
207
            copy_prev_row(image, y);
1264
207
        }
1265
730
    }
1266
1267
2
    return 0;
1268
2
}
1269
1270
static int
1271
jbig2_decode_generic_template3_TPGDON(Jbig2Ctx *ctx,
1272
                                      Jbig2Segment *segment,
1273
                                      const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
1274
0
{
1275
0
    const int64_t GBW = image->width;
1276
0
    const int64_t GBH = image->height;
1277
0
    uint32_t CONTEXT;
1278
0
    int64_t x, y;
1279
0
    int LTP = 0;
1280
1281
0
    if (pixel_outside_field(params->gbat[0], params->gbat[1]))
1282
0
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number,
1283
0
                           "adaptive template pixel is out of field");
1284
1285
0
    for (y = 0; y < GBH; y++) {
1286
0
        int bit = jbig2_arith_decode(ctx, as, &GB_stats[0x0195]);
1287
0
        if (bit < 0)
1288
0
            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template3 TPGDON1");
1289
0
        LTP ^= bit;
1290
0
        if (!LTP) {
1291
0
            uint32_t out_byte = 0;
1292
0
            int out_bits_to_go_in_byte = 8;
1293
0
            uint8_t *d = &image->data[image->stride * y];
1294
0
            uint8_t *pline  = y > 0 ? &image->data[image->stride * (y-1)] : NULL;
1295
0
            uint32_t pd = 0;
1296
0
            if (y > 0 && pline) {
1297
0
                pd = (*pline++ << 8);
1298
0
                if (GBW > 8)
1299
0
                    pd |= *pline++;
1300
0
            }
1301
0
            for (x = 0; x < GBW; x++) {
1302
0
                if (params->USESKIP && jbig2_image_get_pixel(params->SKIP, x, y)) {
1303
0
                    bit = 0;
1304
0
                } else {
1305
0
                    CONTEXT  = out_byte & 0x0F; /* First 4 pixels */
1306
0
                    CONTEXT |= jbig2_image_get_pixel(image, x + params->gbat[0], y + params->gbat[1]) << 4;
1307
0
                    CONTEXT |= (pd>>9) & 0x3E0; /* next 5 pixels */
1308
0
                    bit = jbig2_arith_decode(ctx, as, &GB_stats[CONTEXT]);
1309
0
                    if (bit < 0)
1310
0
                        return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling generic template3 TPGDON2");
1311
0
                }
1312
0
                pd = pd<<1;
1313
0
                out_byte = (out_byte<<1) | bit;
1314
0
                out_bits_to_go_in_byte--;
1315
0
                *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
1316
0
                if (out_bits_to_go_in_byte == 0) {
1317
0
                    out_bits_to_go_in_byte = 8;
1318
0
                    d++;
1319
0
                    if (x+9 < GBW && y > 0 && pline)
1320
0
                        pd |= *pline++;
1321
0
                }
1322
0
            }
1323
0
            if (out_bits_to_go_in_byte != 8)
1324
0
                *d = (uint8_t)out_byte<<out_bits_to_go_in_byte;
1325
0
        } else {
1326
0
            copy_prev_row(image, y);
1327
0
        }
1328
0
    }
1329
1330
0
    return 0;
1331
0
}
1332
1333
static int
1334
jbig2_decode_generic_region_TPGDON(Jbig2Ctx *ctx,
1335
                                   Jbig2Segment *segment,
1336
                                   const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
1337
9
{
1338
9
    switch (params->GBTEMPLATE) {
1339
3
    case 0:
1340
3
        return jbig2_decode_generic_template0_TPGDON(ctx, segment, params, as, image, GB_stats);
1341
4
    case 1:
1342
4
        return jbig2_decode_generic_template1_TPGDON(ctx, segment, params, as, image, GB_stats);
1343
2
    case 2:
1344
2
        return jbig2_decode_generic_template2_TPGDON(ctx, segment, params, as, image, GB_stats);
1345
0
    case 3:
1346
0
        return jbig2_decode_generic_template3_TPGDON(ctx, segment, params, as, image, GB_stats);
1347
9
    }
1348
1349
0
    return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "unsupported GBTEMPLATE (%d)", params->GBTEMPLATE);
1350
9
}
1351
1352
/**
1353
 * jbig2_decode_generic_region: Decode a generic region.
1354
 * @ctx: The context for allocation and error reporting.
1355
 * @segment: A segment reference for error reporting.
1356
 * @params: Decoding parameter set.
1357
 * @as: Arithmetic decoder state.
1358
 * @image: Where to store the decoded data.
1359
 * @GB_stats: Arithmetic stats.
1360
 *
1361
 * Decodes a generic region, according to section 6.2. The caller should
1362
 * pass an already allocated Jbig2Image object for @image
1363
 *
1364
 * Because this API is based on an arithmetic decoding state, it is
1365
 * not suitable for MMR decoding.
1366
 *
1367
 * Return code: 0 on success.
1368
 **/
1369
int
1370
jbig2_decode_generic_region(Jbig2Ctx *ctx,
1371
                            Jbig2Segment *segment, const Jbig2GenericRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GB_stats)
1372
1.19k
{
1373
1.19k
    const int8_t *gbat = params->gbat;
1374
1375
1.19k
    if (!params->MMR && params->TPGDON)
1376
9
        return jbig2_decode_generic_region_TPGDON(ctx, segment, params, as, image, GB_stats);
1377
1378
1.18k
    if (!params->MMR && params->GBTEMPLATE == 0) {
1379
644
        if (!params->USESKIP && gbat[0] == +3 && gbat[1] == -1 && gbat[2] == -3 && gbat[3] == -1 && gbat[4] == +2 && gbat[5] == -2 && gbat[6] == -2 && gbat[7] == -2)
1380
558
            return jbig2_decode_generic_template0(ctx, segment, params, as, image, GB_stats);
1381
86
        else
1382
86
            return jbig2_decode_generic_template0_unopt(ctx, segment, params, as, image, GB_stats);
1383
644
    } else if (!params->MMR && params->GBTEMPLATE == 1) {
1384
154
        if (!params->USESKIP && gbat[0] == +3 && gbat[1] == -1)
1385
16
            return jbig2_decode_generic_template1(ctx, segment, params, as, image, GB_stats);
1386
138
        else
1387
138
            return jbig2_decode_generic_template1_unopt(ctx, segment, params, as, image, GB_stats);
1388
154
    }
1389
385
    else if (!params->MMR && params->GBTEMPLATE == 2) {
1390
349
        if (!params->USESKIP && gbat[0] == 2 && gbat[1] == -1)
1391
337
            return jbig2_decode_generic_template2(ctx, segment, params, as, image, GB_stats);
1392
12
        else
1393
12
            return jbig2_decode_generic_template2_unopt(ctx, segment, params, as, image, GB_stats);
1394
349
    } else if (!params->MMR && params->GBTEMPLATE == 3) {
1395
36
        if (!params->USESKIP && gbat[0] == 2 && gbat[1] == -1)
1396
23
            return jbig2_decode_generic_template3(ctx, segment, params, as, image, GB_stats);
1397
13
        else
1398
13
            return jbig2_decode_generic_template3_unopt(ctx, segment, params, as, image, GB_stats);
1399
36
    }
1400
1401
0
    {
1402
0
        int i;
1403
1404
0
        for (i = 0; i < 8; i++)
1405
0
            jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number, "gbat[%d] = %d", i, params->gbat[i]);
1406
0
    }
1407
1408
0
    return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "unsupported generic region (MMR=%d, GBTEMPLATE=%d)", params->MMR, params->GBTEMPLATE);
1409
1.18k
}
1410
1411
/**
1412
 * Handler for immediate generic region segments
1413
 */
1414
int
1415
jbig2_immediate_generic_region(Jbig2Ctx *ctx, Jbig2Segment *segment, const byte *segment_data)
1416
244
{
1417
244
    Jbig2RegionSegmentInfo rsi;
1418
244
    byte seg_flags;
1419
244
    int8_t gbat[8];
1420
244
    int offset;
1421
244
    uint32_t gbat_bytes = 0;
1422
244
    Jbig2GenericRegionParams params;
1423
244
    int code = 0;
1424
244
    Jbig2Image *image = NULL;
1425
244
    Jbig2WordStream *ws = NULL;
1426
244
    Jbig2ArithState *as = NULL;
1427
244
    Jbig2ArithCx *GB_stats = NULL;
1428
244
    uint32_t height;
1429
244
    Jbig2Page *page = &ctx->pages[ctx->current_page];
1430
1431
    /* 7.4.6 */
1432
244
    if (segment->data_length < 18)
1433
0
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "segment too short");
1434
1435
244
    jbig2_get_region_segment_info(&rsi, segment_data);
1436
244
    jbig2_error(ctx, JBIG2_SEVERITY_INFO, segment->number, "generic region: %u x %u @ (%u, %u), flags = %02x", rsi.width, rsi.height, rsi.x, rsi.y, rsi.flags);
1437
1438
    /* 7.4.6.4 */
1439
244
    height = rsi.height;
1440
244
    if (segment->rows != UINT32_MAX) {
1441
1
        if (segment->rows > rsi.height)
1442
0
            return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "segment contains more rows than stated in header");
1443
1
        height = segment->rows;
1444
1
    }
1445
1446
    /* 7.4.6.2 */
1447
244
    seg_flags = segment_data[17];
1448
244
    jbig2_error(ctx, JBIG2_SEVERITY_INFO, segment->number, "segment flags = %02x", seg_flags);
1449
244
    if ((seg_flags & 1) && (seg_flags & 6))
1450
0
        jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "MMR is 1, but GBTEMPLATE is not 0");
1451
1452
    /* 7.4.6.3 */
1453
244
    if (!(seg_flags & 1)) {
1454
243
        gbat_bytes = (seg_flags & 6) ? 2 : 8;
1455
243
        if (18 + gbat_bytes > segment->data_length)
1456
0
            return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "segment too short");
1457
243
        memcpy(gbat, segment_data + 18, gbat_bytes);
1458
243
        jbig2_error(ctx, JBIG2_SEVERITY_INFO, segment->number, "gbat: %d, %d", gbat[0], gbat[1]);
1459
243
    }
1460
1461
244
    offset = 18 + gbat_bytes;
1462
1463
    /* Check for T.88 amendment 2 */
1464
244
    if ((seg_flags >> 5) & 1)
1465
0
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "segment uses 12 adaptive template pixels (NYI)");
1466
1467
    /* Table 34 */
1468
244
    params.MMR = seg_flags & 1;
1469
244
    params.GBTEMPLATE = (seg_flags & 6) >> 1;
1470
244
    params.TPGDON = (seg_flags & 8) >> 3;
1471
244
    params.USESKIP = 0;
1472
244
    memcpy(params.gbat, gbat, gbat_bytes);
1473
1474
244
    if (page->height == 0xffffffff && page->striped && page->stripe_size > 0) {
1475
4
        if (rsi.y >= page->end_row + page->stripe_size) {
1476
0
            jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "ignoring %u x %u region at (%u, %u) outside of stripe at row %u covering %u rows, on page of height %u", rsi.width, rsi.height, rsi.x, rsi.y, page->end_row, page->stripe_size, page->image->height);
1477
0
            return 0;
1478
0
        }
1479
4
        if (height > page->end_row + page->stripe_size) {
1480
0
            height = page->end_row + page->stripe_size;
1481
0
        }
1482
240
    } else {
1483
240
        if (rsi.y >= page->height) {
1484
0
            jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "ignoring %u x %u region at (%u, %u) outside of page of height %u", rsi.width, rsi.height, rsi.x, rsi.y, page->height);
1485
0
            return 0;
1486
0
        }
1487
240
        if (height > page->height - rsi .y) {
1488
0
            height = page->height - rsi.y;
1489
0
        }
1490
240
    }
1491
244
    if (height == 0) {
1492
0
        jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "nothing remains of region, ignoring");
1493
0
        return 0;
1494
0
    }
1495
1496
244
    image = jbig2_image_new(ctx, rsi.width, height);
1497
244
    if (image == NULL)
1498
0
        return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate generic image");
1499
244
    jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number, "allocated %d x %d image buffer for region decode results", rsi.width, height);
1500
1501
244
    if (params.MMR) {
1502
1
        code = jbig2_decode_generic_mmr(ctx, segment, &params, segment_data + offset, segment->data_length - offset, image);
1503
1
        if (code < 0) {
1504
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode MMR-coded generic region");
1505
0
            goto cleanup;
1506
0
        }
1507
243
    } else {
1508
243
        int stats_size = jbig2_generic_stats_size(ctx, params.GBTEMPLATE);
1509
1510
243
        GB_stats = jbig2_new(ctx, Jbig2ArithCx, stats_size);
1511
243
        if (GB_stats == NULL) {
1512
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "failed to allocate arithmetic decoder states when handling immediate generic region");
1513
0
            goto cleanup;
1514
0
        }
1515
243
        memset(GB_stats, 0, stats_size);
1516
1517
243
        ws = jbig2_word_stream_buf_new(ctx, segment_data + offset, segment->data_length - offset);
1518
243
        if (ws == NULL) {
1519
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocated word stream when handling immediate generic region");
1520
0
            goto cleanup;
1521
0
        }
1522
243
        as = jbig2_arith_new(ctx, ws);
1523
243
        if (as == NULL) {
1524
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate arithmetic coding state when handling immediate generic region");
1525
0
            goto cleanup;
1526
0
        }
1527
243
        code = jbig2_decode_generic_region(ctx, segment, &params, as, image, GB_stats);
1528
243
        if (code < 0) {
1529
1
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode immediate generic region");
1530
1
            goto cleanup;
1531
1
        }
1532
243
    }
1533
1534
243
    code = jbig2_page_add_result(ctx, &ctx->pages[ctx->current_page], image, rsi.x, rsi.y, rsi.op);
1535
243
    if (code < 0)
1536
0
        code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "unable to add result to page");
1537
1538
244
cleanup:
1539
244
    jbig2_free(ctx->allocator, as);
1540
244
    jbig2_word_stream_buf_free(ctx, ws);
1541
244
    jbig2_free(ctx->allocator, GB_stats);
1542
244
    jbig2_image_release(ctx, image);
1543
1544
244
    return code;
1545
243
}