Coverage Report

Created: 2025-12-07 06:10

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/jbig2dec/jbig2_refinement.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 Refinement 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
#include <stdio.h>
33
34
#include "jbig2.h"
35
#include "jbig2_priv.h"
36
#include "jbig2_arith.h"
37
#include "jbig2_generic.h"
38
#include "jbig2_image.h"
39
#include "jbig2_page.h"
40
#include "jbig2_refinement.h"
41
#include "jbig2_segment.h"
42
43
#define pixel_outside_field(x, y) \
44
157k
    ((y) < -128 || (y) > 0 || (x) < -128 || ((y) < 0 && (x) > 127) || ((y) == 0 && (x) >= 0))
45
#define refpixel_outside_field(x, y) \
46
78.7k
    ((y) < -128 || (y) > 127 || (x) < -128 || (x) > 127)
47
48
static int
49
jbig2_decode_refinement_template0_unopt(Jbig2Ctx *ctx,
50
                                        Jbig2Segment *segment,
51
                                        const Jbig2RefinementRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GR_stats)
52
78.5k
{
53
78.5k
    const int GRW = image->width;
54
78.5k
    const int GRH = image->height;
55
78.5k
    Jbig2Image *ref = params->GRREFERENCE;
56
78.5k
    const int dx = params->GRREFERENCEDX;
57
78.5k
    const int dy = params->GRREFERENCEDY;
58
78.5k
    uint32_t CONTEXT;
59
78.5k
    int x, y;
60
78.5k
    int bit;
61
62
78.5k
    if (pixel_outside_field(params->grat[0], params->grat[1]) ||
63
78.5k
        refpixel_outside_field(params->grat[2], params->grat[3]))
64
5
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number,
65
5
                           "adaptive template pixel is out of field");
66
67
517k
    for (y = 0; y < GRH; y++) {
68
14.7M
        for (x = 0; x < GRW; x++) {
69
14.3M
            CONTEXT = 0;
70
14.3M
            CONTEXT |= jbig2_image_get_pixel(image, x - 1, y + 0) << 0;
71
14.3M
            CONTEXT |= jbig2_image_get_pixel(image, x + 1, y - 1) << 1;
72
14.3M
            CONTEXT |= jbig2_image_get_pixel(image, x + 0, y - 1) << 2;
73
14.3M
            CONTEXT |= jbig2_image_get_pixel(image, x + params->grat[0], y + params->grat[1]) << 3;
74
14.3M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 1, y - dy + 1) << 4;
75
14.3M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 0, y - dy + 1) << 5;
76
14.3M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx - 1, y - dy + 1) << 6;
77
14.3M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 1, y - dy + 0) << 7;
78
14.3M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 0, y - dy + 0) << 8;
79
14.3M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx - 1, y - dy + 0) << 9;
80
14.3M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 1, y - dy - 1) << 10;
81
14.3M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 0, y - dy - 1) << 11;
82
14.3M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx + params->grat[2], y - dy + params->grat[3]) << 12;
83
14.3M
            bit = jbig2_arith_decode(ctx, as, &GR_stats[CONTEXT]);
84
14.3M
            if (bit < 0)
85
0
                return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling refinement template0");
86
14.3M
            jbig2_image_set_pixel(image, x, y, bit);
87
14.3M
        }
88
439k
    }
89
#ifdef JBIG2_DEBUG_DUMP
90
    {
91
        static count = 0;
92
        char name[32];
93
        int code;
94
95
        snprintf(name, 32, "refin-%d.pbm", count);
96
        code = jbig2_image_write_pbm_file(ref, name);
97
        if (code < 0)
98
            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed write refinement input");
99
        snprintf(name, 32, "refout-%d.pbm", count);
100
        code = jbig2_image_write_pbm_file(image, name);
101
        if (code < 0)
102
            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed write refinement output");
103
        count++;
104
    }
105
#endif
106
107
78.5k
    return 0;
108
78.5k
}
109
110
static int
111
jbig2_decode_refinement_template1_unopt(Jbig2Ctx *ctx,
112
                                        Jbig2Segment *segment,
113
                                        const Jbig2RefinementRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GR_stats)
