blob: 6002481e242cfad7df696a2f4bd8b934a8fdbdfd [file] [log] [blame]
Guido Vollbeding1e247ac1998-03-28 00:00:00 +00001/*
2 * jdarith.c
3 *
DRC5de454b2014-05-18 19:04:03 +00004 * This file was part of the Independent JPEG Group's software:
Alex Naidis6eb7d372016-10-16 23:10:08 +02005 * Developed 1997-2015 by Guido Vollbeding.
DRCac30a1b2015-06-25 03:44:36 +00006 * libjpeg-turbo Modifications:
Leon Scroggins III3993b372018-07-16 10:43:45 -04007 * Copyright (C) 2015-2018, D. R. Commander.
Alex Naidis6eb7d372016-10-16 23:10:08 +02008 * For conditions of distribution and use, see the accompanying README.ijg
9 * file.
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000010 *
Leon Scroggins III3993b372018-07-16 10:43:45 -040011 * This file contains portable arithmetic entropy encoding routines for JPEG
12 * (implementing Recommendation ITU-T T.81 | ISO/IEC 10918-1).
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000013 *
14 * Both sequential and progressive modes are supported in this single module.
15 *
16 * Suspension is not currently supported in this module.
Leon Scroggins III3993b372018-07-16 10:43:45 -040017 *
18 * NOTE: All referenced figures are from
19 * Recommendation ITU-T T.81 (1992) | ISO/IEC 10918-1:1994.
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000020 */
21
22#define JPEG_INTERNALS
23#include "jinclude.h"
24#include "jpeglib.h"
25
26
Leon Scroggins III3993b372018-07-16 10:43:45 -040027#define NEG_1 ((unsigned int)-1)
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -050028
29
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000030/* Expanded entropy decoder object for arithmetic decoding. */
31
32typedef struct {
33 struct jpeg_entropy_decoder pub; /* public fields */
34
Alex Naidis6eb7d372016-10-16 23:10:08 +020035 JLONG c; /* C register, base of coding interval + input bit buffer */
36 JLONG a; /* A register, normalized size of coding interval */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000037 int ct; /* bit shift counter, # of bits left in bit buffer part of C */
38 /* init: ct = -16 */
39 /* run: ct = 0..7 */
40 /* error: ct = -1 */
41 int last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each component */
42 int dc_context[MAX_COMPS_IN_SCAN]; /* context index for DC conditioning */
43
DRCe5eaf372014-05-09 18:00:32 +000044 unsigned int restarts_to_go; /* MCUs left in this restart interval */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000045
46 /* Pointers to statistics areas (these workspaces have image lifespan) */
Alex Naidis6eb7d372016-10-16 23:10:08 +020047 unsigned char *dc_stats[NUM_ARITH_TBLS];
48 unsigned char *ac_stats[NUM_ARITH_TBLS];
Guido Vollbeding989630f2010-01-10 00:00:00 +000049
50 /* Statistics bin for coding with fixed probability 0.5 */
51 unsigned char fixed_bin[4];
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000052} arith_entropy_decoder;
53
Alex Naidis6eb7d372016-10-16 23:10:08 +020054typedef arith_entropy_decoder *arith_entropy_ptr;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000055
56/* The following two definitions specify the allocation chunk size
57 * for the statistics area.
58 * According to sections F.1.4.4.1.3 and F.1.4.4.2, we need at least
59 * 49 statistics bins for DC, and 245 statistics bins for AC coding.
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000060 *
61 * We use a compact representation with 1 byte per statistics bin,
62 * thus the numbers directly represent byte sizes.
63 * This 1 byte per statistics bin contains the meaning of the MPS
64 * (more probable symbol) in the highest bit (mask 0x80), and the
65 * index into the probability estimation state machine table
66 * in the lower bits (mask 0x7F).
67 */
68
Leon Scroggins III3993b372018-07-16 10:43:45 -040069#define DC_STAT_BINS 64
70#define AC_STAT_BINS 256
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000071
72
73LOCAL(int)
Leon Scroggins III3993b372018-07-16 10:43:45 -040074get_byte(j_decompress_ptr cinfo)
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000075/* Read next input byte; we do not support suspension in this module. */
76{
Alex Naidis6eb7d372016-10-16 23:10:08 +020077 struct jpeg_source_mgr *src = cinfo->src;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000078
79 if (src->bytes_in_buffer == 0)
Leon Scroggins III3993b372018-07-16 10:43:45 -040080 if (!(*src->fill_input_buffer) (cinfo))
Guido Vollbeding1e247ac1998-03-28 00:00:00 +000081 ERREXIT(cinfo, JERR_CANT_SUSPEND);
82 src->bytes_in_buffer--;
83 return GETJOCTET(*src->next_input_byte++);
84}
85
86
87/*
88 * The core arithmetic decoding routine (common in JPEG and JBIG).
89 * This needs to go as fast as possible.
90 * Machine-dependent optimization facilities
91 * are not utilized in this portable implementation.
92 * However, this code should be fairly efficient and
93 * may be a good base for further optimizations anyway.
94 *
95 * Return value is 0 or 1 (binary decision).
96 *
97 * Note: I've changed the handling of the code base & bit
98 * buffer register C compared to other implementations
99 * based on the standards layout & procedures.
100 * While it also contains both the actual base of the
101 * coding interval (16 bits) and the next-bits buffer,
102 * the cut-point between these two parts is floating
103 * (instead of fixed) with the bit shift counter CT.
104 * Thus, we also need only one (variable instead of
105 * fixed size) shift for the LPS/MPS decision, and
Alex Naidis6eb7d372016-10-16 23:10:08 +0200106 * we can do away with any renormalization update
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000107 * of C (except for new data insertion, of course).
108 *
109 * I've also introduced a new scheme for accessing
110 * the probability estimation state machine table,
111 * derived from Markus Kuhn's JBIG implementation.
112 */
113
114LOCAL(int)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400115arith_decode(j_decompress_ptr cinfo, unsigned char *st)
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000116{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400117 register arith_entropy_ptr e = (arith_entropy_ptr)cinfo->entropy;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000118 register unsigned char nl, nm;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200119 register JLONG qe, temp;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000120 register int sv, data;
121
122 /* Renormalization & data input per section D.2.6 */
123 while (e->a < 0x8000L) {
124 if (--e->ct < 0) {
125 /* Need to fetch next data byte */
126 if (cinfo->unread_marker)
DRCe5eaf372014-05-09 18:00:32 +0000127 data = 0; /* stuff zero data */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000128 else {
DRCe5eaf372014-05-09 18:00:32 +0000129 data = get_byte(cinfo); /* read next input byte */
130 if (data == 0xFF) { /* zero stuff or marker code */
131 do data = get_byte(cinfo);
132 while (data == 0xFF); /* swallow extra 0xFF bytes */
133 if (data == 0)
134 data = 0xFF; /* discard stuffed zero byte */
135 else {
136 /* Note: Different from the Huffman decoder, hitting
137 * a marker while processing the compressed data
138 * segment is legal in arithmetic coding.
139 * The convention is to supply zero data
140 * then until decoding is complete.
141 */
142 cinfo->unread_marker = data;
143 data = 0;
144 }
145 }
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000146 }
147 e->c = (e->c << 8) | data; /* insert data into C register */
DRCe5eaf372014-05-09 18:00:32 +0000148 if ((e->ct += 8) < 0) /* update bit shift counter */
149 /* Need more initial bytes */
150 if (++e->ct == 0)
151 /* Got 2 initial bytes -> re-init A and exit loop */
152 e->a = 0x8000L; /* => e->a = 0x10000L after loop exit */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000153 }
154 e->a <<= 1;
155 }
156
157 /* Fetch values from our compact representation of Table D.2:
158 * Qe values and probability estimation state machine
159 */
160 sv = *st;
DRCe5eaf372014-05-09 18:00:32 +0000161 qe = jpeg_aritab[sv & 0x7F]; /* => Qe_Value */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400162 nl = qe & 0xFF; qe >>= 8; /* Next_Index_LPS + Switch_MPS */
163 nm = qe & 0xFF; qe >>= 8; /* Next_Index_MPS */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000164
165 /* Decode & estimation procedures per sections D.2.4 & D.2.5 */
166 temp = e->a - qe;
167 e->a = temp;
168 temp <<= e->ct;
169 if (e->c >= temp) {
170 e->c -= temp;
171 /* Conditional LPS (less probable symbol) exchange */
172 if (e->a < qe) {
173 e->a = qe;
DRCe5eaf372014-05-09 18:00:32 +0000174 *st = (sv & 0x80) ^ nm; /* Estimate_after_MPS */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000175 } else {
176 e->a = qe;
DRCe5eaf372014-05-09 18:00:32 +0000177 *st = (sv & 0x80) ^ nl; /* Estimate_after_LPS */
178 sv ^= 0x80; /* Exchange LPS/MPS */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000179 }
180 } else if (e->a < 0x8000L) {
181 /* Conditional MPS (more probable symbol) exchange */
182 if (e->a < qe) {
DRCe5eaf372014-05-09 18:00:32 +0000183 *st = (sv & 0x80) ^ nl; /* Estimate_after_LPS */
184 sv ^= 0x80; /* Exchange LPS/MPS */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000185 } else {
DRCe5eaf372014-05-09 18:00:32 +0000186 *st = (sv & 0x80) ^ nm; /* Estimate_after_MPS */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000187 }
188 }
189
190 return sv >> 7;
191}
192
193
194/*
195 * Check for a restart marker & resynchronize decoder.
196 */
197
198LOCAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400199process_restart(j_decompress_ptr cinfo)
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000200{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400201 arith_entropy_ptr entropy = (arith_entropy_ptr)cinfo->entropy;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000202 int ci;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200203 jpeg_component_info *compptr;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000204
205 /* Advance past the RSTn marker */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400206 if (!(*cinfo->marker->read_restart_marker) (cinfo))
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000207 ERREXIT(cinfo, JERR_CANT_SUSPEND);
208
Guido Vollbeding989630f2010-01-10 00:00:00 +0000209 /* Re-initialize statistics areas */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000210 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
211 compptr = cinfo->cur_comp_info[ci];
Alex Naidis6eb7d372016-10-16 23:10:08 +0200212 if (!cinfo->progressive_mode || (cinfo->Ss == 0 && cinfo->Ah == 0)) {
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000213 MEMZERO(entropy->dc_stats[compptr->dc_tbl_no], DC_STAT_BINS);
214 /* Reset DC predictions to 0 */
215 entropy->last_dc_val[ci] = 0;
216 entropy->dc_context[ci] = 0;
217 }
Alex Naidis6eb7d372016-10-16 23:10:08 +0200218 if (!cinfo->progressive_mode || cinfo->Ss) {
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000219 MEMZERO(entropy->ac_stats[compptr->ac_tbl_no], AC_STAT_BINS);
220 }
221 }
222
223 /* Reset arithmetic decoding variables */
224 entropy->c = 0;
225 entropy->a = 0;
DRCe5eaf372014-05-09 18:00:32 +0000226 entropy->ct = -16; /* force reading 2 initial bytes to fill C */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000227
228 /* Reset restart counter */
229 entropy->restarts_to_go = cinfo->restart_interval;
230}
231
232
233/*
234 * Arithmetic MCU decoding.
235 * Each of these routines decodes and returns one MCU's worth of
236 * arithmetic-compressed coefficients.
237 * The coefficients are reordered from zigzag order into natural array order,
238 * but are not dequantized.
239 *
240 * The i'th block of the MCU is stored into the block pointed to by
241 * MCU_data[i]. WE ASSUME THIS AREA IS INITIALLY ZEROED BY THE CALLER.
242 */
243
244/*
245 * MCU decoding for DC initial scan (either spectral selection,
246 * or first pass of successive approximation).
247 */
248
249METHODDEF(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400250decode_mcu_DC_first(j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000251{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400252 arith_entropy_ptr entropy = (arith_entropy_ptr)cinfo->entropy;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000253 JBLOCKROW block;
254 unsigned char *st;
255 int blkn, ci, tbl, sign;
256 int v, m;
257
258 /* Process restart marker if needed */
259 if (cinfo->restart_interval) {
260 if (entropy->restarts_to_go == 0)
261 process_restart(cinfo);
262 entropy->restarts_to_go--;
263 }
264
DRCe5eaf372014-05-09 18:00:32 +0000265 if (entropy->ct == -1) return TRUE; /* if error do nothing */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000266
267 /* Outer loop handles each block in the MCU */
268
269 for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
270 block = MCU_data[blkn];
271 ci = cinfo->MCU_membership[blkn];
272 tbl = cinfo->cur_comp_info[ci]->dc_tbl_no;
273
274 /* Sections F.2.4.1 & F.1.4.4.1: Decoding of DC coefficients */
275
276 /* Table F.4: Point to statistics bin S0 for DC coefficient coding */
277 st = entropy->dc_stats[tbl] + entropy->dc_context[ci];
278
279 /* Figure F.19: Decode_DC_DIFF */
280 if (arith_decode(cinfo, st) == 0)
281 entropy->dc_context[ci] = 0;
282 else {
283 /* Figure F.21: Decoding nonzero value v */
284 /* Figure F.22: Decoding the sign of v */
285 sign = arith_decode(cinfo, st + 1);
Leon Scroggins III3993b372018-07-16 10:43:45 -0400286 st += 2; st += sign;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000287 /* Figure F.23: Decoding the magnitude category of v */
288 if ((m = arith_decode(cinfo, st)) != 0) {
DRCe5eaf372014-05-09 18:00:32 +0000289 st = entropy->dc_stats[tbl] + 20; /* Table F.4: X1 = 20 */
290 while (arith_decode(cinfo, st)) {
291 if ((m <<= 1) == 0x8000) {
292 WARNMS(cinfo, JWRN_ARITH_BAD_CODE);
293 entropy->ct = -1; /* magnitude overflow */
294 return TRUE;
295 }
296 st += 1;
297 }
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000298 }
299 /* Section F.1.4.4.1.2: Establish dc_context conditioning category */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400300 if (m < (int)((1L << cinfo->arith_dc_L[tbl]) >> 1))
DRCe5eaf372014-05-09 18:00:32 +0000301 entropy->dc_context[ci] = 0; /* zero diff category */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400302 else if (m > (int)((1L << cinfo->arith_dc_U[tbl]) >> 1))
DRCe5eaf372014-05-09 18:00:32 +0000303 entropy->dc_context[ci] = 12 + (sign * 4); /* large diff category */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000304 else
DRCe5eaf372014-05-09 18:00:32 +0000305 entropy->dc_context[ci] = 4 + (sign * 4); /* small diff category */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000306 v = m;
307 /* Figure F.24: Decoding the magnitude bit pattern of v */
308 st += 14;
309 while (m >>= 1)
DRCe5eaf372014-05-09 18:00:32 +0000310 if (arith_decode(cinfo, st)) v |= m;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400311 v += 1; if (sign) v = -v;
312 entropy->last_dc_val[ci] = (entropy->last_dc_val[ci] + v) & 0xffff;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000313 }
314
315 /* Scale and output the DC coefficient (assumes jpeg_natural_order[0]=0) */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400316 (*block)[0] = (JCOEF)LEFT_SHIFT(entropy->last_dc_val[ci], cinfo->Al);
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000317 }
318
319 return TRUE;
320}
321
322
323/*
324 * MCU decoding for AC initial scan (either spectral selection,
325 * or first pass of successive approximation).
326 */
327
328METHODDEF(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400329decode_mcu_AC_first(j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000330{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400331 arith_entropy_ptr entropy = (arith_entropy_ptr)cinfo->entropy;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000332 JBLOCKROW block;
333 unsigned char *st;
334 int tbl, sign, k;
335 int v, m;
336
337 /* Process restart marker if needed */
338 if (cinfo->restart_interval) {
339 if (entropy->restarts_to_go == 0)
340 process_restart(cinfo);
341 entropy->restarts_to_go--;
342 }
343
DRCe5eaf372014-05-09 18:00:32 +0000344 if (entropy->ct == -1) return TRUE; /* if error do nothing */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000345
346 /* There is always only one block per MCU */
347 block = MCU_data[0];
348 tbl = cinfo->cur_comp_info[0]->ac_tbl_no;
349
350 /* Sections F.2.4.2 & F.1.4.4.2: Decoding of AC coefficients */
351
352 /* Figure F.20: Decode_AC_coefficients */
353 for (k = cinfo->Ss; k <= cinfo->Se; k++) {
354 st = entropy->ac_stats[tbl] + 3 * (k - 1);
DRCe5eaf372014-05-09 18:00:32 +0000355 if (arith_decode(cinfo, st)) break; /* EOB flag */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000356 while (arith_decode(cinfo, st + 1) == 0) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400357 st += 3; k++;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000358 if (k > cinfo->Se) {
DRCe5eaf372014-05-09 18:00:32 +0000359 WARNMS(cinfo, JWRN_ARITH_BAD_CODE);
360 entropy->ct = -1; /* spectral overflow */
361 return TRUE;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000362 }
363 }
364 /* Figure F.21: Decoding nonzero value v */
365 /* Figure F.22: Decoding the sign of v */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000366 sign = arith_decode(cinfo, entropy->fixed_bin);
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000367 st += 2;
368 /* Figure F.23: Decoding the magnitude category of v */
369 if ((m = arith_decode(cinfo, st)) != 0) {
370 if (arith_decode(cinfo, st)) {
DRCe5eaf372014-05-09 18:00:32 +0000371 m <<= 1;
372 st = entropy->ac_stats[tbl] +
373 (k <= cinfo->arith_ac_K[tbl] ? 189 : 217);
374 while (arith_decode(cinfo, st)) {
375 if ((m <<= 1) == 0x8000) {
376 WARNMS(cinfo, JWRN_ARITH_BAD_CODE);
377 entropy->ct = -1; /* magnitude overflow */
378 return TRUE;
379 }
380 st += 1;
381 }
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000382 }
383 }
384 v = m;
385 /* Figure F.24: Decoding the magnitude bit pattern of v */
386 st += 14;
387 while (m >>= 1)
388 if (arith_decode(cinfo, st)) v |= m;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400389 v += 1; if (sign) v = -v;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000390 /* Scale and output coefficient in natural (dezigzagged) order */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400391 (*block)[jpeg_natural_order[k]] = (JCOEF)((unsigned)v << cinfo->Al);
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000392 }
393
394 return TRUE;
395}
396
397
398/*
399 * MCU decoding for DC successive approximation refinement scan.
400 */
401
402METHODDEF(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400403decode_mcu_DC_refine(j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000404{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400405 arith_entropy_ptr entropy = (arith_entropy_ptr)cinfo->entropy;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000406 unsigned char *st;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000407 int p1, blkn;
408
409 /* Process restart marker if needed */
410 if (cinfo->restart_interval) {
411 if (entropy->restarts_to_go == 0)
412 process_restart(cinfo);
413 entropy->restarts_to_go--;
414 }
415
DRCe5eaf372014-05-09 18:00:32 +0000416 st = entropy->fixed_bin; /* use fixed probability estimation */
417 p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000418
419 /* Outer loop handles each block in the MCU */
420
421 for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000422 /* Encoded data is simply the next bit of the two's-complement DC value */
423 if (arith_decode(cinfo, st))
424 MCU_data[blkn][0][0] |= p1;
425 }
426
427 return TRUE;
428}
429
430
431/*
432 * MCU decoding for AC successive approximation refinement scan.
433 */
434
435METHODDEF(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400436decode_mcu_AC_refine(j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000437{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400438 arith_entropy_ptr entropy = (arith_entropy_ptr)cinfo->entropy;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000439 JBLOCKROW block;
440 JCOEFPTR thiscoef;
441 unsigned char *st;
442 int tbl, k, kex;
443 int p1, m1;
444
445 /* Process restart marker if needed */
446 if (cinfo->restart_interval) {
447 if (entropy->restarts_to_go == 0)
448 process_restart(cinfo);
449 entropy->restarts_to_go--;
450 }
451
DRCe5eaf372014-05-09 18:00:32 +0000452 if (entropy->ct == -1) return TRUE; /* if error do nothing */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000453
454 /* There is always only one block per MCU */
455 block = MCU_data[0];
456 tbl = cinfo->cur_comp_info[0]->ac_tbl_no;
457
DRCe5eaf372014-05-09 18:00:32 +0000458 p1 = 1 << cinfo->Al; /* 1 in the bit position being coded */
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -0500459 m1 = (NEG_1) << cinfo->Al; /* -1 in the bit position being coded */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000460
461 /* Establish EOBx (previous stage end-of-block) index */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000462 for (kex = cinfo->Se; kex > 0; kex--)
DRC66f97e62010-11-23 05:49:54 +0000463 if ((*block)[jpeg_natural_order[kex]]) break;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000464
465 for (k = cinfo->Ss; k <= cinfo->Se; k++) {
466 st = entropy->ac_stats[tbl] + 3 * (k - 1);
Guido Vollbeding989630f2010-01-10 00:00:00 +0000467 if (k > kex)
DRCe5eaf372014-05-09 18:00:32 +0000468 if (arith_decode(cinfo, st)) break; /* EOB flag */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000469 for (;;) {
DRC66f97e62010-11-23 05:49:54 +0000470 thiscoef = *block + jpeg_natural_order[k];
DRCe5eaf372014-05-09 18:00:32 +0000471 if (*thiscoef) { /* previously nonzero coef */
472 if (arith_decode(cinfo, st + 2)) {
473 if (*thiscoef < 0)
474 *thiscoef += m1;
475 else
476 *thiscoef += p1;
477 }
478 break;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000479 }
DRCe5eaf372014-05-09 18:00:32 +0000480 if (arith_decode(cinfo, st + 1)) { /* newly nonzero coef */
481 if (arith_decode(cinfo, entropy->fixed_bin))
482 *thiscoef = m1;
483 else
484 *thiscoef = p1;
485 break;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000486 }
Leon Scroggins III3993b372018-07-16 10:43:45 -0400487 st += 3; k++;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000488 if (k > cinfo->Se) {
DRCe5eaf372014-05-09 18:00:32 +0000489 WARNMS(cinfo, JWRN_ARITH_BAD_CODE);
490 entropy->ct = -1; /* spectral overflow */
491 return TRUE;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000492 }
493 }
494 }
495
496 return TRUE;
497}
498
499
500/*
501 * Decode one MCU's worth of arithmetic-compressed coefficients.
502 */
503
504METHODDEF(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400505decode_mcu(j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000506{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400507 arith_entropy_ptr entropy = (arith_entropy_ptr)cinfo->entropy;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200508 jpeg_component_info *compptr;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000509 JBLOCKROW block;
510 unsigned char *st;
511 int blkn, ci, tbl, sign, k;
512 int v, m;
513
514 /* Process restart marker if needed */
515 if (cinfo->restart_interval) {
516 if (entropy->restarts_to_go == 0)
517 process_restart(cinfo);
518 entropy->restarts_to_go--;
519 }
520
DRCe5eaf372014-05-09 18:00:32 +0000521 if (entropy->ct == -1) return TRUE; /* if error do nothing */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000522
523 /* Outer loop handles each block in the MCU */
524
525 for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
DRCac30a1b2015-06-25 03:44:36 +0000526 block = MCU_data ? MCU_data[blkn] : NULL;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000527 ci = cinfo->MCU_membership[blkn];
528 compptr = cinfo->cur_comp_info[ci];
529
530 /* Sections F.2.4.1 & F.1.4.4.1: Decoding of DC coefficients */
531
532 tbl = compptr->dc_tbl_no;
533
534 /* Table F.4: Point to statistics bin S0 for DC coefficient coding */
535 st = entropy->dc_stats[tbl] + entropy->dc_context[ci];
536
537 /* Figure F.19: Decode_DC_DIFF */
538 if (arith_decode(cinfo, st) == 0)
539 entropy->dc_context[ci] = 0;
540 else {
541 /* Figure F.21: Decoding nonzero value v */
542 /* Figure F.22: Decoding the sign of v */
543 sign = arith_decode(cinfo, st + 1);
Leon Scroggins III3993b372018-07-16 10:43:45 -0400544 st += 2; st += sign;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000545 /* Figure F.23: Decoding the magnitude category of v */
546 if ((m = arith_decode(cinfo, st)) != 0) {
DRCe5eaf372014-05-09 18:00:32 +0000547 st = entropy->dc_stats[tbl] + 20; /* Table F.4: X1 = 20 */
548 while (arith_decode(cinfo, st)) {
549 if ((m <<= 1) == 0x8000) {
550 WARNMS(cinfo, JWRN_ARITH_BAD_CODE);
551 entropy->ct = -1; /* magnitude overflow */
552 return TRUE;
553 }
554 st += 1;
555 }
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000556 }
557 /* Section F.1.4.4.1.2: Establish dc_context conditioning category */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400558 if (m < (int)((1L << cinfo->arith_dc_L[tbl]) >> 1))
DRCe5eaf372014-05-09 18:00:32 +0000559 entropy->dc_context[ci] = 0; /* zero diff category */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400560 else if (m > (int)((1L << cinfo->arith_dc_U[tbl]) >> 1))
DRCe5eaf372014-05-09 18:00:32 +0000561 entropy->dc_context[ci] = 12 + (sign * 4); /* large diff category */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000562 else
DRCe5eaf372014-05-09 18:00:32 +0000563 entropy->dc_context[ci] = 4 + (sign * 4); /* small diff category */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000564 v = m;
565 /* Figure F.24: Decoding the magnitude bit pattern of v */
566 st += 14;
567 while (m >>= 1)
DRCe5eaf372014-05-09 18:00:32 +0000568 if (arith_decode(cinfo, st)) v |= m;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400569 v += 1; if (sign) v = -v;
570 entropy->last_dc_val[ci] = (entropy->last_dc_val[ci] + v) & 0xffff;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000571 }
572
DRCac30a1b2015-06-25 03:44:36 +0000573 if (block)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400574 (*block)[0] = (JCOEF)entropy->last_dc_val[ci];
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000575
576 /* Sections F.2.4.2 & F.1.4.4.2: Decoding of AC coefficients */
577
578 tbl = compptr->ac_tbl_no;
579
580 /* Figure F.20: Decode_AC_coefficients */
DRC66f97e62010-11-23 05:49:54 +0000581 for (k = 1; k <= DCTSIZE2 - 1; k++) {
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000582 st = entropy->ac_stats[tbl] + 3 * (k - 1);
DRCe5eaf372014-05-09 18:00:32 +0000583 if (arith_decode(cinfo, st)) break; /* EOB flag */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000584 while (arith_decode(cinfo, st + 1) == 0) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400585 st += 3; k++;
DRCe5eaf372014-05-09 18:00:32 +0000586 if (k > DCTSIZE2 - 1) {
587 WARNMS(cinfo, JWRN_ARITH_BAD_CODE);
588 entropy->ct = -1; /* spectral overflow */
589 return TRUE;
590 }
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000591 }
592 /* Figure F.21: Decoding nonzero value v */
593 /* Figure F.22: Decoding the sign of v */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000594 sign = arith_decode(cinfo, entropy->fixed_bin);
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000595 st += 2;
596 /* Figure F.23: Decoding the magnitude category of v */
597 if ((m = arith_decode(cinfo, st)) != 0) {
DRCe5eaf372014-05-09 18:00:32 +0000598 if (arith_decode(cinfo, st)) {
599 m <<= 1;
600 st = entropy->ac_stats[tbl] +
601 (k <= cinfo->arith_ac_K[tbl] ? 189 : 217);
602 while (arith_decode(cinfo, st)) {
603 if ((m <<= 1) == 0x8000) {
604 WARNMS(cinfo, JWRN_ARITH_BAD_CODE);
605 entropy->ct = -1; /* magnitude overflow */
606 return TRUE;
607 }
608 st += 1;
609 }
610 }
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000611 }
612 v = m;
613 /* Figure F.24: Decoding the magnitude bit pattern of v */
614 st += 14;
615 while (m >>= 1)
DRCe5eaf372014-05-09 18:00:32 +0000616 if (arith_decode(cinfo, st)) v |= m;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400617 v += 1; if (sign) v = -v;
DRCac30a1b2015-06-25 03:44:36 +0000618 if (block)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400619 (*block)[jpeg_natural_order[k]] = (JCOEF)v;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000620 }
621 }
622
623 return TRUE;
624}
625
626
627/*
628 * Initialize for an arithmetic-compressed scan.
629 */
630
631METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400632start_pass(j_decompress_ptr cinfo)
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000633{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400634 arith_entropy_ptr entropy = (arith_entropy_ptr)cinfo->entropy;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000635 int ci, tbl;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200636 jpeg_component_info *compptr;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000637
638 if (cinfo->progressive_mode) {
639 /* Validate progressive scan parameters */
640 if (cinfo->Ss == 0) {
641 if (cinfo->Se != 0)
DRCe5eaf372014-05-09 18:00:32 +0000642 goto bad;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000643 } else {
644 /* need not check Ss/Se < 0 since they came from unsigned bytes */
DRC66f97e62010-11-23 05:49:54 +0000645 if (cinfo->Se < cinfo->Ss || cinfo->Se > DCTSIZE2 - 1)
DRCe5eaf372014-05-09 18:00:32 +0000646 goto bad;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000647 /* AC scans may have only one component */
648 if (cinfo->comps_in_scan != 1)
DRCe5eaf372014-05-09 18:00:32 +0000649 goto bad;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000650 }
651 if (cinfo->Ah != 0) {
652 /* Successive approximation refinement scan: must have Al = Ah-1. */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400653 if (cinfo->Ah - 1 != cinfo->Al)
DRCe5eaf372014-05-09 18:00:32 +0000654 goto bad;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000655 }
DRCe5eaf372014-05-09 18:00:32 +0000656 if (cinfo->Al > 13) { /* need not check for < 0 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400657bad:
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000658 ERREXIT4(cinfo, JERR_BAD_PROGRESSION,
DRCe5eaf372014-05-09 18:00:32 +0000659 cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000660 }
661 /* Update progression status, and verify that scan order is legal.
662 * Note that inter-scan inconsistencies are treated as warnings
663 * not fatal errors ... not clear if this is right way to behave.
664 */
665 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
666 int coefi, cindex = cinfo->cur_comp_info[ci]->component_index;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400667 int *coef_bit_ptr = &cinfo->coef_bits[cindex][0];
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000668 if (cinfo->Ss && coef_bit_ptr[0] < 0) /* AC without prior DC scan */
DRCe5eaf372014-05-09 18:00:32 +0000669 WARNMS2(cinfo, JWRN_BOGUS_PROGRESSION, cindex, 0);
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000670 for (coefi = cinfo->Ss; coefi <= cinfo->Se; coefi++) {
DRCe5eaf372014-05-09 18:00:32 +0000671 int expected = (coef_bit_ptr[coefi] < 0) ? 0 : coef_bit_ptr[coefi];
672 if (cinfo->Ah != expected)
673 WARNMS2(cinfo, JWRN_BOGUS_PROGRESSION, cindex, coefi);
674 coef_bit_ptr[coefi] = cinfo->Al;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000675 }
676 }
677 /* Select MCU decoding routine */
678 if (cinfo->Ah == 0) {
679 if (cinfo->Ss == 0)
DRCe5eaf372014-05-09 18:00:32 +0000680 entropy->pub.decode_mcu = decode_mcu_DC_first;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000681 else
DRCe5eaf372014-05-09 18:00:32 +0000682 entropy->pub.decode_mcu = decode_mcu_AC_first;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000683 } else {
684 if (cinfo->Ss == 0)
DRCe5eaf372014-05-09 18:00:32 +0000685 entropy->pub.decode_mcu = decode_mcu_DC_refine;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000686 else
DRCe5eaf372014-05-09 18:00:32 +0000687 entropy->pub.decode_mcu = decode_mcu_AC_refine;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000688 }
689 } else {
690 /* Check that the scan parameters Ss, Se, Ah/Al are OK for sequential JPEG.
Guido Vollbeding989630f2010-01-10 00:00:00 +0000691 * This ought to be an error condition, but we make it a warning.
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000692 */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000693 if (cinfo->Ss != 0 || cinfo->Ah != 0 || cinfo->Al != 0 ||
DRCe5eaf372014-05-09 18:00:32 +0000694 (cinfo->Se < DCTSIZE2 && cinfo->Se != DCTSIZE2 - 1))
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000695 WARNMS(cinfo, JWRN_NOT_SEQUENTIAL);
696 /* Select MCU decoding routine */
697 entropy->pub.decode_mcu = decode_mcu;
698 }
699
Guido Vollbeding989630f2010-01-10 00:00:00 +0000700 /* Allocate & initialize requested statistics areas */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000701 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
702 compptr = cinfo->cur_comp_info[ci];
Alex Naidis6eb7d372016-10-16 23:10:08 +0200703 if (!cinfo->progressive_mode || (cinfo->Ss == 0 && cinfo->Ah == 0)) {
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000704 tbl = compptr->dc_tbl_no;
705 if (tbl < 0 || tbl >= NUM_ARITH_TBLS)
DRCe5eaf372014-05-09 18:00:32 +0000706 ERREXIT1(cinfo, JERR_NO_ARITH_TABLE, tbl);
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000707 if (entropy->dc_stats[tbl] == NULL)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400708 entropy->dc_stats[tbl] = (unsigned char *)(*cinfo->mem->alloc_small)
709 ((j_common_ptr)cinfo, JPOOL_IMAGE, DC_STAT_BINS);
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000710 MEMZERO(entropy->dc_stats[tbl], DC_STAT_BINS);
711 /* Initialize DC predictions to 0 */
712 entropy->last_dc_val[ci] = 0;
713 entropy->dc_context[ci] = 0;
714 }
Alex Naidis6eb7d372016-10-16 23:10:08 +0200715 if (!cinfo->progressive_mode || cinfo->Ss) {
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000716 tbl = compptr->ac_tbl_no;
717 if (tbl < 0 || tbl >= NUM_ARITH_TBLS)
DRCe5eaf372014-05-09 18:00:32 +0000718 ERREXIT1(cinfo, JERR_NO_ARITH_TABLE, tbl);
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000719 if (entropy->ac_stats[tbl] == NULL)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400720 entropy->ac_stats[tbl] = (unsigned char *)(*cinfo->mem->alloc_small)
721 ((j_common_ptr)cinfo, JPOOL_IMAGE, AC_STAT_BINS);
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000722 MEMZERO(entropy->ac_stats[tbl], AC_STAT_BINS);
723 }
724 }
725
726 /* Initialize arithmetic decoding variables */
727 entropy->c = 0;
728 entropy->a = 0;
DRCe5eaf372014-05-09 18:00:32 +0000729 entropy->ct = -16; /* force reading 2 initial bytes to fill C */
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000730
731 /* Initialize restart counter */
732 entropy->restarts_to_go = cinfo->restart_interval;
733}
734
735
736/*
737 * Module initialization routine for arithmetic entropy decoding.
738 */
739
740GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400741jinit_arith_decoder(j_decompress_ptr cinfo)
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000742{
743 arith_entropy_ptr entropy;
744 int i;
745
746 entropy = (arith_entropy_ptr)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400747 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000748 sizeof(arith_entropy_decoder));
Leon Scroggins III3993b372018-07-16 10:43:45 -0400749 cinfo->entropy = (struct jpeg_entropy_decoder *)entropy;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000750 entropy->pub.start_pass = start_pass;
751
752 /* Mark tables unallocated */
753 for (i = 0; i < NUM_ARITH_TBLS; i++) {
754 entropy->dc_stats[i] = NULL;
755 entropy->ac_stats[i] = NULL;
756 }
757
Guido Vollbeding989630f2010-01-10 00:00:00 +0000758 /* Initialize index for fixed probability estimation */
759 entropy->fixed_bin[0] = 113;
760
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000761 if (cinfo->progressive_mode) {
762 /* Create progression status table */
763 int *coef_bit_ptr, ci;
764 cinfo->coef_bits = (int (*)[DCTSIZE2])
Leon Scroggins III3993b372018-07-16 10:43:45 -0400765 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
766 cinfo->num_components * DCTSIZE2 *
767 sizeof(int));
768 coef_bit_ptr = &cinfo->coef_bits[0][0];
DRCe5eaf372014-05-09 18:00:32 +0000769 for (ci = 0; ci < cinfo->num_components; ci++)
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000770 for (i = 0; i < DCTSIZE2; i++)
DRCe5eaf372014-05-09 18:00:32 +0000771 *coef_bit_ptr++ = -1;
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000772 }
773}