114
2.03k
{
115
2.03k
    const int GRW = image->width;
116
2.03k
    const int GRH = image->height;
117
2.03k
    Jbig2Image *ref = params->GRREFERENCE;
118
2.03k
    const int dx = params->GRREFERENCEDX;
119
2.03k
    const int dy = params->GRREFERENCEDY;
120
2.03k
    uint32_t CONTEXT;
121
2.03k
    int x, y;
122
2.03k
    int bit;
123
124
19.6M
    for (y = 0; y < GRH; y++) {
125
112M
        for (x = 0; x < GRW; x++) {
126
92.4M
            CONTEXT = 0;
127
92.4M
            CONTEXT |= jbig2_image_get_pixel(image, x - 1, y + 0) << 0;
128
92.4M
            CONTEXT |= jbig2_image_get_pixel(image, x + 1, y - 1) << 1;
129
92.4M
            CONTEXT |= jbig2_image_get_pixel(image, x + 0, y - 1) << 2;
130
92.4M
            CONTEXT |= jbig2_image_get_pixel(image, x - 1, y - 1) << 3;
131
92.4M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 1, y - dy + 1) << 4;
132
92.4M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 0, y - dy + 1) << 5;
133
92.4M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 1, y - dy + 0) << 6;
134
92.4M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 0, y - dy + 0) << 7;
135
92.4M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx - 1, y - dy + 0) << 8;
136
92.4M
            CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 0, y - dy - 1) << 9;
137
92.4M
            bit = jbig2_arith_decode(ctx, as, &GR_stats[CONTEXT]);
138
92.4M
            if (bit < 0)
139
0
                return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling refinement template0");
140
92.4M
            jbig2_image_set_pixel(image, x, y, bit);
141
92.4M
        }
142
19.6M
    }
143
144
#ifdef JBIG2_DEBUG_DUMP
145
    {
146
        static count = 0;
147
        char name[32];
148
149
        snprintf(name, 32, "refin-%d.pbm", count);
150
        code = jbig2_image_write_pbm_file(ref, name);
151
        if (code < 0)
152
            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to write refinement input");
153
        snprintf(name, 32, "refout-%d.pbm", count);
154
        code = jbig2_image_write_pbm_file(image, name);
155
        if (code < 0)
156
            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to write refinement output");
157
        count++;
158
    }
159
#endif
160
161
2.03k
    return 0;
162
2.03k
}
163
164
#if 0                           /* currently not used */
165
static int
166
jbig2_decode_refinement_template1(Jbig2Ctx *ctx,
167
                                  Jbig2Segment *segment,
168
                                  const Jbig2RefinementRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GR_stats)
169
{
170
    const int GRW = image->width;
171
    const int GRH = image->height;
172
    const int stride = image->stride;
173
    const int refstride = params->reference->stride;
174
    const int dy = params->DY;
175
    byte *grreg_line = (byte *) image->data;
176
    byte *grref_line = (byte *) params->reference->data;
177
    int x, y;
178
179
    for (y = 0; y < GRH; y++) {
180
        const int padded_width = (GRW + 7) & -8;
181
        uint32_t CONTEXT;
182
        uint32_t refline_m1;    /* previous line of the reference bitmap */
183
        uint32_t refline_0;     /* current line of the reference bitmap */
184
        uint32_t refline_1;     /* next line of the reference bitmap */
185
        uint32_t line_m1;       /* previous line of the decoded bitmap */
186
187
        line_m1 = (y >= 1) ? grreg_line[-stride] : 0;
188
        refline_m1 = ((y - dy) >= 1) ? grref_line[(-1 - dy) * stride] << 2 : 0;
189
        refline_0 = (((y - dy) > 0) && ((y - dy) < GRH)) ? grref_line[(0 - dy) * stride] << 4 : 0;
190
        refline_1 = (y < GRH - 1) ? grref_line[(+1 - dy) * stride] << 7 : 0;
191
        CONTEXT = ((line_m1 >> 5) & 0x00e) | ((refline_1 >> 5) & 0x030) | ((refline_0 >> 5) & 0x1c0) | ((refline_m1 >> 5) & 0x200);
192
193
        for (x = 0; x < padded_width; x += 8) {
194
            byte result = 0;
195
            int x_minor;
196
            const int minor_width = GRW - x > 8 ? 8 : GRW - x;
197
198
            if (y >= 1) {
199
                line_m1 = (line_m1 << 8) | (x + 8 < GRW ? grreg_line[-stride + (x >> 3) + 1] : 0);
200
                refline_m1 = (refline_m1 << 8) | (x + 8 < GRW ? grref_line[-refstride + (x >> 3) + 1] << 2 : 0);
201
            }
202
203
            refline_0 = (refline_0 << 8) | (x + 8 < GRW ? grref_line[(x >> 3) + 1] << 4 : 0);
204
205
            if (y < GRH - 1)
206
                refline_1 = (refline_1 << 8) | (x + 8 < GRW ? grref_line[+refstride + (x >> 3) + 1] << 7 : 0);
207
            else
208
                refline_1 = 0;
209
210
            /* this is the speed critical inner-loop */
211
            for (x_minor = 0; x_minor < minor_width; x_minor++) {
212
                int bit;
213
214
                bit = jbig2_arith_decode(ctx, as, &GR_stats[CONTEXT]);
215
                if (bit < 0)
216
                    return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode arithmetic code when handling refinement template1");
217
                result |= bit << (7 - x_minor);
218
                CONTEXT = ((CONTEXT & 0x0d6) << 1) | bit |
219
                          ((line_m1 >> (9 - x_minor)) & 0x002) |
220
                          ((refline_1 >> (9 - x_minor)) & 0x010) | ((refline_0 >> (9 - x_minor)) & 0x040) | ((refline_m1 >> (9 - x_minor)) & 0x200);
221
            }
222
223
            grreg_line[x >> 3] = result;
224
225
        }
226
227
        grreg_line += stride;
228
        grref_line += refstride;
229
230
    }
231
232
    return 0;
233
234
}
235
#endif
236
237
typedef uint32_t(*ContextBuilder)(const Jbig2RefinementRegionParams *, Jbig2Image *, int, int);
238
239
static int
240
implicit_value(const Jbig2RefinementRegionParams *params, Jbig2Image *image, int x, int y)
241
47.7M
{
242
47.7M
    Jbig2Image *ref = params->GRREFERENCE;
243
47.7M
    int i = x - params->GRREFERENCEDX;
244
47.7M
    int j = y - params->GRREFERENCEDY;
245
47.7M
    int m = jbig2_image_get_pixel(ref, i, j);
246
247
47.7M
    return ((jbig2_image_get_pixel(ref, i - 1, j - 1) == m) &&
248
47.2M
            (jbig2_image_get_pixel(ref, i, j - 1) == m) &&
249
47.0M
            (jbig2_image_get_pixel(ref, i + 1, j - 1) == m) &&
250
46.8M
            (jbig2_image_get_pixel(ref, i - 1, j) == m) &&
251
46.7M
            (jbig2_image_get_pixel(ref, i + 1, j) == m) &&
252
46.6M
            (jbig2_image_get_pixel(ref, i - 1, j + 1) == m) &&
253
46.5M
            (jbig2_image_get_pixel(ref, i, j + 1) == m) &&
254
46.4M
            (jbig2_image_get_pixel(ref, i + 1, j + 1) == m)
255
47.7M
           )? m : -1;
256
47.7M
}
257
258
static uint32_t
259
mkctx0(const Jbig2RefinementRegionParams *params, Jbig2Image *image, int x, int y)
260
32.7M
{
261
32.7M
    Jbig2Image *ref = params->GRREFERENCE;
262
32.7M
    const int dx = params->GRREFERENCEDX;
263
32.7M
    const int dy = params->GRREFERENCEDY;
264
32.7M
    uint32_t CONTEXT;
265
266
32.7M
    CONTEXT = jbig2_image_get_pixel(image, x - 1, y + 0);
267
32.7M
    CONTEXT |= jbig2_image_get_pixel(image, x + 1, y - 1) << 1;
268
32.7M
    CONTEXT |= jbig2_image_get_pixel(image, x + 0, y - 1) << 2;
269
32.7M
    CONTEXT |= jbig2_image_get_pixel(image, x + params->grat[0], y + params->grat[1]) << 3;
270
32.7M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 1, y - dy + 1) << 4;
271
32.7M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 0, y - dy + 1) << 5;
272
32.7M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx - 1, y - dy + 1) << 6;
273
32.7M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 1, y - dy + 0) << 7;
274
32.7M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 0, y - dy + 0) << 8;
275
32.7M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx - 1, y - dy + 0) << 9;
276
32.7M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 1, y - dy - 1) << 10;
277
32.7M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 0, y - dy - 1) << 11;
278
32.7M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx + params->grat[2], y - dy + params->grat[3]) << 12;
279
32.7M
    return CONTEXT;
280
32.7M
}
281
282
static uint32_t
283
mkctx1(const Jbig2RefinementRegionParams *params, Jbig2Image *image, int x, int y)
284
43.3M
{
285
43.3M
    Jbig2Image *ref = params->GRREFERENCE;
286
43.3M
    const int dx = params->GRREFERENCEDX;
287
43.3M
    const int dy = params->GRREFERENCEDY;
288
43.3M
    uint32_t CONTEXT;
289
290
43.3M
    CONTEXT = jbig2_image_get_pixel(image, x - 1, y + 0);
291
43.3M
    CONTEXT |= jbig2_image_get_pixel(image, x + 1, y - 1) << 1;
292
43.3M
    CONTEXT |= jbig2_image_get_pixel(image, x + 0, y - 1) << 2;
293
43.3M
    CONTEXT |= jbig2_image_get_pixel(image, x - 1, y - 1) << 3;
294
43.3M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 1, y - dy + 1) << 4;
295
43.3M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 0, y - dy + 1) << 5;
296
43.3M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 1, y - dy + 0) << 6;
297
43.3M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 0, y - dy + 0) << 7;
298
43.3M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx - 1, y - dy + 0) << 8;
299
43.3M
    CONTEXT |= jbig2_image_get_pixel(ref, x - dx + 0, y - dy - 1) << 9;
300
43.3M
    return CONTEXT;
301
43.3M
}
302
303
static int
304
jbig2_decode_refinement_TPGRON(Jbig2Ctx *ctx, const Jbig2RefinementRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GR_stats)
305
284
{
306
284
    const int GRW = image->width;
307
284
    const int GRH = image->height;
308
284
    int x, y, iv, LTP = 0;
309
284
    uint32_t start_context = (params->GRTEMPLATE ? 0x40 : 0x100);
310
284
    ContextBuilder mkctx = (params->GRTEMPLATE ? mkctx1 : mkctx0);
311
312
284
    if (params->GRTEMPLATE == 0 &&
313
193
        (pixel_outside_field(params->grat[0], params->grat[1]) ||
314
191
        refpixel_outside_field(params->grat[2], params->grat[3])))
315
2
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, JBIG2_UNKNOWN_SEGMENT_NUMBER,
316
2
                           "adaptive template pixel is out of field");
317
318
2.96M
    for (y = 0; y < GRH; y++) {
319
2.96M
        int bit = jbig2_arith_decode(ctx, as, &GR_stats[start_context]);
320
2.96M
        if (bit < 0)
321
0
            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, JBIG2_UNKNOWN_SEGMENT_NUMBER, "failed to decode arithmetic code when handling refinement TPGRON1");
322
2.96M
        LTP ^= bit;
323
2.96M
        if (!LTP) {
324
76.5M
            for (x = 0; x < GRW; x++) {
325
74.8M
                bit = jbig2_arith_decode(ctx, as, &GR_stats[mkctx(params, image, x, y)]);
326
74.8M
                if (bit < 0)
327
0
                    return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, JBIG2_UNKNOWN_SEGMENT_NUMBER, "failed to decode arithmetic code when handling refinement TPGRON1");
328
74.8M
                jbig2_image_set_pixel(image, x, y, bit);
329
74.8M
            }
330
1.64M
        } else {
331
49.0M
            for (x = 0; x < GRW; x++) {
332
47.7M
                iv = implicit_value(params, image, x, y);
333
47.7M
                if (iv < 0) {
334
1.29M
                    int bit = jbig2_arith_decode(ctx, as, &GR_stats[mkctx(params, image, x, y)]);
335
1.29M
                    if (bit < 0)
336
0
                        return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, JBIG2_UNKNOWN_SEGMENT_NUMBER, "failed to decode arithmetic code when handling refinement TPGRON1");
337
1.29M
                    jbig2_image_set_pixel(image, x, y, bit);
338
1.29M
                } else
339
46.4M
                    jbig2_image_set_pixel(image, x, y, iv);
340
47.7M
            }
341
1.31M
        }
342
2.96M
    }
343
344
282
    return 0;
345
282
}
346
347
/**
348
 * jbig2_decode_refinement_region: Decode a generic refinement region.
349
 * @ctx: The context for allocation and error reporting.
350
 * @segment: A segment reference for error reporting.
351
 * @params: Decoding parameter set.
352
 * @as: Arithmetic decoder state.
353
 * @image: Where to store the decoded image.
354
 * @GR_stats: Arithmetic stats.
355
 *
356
 * Decodes a generic refinement region, according to section 6.3.
357
 * an already allocated Jbig2Image object in @image for the result.
358
 *
359
 * Because this API is based on an arithmetic decoding state, it is
360
 * not suitable for MMR decoding.
361
 *
362
 * Return code: 0 on success.
363
 **/
364
int
365
jbig2_decode_refinement_region(Jbig2Ctx *ctx,
366
                               Jbig2Segment *segment,
367
                               const Jbig2RefinementRegionParams *params, Jbig2ArithState *as, Jbig2Image *image, Jbig2ArithCx *GR_stats)
368
80.9k
{
369
80.9k
    jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number,
370
80.9k
                "decoding generic refinement region with offset %d,%x, GRTEMPLATE=%d, TPGRON=%d",
371
80.9k
                params->GRREFERENCEDX, params->GRREFERENCEDY, params->GRTEMPLATE, params->TPGRON);
372
373
80.9k
    if (params->TPGRON)
374
284
        return jbig2_decode_refinement_TPGRON(ctx, params, as, image, GR_stats);
375
376
80.6k
    if (params->GRTEMPLATE)
377
2.03k
        return jbig2_decode_refinement_template1_unopt(ctx, segment, params, as, image, GR_stats);
378
78.5k
    else
379
78.5k
        return jbig2_decode_refinement_template0_unopt(ctx, segment, params, as, image, GR_stats);
380
80.6k
}
381
382
/**
383
 * Find the first referred-to intermediate region segment
384
 * with a non-NULL result for use as a reference image
385
 */
386
static Jbig2Segment *
387
jbig2_region_find_referred(Jbig2Ctx *ctx, Jbig2Segment *segment)
388
41
{
389
41
    const int nsegments = segment->referred_to_segment_count;
390
41
    Jbig2Segment *rsegment;
391
41
    int index;
392
393
1.64k
    for (index = 0; index < nsegments; index++) {
394
1.63k
        rsegment = jbig2_find_segment(ctx, segment->referred_to_segments[index]);
395
1.63k
        if (rsegment == NULL) {
396
962
            jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to find referred to segment %d", segment->referred_to_segments[index]);
397
962
            continue;
398
962
        }
399
676
        switch (rsegment->flags & 63) {
400
299
        case 4:                /* intermediate text region */
401
299
        case 20:               /* intermediate halftone region */
402
299
        case 36:               /* intermediate generic region */
403
321
        case 40:               /* intermediate generic refinement region */
404
321
            if (rsegment->result)
405
33
                return rsegment;
406
288
            break;
407
355
        default:               /* keep looking */
408
355
            break;
409
676
        }
410
676
    }
411
    /* no appropriate reference was found. */
412
8
    return NULL;
413
41
}
414
415
/**
416
 * Handler for generic refinement region segments
417
 */
418
int
419
jbig2_refinement_region(Jbig2Ctx *ctx, Jbig2Segment *segment, const byte *segment_data)
420
410
{
421
410
    Jbig2RefinementRegionParams params;
422
410
    Jbig2RegionSegmentInfo rsi;
423
410
    int offset = 0;
424
410
    byte seg_flags;
425
410
    int code = 0;
426
427
    /* 7.4.7 */
428
410
    if (segment->data_length < 18)
429
3
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "segment too short");
430
431
407
    jbig2_get_region_segment_info(&rsi, segment_data);
432
407
    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);
433
434
    /* 7.4.7.2 */
435
407
    seg_flags = segment_data[17];
436
407
    params.GRTEMPLATE = seg_flags & 0x01;
437
407
    params.TPGRON = seg_flags & 0x02 ? 1 : 0;
438
407
    jbig2_error(ctx, JBIG2_SEVERITY_INFO, segment->number,
439
407
                "segment flags = %02x %s%s", seg_flags, params.GRTEMPLATE ? " GRTEMPLATE" : "", params.TPGRON ? " TPGRON" : "");
440
407
    if (seg_flags & 0xFC)
441
234
        jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "reserved segment flag bits are non-zero");
442
407
    offset += 18;
443
444
    /* 7.4.7.3 */
445
407
    if (!params.GRTEMPLATE) {
446
226
        if (segment->data_length < 22)
447
3
            return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "segment too short");
448
223
        params.grat[0] = segment_data[offset + 0];
449
223
        params.grat[1] = segment_data[offset + 1];
450
223
        params.grat[2] = segment_data[offset + 2];
451
223
        params.grat[3] = segment_data[offset + 3];
452
223
        jbig2_error(ctx, JBIG2_SEVERITY_INFO, segment->number,
453
223
                    "grat1: (%d, %d) grat2: (%d, %d)", params.grat[0], params.grat[1], params.grat[2], params.grat[3]);
454
223
        offset += 4;
455
223
    }
456
457
    /* 7.4.7.4 - set up the reference image */
458
404
    if (segment->referred_to_segment_count) {
459
41
        Jbig2Segment *ref;
460
461
41
        ref = jbig2_region_find_referred(ctx, segment);
462
41
        if (ref == NULL)
463
8
            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to find reference bitmap");
464
33
        if (ref->result == NULL)
465
0
            return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "reference bitmap has no decoded image");
466
        /* the reference bitmap is the result of a previous
467
           intermediate region segment; the reference selection
468
           rules say to use the first one available, and not to
469
           reuse any intermediate result, so we simply take another
470
           reference to it and free the original to keep track of this. */
471
33
        params.GRREFERENCE = jbig2_image_reference(ctx, (Jbig2Image *) ref->result);
472
33
        jbig2_image_release(ctx, (Jbig2Image *) ref->result);
473
33
        ref->result = NULL;
474
33
        jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number, "found reference bitmap in segment %d", ref->number);
475
363
    } else {
476
        /* the reference is just (a subset of) the page buffer */
477
363
        if (ctx->pages[ctx->current_page].image == NULL)
478
3
            return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "reference page bitmap has no decoded image");
479
360
        params.GRREFERENCE = jbig2_image_reference(ctx, ctx->pages[ctx->current_page].image);
480
        /* TODO: subset the image if appropriate */
481
360
    }
482
483
    /* 7.4.7.5 */
484
393
    params.GRREFERENCEDX = 0;
485
393
    params.GRREFERENCEDY = 0;
486
393
    {
487
393
        Jbig2WordStream *ws = NULL;
488
393
        Jbig2ArithState *as = NULL;
489
393
        Jbig2ArithCx *GR_stats = NULL;
490
393
        int stats_size;
491
393
        Jbig2Image *image = NULL;
492
493
393
        image = jbig2_image_new(ctx, rsi.width, rsi.height);
494
393
        if (image == NULL) {
495
6
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate refinement image");
496
6
            goto cleanup;
497
6
        }
498
387
        jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number, "allocated %d x %d image buffer for region decode results", rsi.width, rsi.height);
499
500
387
        stats_size = params.GRTEMPLATE ? 1 << 10 : 1 << 13;
501
387
        GR_stats = jbig2_new(ctx, Jbig2ArithCx, stats_size);
502
387
        if (GR_stats == NULL) {
503
1
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "failed to allocate arithmetic decoder state for generic refinement regions");
504
1
            goto cleanup;
505
1
        }
506
386
        memset(GR_stats, 0, stats_size);
507
508
386
        ws = jbig2_word_stream_buf_new(ctx, segment_data + offset, segment->data_length - offset);
509
386
        if (ws == NULL) {
510
1
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate word stream when handling refinement region");
511
1
            goto cleanup;
512
1
        }
513
514
385
        as = jbig2_arith_new(ctx, ws);
515
385
        if (as == NULL) {
516
2
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate arithmetic coding state when handling refinement region");
517
2
            goto cleanup;
518
2
        }
519
520
383
        code = jbig2_decode_refinement_region(ctx, segment, &params, as, image, GR_stats);
521
383
        if (code < 0) {
522
3
            jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode refinement region");
523
3
            goto cleanup;
524
3
        }
525
526
380
        if ((segment->flags & 63) == 40) {
527
            /* intermediate region. save the result for later */
528
37
            segment->result = jbig2_image_reference(ctx, image);
529
343
        } else {
530
            /* immediate region. composite onto the page */
531
343
            jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number,
532
343
                        "composing %dx%d decoded refinement region onto page at (%d, %d)", rsi.width, rsi.height, rsi.x, rsi.y);
533
343
            code = jbig2_page_add_result(ctx, &ctx->pages[ctx->current_page], image, rsi.x, rsi.y, rsi.op);
534
343
            if (code < 0) {
535
25
                jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "unable to add refinement region to page");
536
25
                goto cleanup;
537
25
            }
538
343
        }
539
540
393
cleanup:
541
393
        jbig2_image_release(ctx, image);
542
393
        jbig2_image_release(ctx, params.GRREFERENCE);
543
393
        jbig2_free(ctx->allocator, as);
544
393
        jbig2_word_stream_buf_free(ctx, ws);
545
393
        jbig2_free(ctx->allocator, GR_stats);
546
393
    }
547
548
0
    return code;
549
380
}