blob: a1128178b0a9bf753d30b5095e9bddf10520e0dc [file] [log] [blame]
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001/*
2 * jdhuff.c
3 *
DRCa73e8702012-12-31 02:52:30 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00005 * Copyright (C) 1991-1997, Thomas G. Lane.
DRCa6ef2822013-09-28 03:23:49 +00006 * libjpeg-turbo Modifications:
DRCd3a3a732019-04-10 14:28:47 -05007 * Copyright (C) 2009-2011, 2016, 2018-2019, D. R. Commander.
DRC7e3acc02015-10-10 10:25:46 -05008 * For conditions of distribution and use, see the accompanying README.ijg
9 * file.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000010 *
11 * This file contains Huffman entropy decoding routines.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000012 *
13 * Much of the complexity here has to do with supporting input suspension.
14 * If the data source module demands suspension, we want to be able to back
15 * up to the start of the current MCU. To do this, we copy state variables
Thomas G. Lanebc79e061995-08-02 00:00:00 +000016 * into local working storage, and update them back to the permanent
17 * storage only upon successful completion of an MCU.
DRCa6289522018-07-24 18:36:51 -050018 *
19 * NOTE: All referenced figures are from
20 * Recommendation ITU-T T.81 (1992) | ISO/IEC 10918-1:1994.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000021 */
22
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000023#define JPEG_INTERNALS
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000024#include "jinclude.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000025#include "jpeglib.h"
DRCe5eaf372014-05-09 18:00:32 +000026#include "jdhuff.h" /* Declarations shared with jdphuff.c */
DRC36a6eec2010-10-08 08:05:44 +000027#include "jpegcomp.h"
DRCa1135062014-01-31 17:22:15 +000028#include "jstdhuff.c"
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000029
30
Thomas G. Lanebc79e061995-08-02 00:00:00 +000031/*
32 * Expanded entropy decoder object for Huffman decoding.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000033 *
34 * The savable_state subrecord contains fields that change within an MCU,
35 * but must not be updated permanently until we complete the MCU.
36 */
37
38typedef struct {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000039 int last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each component */
40} savable_state;
41
42/* This macro is to work around compilers with missing or broken
43 * structure assignment. You'll need to fix this code if you have
44 * such a compiler and you change MAX_COMPS_IN_SCAN.
45 */
46
47#ifndef NO_STRUCT_ASSIGN
DRC19c791c2018-03-08 10:55:20 -060048#define ASSIGN_STATE(dest, src) ((dest) = (src))
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000049#else
50#if MAX_COMPS_IN_SCAN == 4
DRC19c791c2018-03-08 10:55:20 -060051#define ASSIGN_STATE(dest, src) \
52 ((dest).last_dc_val[0] = (src).last_dc_val[0], \
53 (dest).last_dc_val[1] = (src).last_dc_val[1], \
54 (dest).last_dc_val[2] = (src).last_dc_val[2], \
55 (dest).last_dc_val[3] = (src).last_dc_val[3])
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000056#endif
57#endif
58
59
60typedef struct {
61 struct jpeg_entropy_decoder pub; /* public fields */
62
Thomas G. Lanebc79e061995-08-02 00:00:00 +000063 /* These fields are loaded into local variables at start of each MCU.
64 * In case of suspension, we exit WITHOUT updating them.
65 */
DRCe5eaf372014-05-09 18:00:32 +000066 bitread_perm_state bitstate; /* Bit buffer at start of MCU */
67 savable_state saved; /* Other state at start of MCU */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000068
69 /* These fields are NOT loaded into local working state. */
DRCe5eaf372014-05-09 18:00:32 +000070 unsigned int restarts_to_go; /* MCUs left in this restart interval */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000071
72 /* Pointers to derived tables (these workspaces have image lifespan) */
DRCbd498032016-02-19 08:53:33 -060073 d_derived_tbl *dc_derived_tbls[NUM_HUFF_TBLS];
74 d_derived_tbl *ac_derived_tbls[NUM_HUFF_TBLS];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000075
76 /* Precalculated info set up by start_pass for use in decode_mcu: */
77
78 /* Pointers to derived tables to be used for each block within an MCU */
DRCbd498032016-02-19 08:53:33 -060079 d_derived_tbl *dc_cur_tbls[D_MAX_BLOCKS_IN_MCU];
80 d_derived_tbl *ac_cur_tbls[D_MAX_BLOCKS_IN_MCU];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000081 /* Whether we care about the DC and AC coefficient values for each block */
82 boolean dc_needed[D_MAX_BLOCKS_IN_MCU];
83 boolean ac_needed[D_MAX_BLOCKS_IN_MCU];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000084} huff_entropy_decoder;
85
DRCbd498032016-02-19 08:53:33 -060086typedef huff_entropy_decoder *huff_entropy_ptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000087
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000088
89/*
90 * Initialize for a Huffman-compressed scan.
91 */
92
Thomas G. Lane489583f1996-02-07 00:00:00 +000093METHODDEF(void)
DRC19c791c2018-03-08 10:55:20 -060094start_pass_huff_decoder(j_decompress_ptr cinfo)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000095{
DRC19c791c2018-03-08 10:55:20 -060096 huff_entropy_ptr entropy = (huff_entropy_ptr)cinfo->entropy;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000097 int ci, blkn, dctbl, actbl;
DRC8e9cef22015-09-21 12:57:41 -050098 d_derived_tbl **pdtbl;
DRCbd498032016-02-19 08:53:33 -060099 jpeg_component_info *compptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000100
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000101 /* Check that the scan parameters Ss, Se, Ah/Al are OK for sequential JPEG.
102 * This ought to be an error condition, but we make it a warning because
103 * there are some baseline files out there with all zeroes in these bytes.
104 */
DRC19c791c2018-03-08 10:55:20 -0600105 if (cinfo->Ss != 0 || cinfo->Se != DCTSIZE2 - 1 ||
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000106 cinfo->Ah != 0 || cinfo->Al != 0)
107 WARNMS(cinfo, JWRN_NOT_SEQUENTIAL);
108
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000109 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
110 compptr = cinfo->cur_comp_info[ci];
111 dctbl = compptr->dc_tbl_no;
112 actbl = compptr->ac_tbl_no;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000113 /* Compute derived values for Huffman tables */
114 /* We may do this more than once for a table, but it's not expensive */
DRCa1dd3562016-09-08 21:29:58 -0500115 pdtbl = (d_derived_tbl **)(entropy->dc_derived_tbls) + dctbl;
DRC8e9cef22015-09-21 12:57:41 -0500116 jpeg_make_d_derived_tbl(cinfo, TRUE, dctbl, pdtbl);
DRCa1dd3562016-09-08 21:29:58 -0500117 pdtbl = (d_derived_tbl **)(entropy->ac_derived_tbls) + actbl;
DRC8e9cef22015-09-21 12:57:41 -0500118 jpeg_make_d_derived_tbl(cinfo, FALSE, actbl, pdtbl);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000119 /* Initialize DC predictions to 0 */
120 entropy->saved.last_dc_val[ci] = 0;
121 }
122
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000123 /* Precalculate decoding info for each block in an MCU of this scan */
124 for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
125 ci = cinfo->MCU_membership[blkn];
126 compptr = cinfo->cur_comp_info[ci];
127 /* Precalculate which table to use for each block */
128 entropy->dc_cur_tbls[blkn] = entropy->dc_derived_tbls[compptr->dc_tbl_no];
129 entropy->ac_cur_tbls[blkn] = entropy->ac_derived_tbls[compptr->ac_tbl_no];
130 /* Decide whether we really care about the coefficient values */
131 if (compptr->component_needed) {
132 entropy->dc_needed[blkn] = TRUE;
133 /* we don't need the ACs if producing a 1/8th-size image */
DRC49967cd2010-10-09 19:57:51 +0000134 entropy->ac_needed[blkn] = (compptr->_DCT_scaled_size > 1);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000135 } else {
136 entropy->dc_needed[blkn] = entropy->ac_needed[blkn] = FALSE;
137 }
138 }
139
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000140 /* Initialize bitread state variables */
141 entropy->bitstate.bits_left = 0;
142 entropy->bitstate.get_buffer = 0; /* unnecessary, but keeps Purify quiet */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000143 entropy->pub.insufficient_data = FALSE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000144
145 /* Initialize restart counter */
146 entropy->restarts_to_go = cinfo->restart_interval;
147}
148
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000149
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000150/*
151 * Compute the derived values for a Huffman table.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000152 * This routine also performs some validation checks on the table.
153 *
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000154 * Note this is also used by jdphuff.c.
155 */
156
Thomas G. Lane489583f1996-02-07 00:00:00 +0000157GLOBAL(void)
DRC19c791c2018-03-08 10:55:20 -0600158jpeg_make_d_derived_tbl(j_decompress_ptr cinfo, boolean isDC, int tblno,
159 d_derived_tbl **pdtbl)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000160{
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000161 JHUFF_TBL *htbl;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000162 d_derived_tbl *dtbl;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000163 int p, i, l, si, numsymbols;
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000164 int lookbits, ctr;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000165 char huffsize[257];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000166 unsigned int huffcode[257];
167 unsigned int code;
168
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000169 /* Note that huffsize[] and huffcode[] are filled in code-length order,
170 * paralleling the order of the symbols themselves in htbl->huffval[].
171 */
172
173 /* Find the input Huffman table */
174 if (tblno < 0 || tblno >= NUM_HUFF_TBLS)
175 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tblno);
176 htbl =
177 isDC ? cinfo->dc_huff_tbl_ptrs[tblno] : cinfo->ac_huff_tbl_ptrs[tblno];
178 if (htbl == NULL)
179 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tblno);
180
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000181 /* Allocate a workspace if we haven't already done so. */
182 if (*pdtbl == NULL)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000183 *pdtbl = (d_derived_tbl *)
DRC19c791c2018-03-08 10:55:20 -0600184 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000185 sizeof(d_derived_tbl));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000186 dtbl = *pdtbl;
DRCe5eaf372014-05-09 18:00:32 +0000187 dtbl->pub = htbl; /* fill in back link */
188
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000189 /* Figure C.1: make table of Huffman code length for each symbol */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000190
191 p = 0;
192 for (l = 1; l <= 16; l++) {
DRC19c791c2018-03-08 10:55:20 -0600193 i = (int)htbl->bits[l];
DRCe5eaf372014-05-09 18:00:32 +0000194 if (i < 0 || p + i > 256) /* protect against table overrun */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000195 ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
196 while (i--)
DRC19c791c2018-03-08 10:55:20 -0600197 huffsize[p++] = (char)l;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000198 }
199 huffsize[p] = 0;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000200 numsymbols = p;
DRCe5eaf372014-05-09 18:00:32 +0000201
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000202 /* Figure C.2: generate the codes themselves */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000203 /* We also validate that the counts represent a legal Huffman code tree. */
DRCe5eaf372014-05-09 18:00:32 +0000204
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000205 code = 0;
206 si = huffsize[0];
207 p = 0;
208 while (huffsize[p]) {
DRC19c791c2018-03-08 10:55:20 -0600209 while (((int)huffsize[p]) == si) {
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000210 huffcode[p++] = code;
211 code++;
212 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000213 /* code is now 1 more than the last code used for codelength si; but
214 * it must still fit in si bits, since no code is allowed to be all ones.
215 */
DRC19c791c2018-03-08 10:55:20 -0600216 if (((JLONG)code) >= (((JLONG)1) << si))
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000217 ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000218 code <<= 1;
219 si++;
220 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000221
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000222 /* Figure F.15: generate decoding tables for bit-sequential decoding */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000223
224 p = 0;
225 for (l = 1; l <= 16; l++) {
226 if (htbl->bits[l]) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000227 /* valoffset[l] = huffval[] index of 1st symbol of code length l,
228 * minus the minimum code of length l
229 */
DRC19c791c2018-03-08 10:55:20 -0600230 dtbl->valoffset[l] = (JLONG)p - (JLONG)huffcode[p];
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000231 p += htbl->bits[l];
DRC19c791c2018-03-08 10:55:20 -0600232 dtbl->maxcode[l] = huffcode[p - 1]; /* maximum code of length l */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000233 } else {
DRCe5eaf372014-05-09 18:00:32 +0000234 dtbl->maxcode[l] = -1; /* -1 if no codes of this length */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000235 }
236 }
DRC0fbb28e2010-07-30 17:15:52 +0000237 dtbl->valoffset[17] = 0;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000238 dtbl->maxcode[17] = 0xFFFFFL; /* ensures jpeg_huff_decode terminates */
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000239
240 /* Compute lookahead tables to speed up decoding.
241 * First we set all the table entries to 0, indicating "too long";
242 * then we iterate through the Huffman codes that are short enough and
243 * fill in all the entries that correspond to bit sequences starting
244 * with that code.
245 */
246
DRC19c791c2018-03-08 10:55:20 -0600247 for (i = 0; i < (1 << HUFF_LOOKAHEAD); i++)
248 dtbl->lookup[i] = (HUFF_LOOKAHEAD + 1) << HUFF_LOOKAHEAD;
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000249
250 p = 0;
251 for (l = 1; l <= HUFF_LOOKAHEAD; l++) {
DRC19c791c2018-03-08 10:55:20 -0600252 for (i = 1; i <= (int)htbl->bits[l]; i++, p++) {
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000253 /* l = current code's length, p = its index in huffcode[] & huffval[]. */
254 /* Generate left-justified code followed by all possible bit sequences */
DRC19c791c2018-03-08 10:55:20 -0600255 lookbits = huffcode[p] << (HUFF_LOOKAHEAD - l);
256 for (ctr = 1 << (HUFF_LOOKAHEAD - l); ctr > 0; ctr--) {
DRCe5eaf372014-05-09 18:00:32 +0000257 dtbl->lookup[lookbits] = (l << HUFF_LOOKAHEAD) | htbl->huffval[p];
258 lookbits++;
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000259 }
260 }
261 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000262
263 /* Validate symbols as being reasonable.
264 * For AC tables, we make no check, but accept all byte values 0..255.
265 * For DC tables, we require the symbols to be in range 0..15.
266 * (Tighter bounds could be applied depending on the data depth and mode,
267 * but this is sufficient to ensure safe decoding.)
268 */
269 if (isDC) {
270 for (i = 0; i < numsymbols; i++) {
271 int sym = htbl->huffval[i];
272 if (sym < 0 || sym > 15)
DRCe5eaf372014-05-09 18:00:32 +0000273 ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000274 }
275 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000276}
277
278
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000279/*
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000280 * Out-of-line code for bit fetching (shared with jdphuff.c).
281 * See jdhuff.h for info about usage.
282 * Note: current values of get_buffer and bits_left are passed as parameters,
283 * but are returned in the corresponding fields of the state struct.
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000284 *
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000285 * On most machines MIN_GET_BITS should be 25 to allow the full 32-bit width
286 * of get_buffer to be used. (On machines with wider words, an even larger
287 * buffer could be used.) However, on some machines 32-bit shifts are
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000288 * quite slow and take time proportional to the number of places shifted.
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000289 * (This is true with most PC compilers, for instance.) In this case it may
290 * be a win to set MIN_GET_BITS to the minimum value of 15. This reduces the
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000291 * average shift distance at the cost of more calls to jpeg_fill_bit_buffer.
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000292 */
293
294#ifdef SLOW_SHIFT_32
DRCe5eaf372014-05-09 18:00:32 +0000295#define MIN_GET_BITS 15 /* minimum allowable value */
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000296#else
DRC19c791c2018-03-08 10:55:20 -0600297#define MIN_GET_BITS (BIT_BUF_SIZE - 7)
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000298#endif
299
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000300
Thomas G. Lane489583f1996-02-07 00:00:00 +0000301GLOBAL(boolean)
DRC19c791c2018-03-08 10:55:20 -0600302jpeg_fill_bit_buffer(bitread_working_state *state,
303 register bit_buf_type get_buffer, register int bits_left,
304 int nbits)
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000305/* Load up the bit buffer to a depth of at least nbits */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000306{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000307 /* Copy heavily used state fields into locals (hopefully registers) */
DRCbd498032016-02-19 08:53:33 -0600308 register const JOCTET *next_input_byte = state->next_input_byte;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000309 register size_t bytes_in_buffer = state->bytes_in_buffer;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000310 j_decompress_ptr cinfo = state->cinfo;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000311
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000312 /* Attempt to load at least MIN_GET_BITS bits into get_buffer. */
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000313 /* (It is assumed that no request will be for more than that many bits.) */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000314 /* We fail to do so only if we hit a marker or are forced to suspend. */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000315
DRCe5eaf372014-05-09 18:00:32 +0000316 if (cinfo->unread_marker == 0) { /* cannot advance past a marker */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000317 while (bits_left < MIN_GET_BITS) {
318 register int c;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000319
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000320 /* Attempt to read a byte */
321 if (bytes_in_buffer == 0) {
DRC19c791c2018-03-08 10:55:20 -0600322 if (!(*cinfo->src->fill_input_buffer) (cinfo))
DRCe5eaf372014-05-09 18:00:32 +0000323 return FALSE;
324 next_input_byte = cinfo->src->next_input_byte;
325 bytes_in_buffer = cinfo->src->bytes_in_buffer;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000326 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000327 bytes_in_buffer--;
328 c = GETJOCTET(*next_input_byte++);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000329
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000330 /* If it's 0xFF, check and discard stuffed zero byte */
331 if (c == 0xFF) {
DRCe5eaf372014-05-09 18:00:32 +0000332 /* Loop here to discard any padding FF's on terminating marker,
333 * so that we can save a valid unread_marker value. NOTE: we will
334 * accept multiple FF's followed by a 0 as meaning a single FF data
335 * byte. This data pattern is not valid according to the standard.
336 */
337 do {
338 if (bytes_in_buffer == 0) {
DRC19c791c2018-03-08 10:55:20 -0600339 if (!(*cinfo->src->fill_input_buffer) (cinfo))
DRCe5eaf372014-05-09 18:00:32 +0000340 return FALSE;
341 next_input_byte = cinfo->src->next_input_byte;
342 bytes_in_buffer = cinfo->src->bytes_in_buffer;
343 }
344 bytes_in_buffer--;
345 c = GETJOCTET(*next_input_byte++);
346 } while (c == 0xFF);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000347
DRCe5eaf372014-05-09 18:00:32 +0000348 if (c == 0) {
349 /* Found FF/00, which represents an FF data byte */
350 c = 0xFF;
351 } else {
352 /* Oops, it's actually a marker indicating end of compressed data.
353 * Save the marker code for later use.
354 * Fine point: it might appear that we should save the marker into
355 * bitread working state, not straight into permanent state. But
356 * once we have hit a marker, we cannot need to suspend within the
357 * current MCU, because we will read no more bytes from the data
358 * source. So it is OK to update permanent state right away.
359 */
360 cinfo->unread_marker = c;
361 /* See if we need to insert some fake zero bits. */
362 goto no_more_bytes;
363 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000364 }
365
366 /* OK, load c into get_buffer */
367 get_buffer = (get_buffer << 8) | c;
368 bits_left += 8;
369 } /* end while */
370 } else {
DRC19c791c2018-03-08 10:55:20 -0600371no_more_bytes:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000372 /* We get here if we've read the marker that terminates the compressed
373 * data segment. There should be enough bits in the buffer register
374 * to satisfy the request; if so, no problem.
375 */
376 if (nbits > bits_left) {
377 /* Uh-oh. Report corrupted data to user and stuff zeroes into
378 * the data stream, so that we can produce some kind of image.
379 * We use a nonvolatile flag to ensure that only one warning message
380 * appears per data segment.
381 */
DRC19c791c2018-03-08 10:55:20 -0600382 if (!cinfo->entropy->insufficient_data) {
DRCe5eaf372014-05-09 18:00:32 +0000383 WARNMS(cinfo, JWRN_HIT_MARKER);
384 cinfo->entropy->insufficient_data = TRUE;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000385 }
386 /* Fill the buffer with zero bits */
387 get_buffer <<= MIN_GET_BITS - bits_left;
388 bits_left = MIN_GET_BITS;
389 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000390 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000391
392 /* Unload the local registers */
393 state->next_input_byte = next_input_byte;
394 state->bytes_in_buffer = bytes_in_buffer;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000395 state->get_buffer = get_buffer;
396 state->bits_left = bits_left;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000397
398 return TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000399}
400
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000401
DRCbc515802011-04-18 06:52:07 +0000402/* Macro version of the above, which performs much better but does not
403 handle markers. We have to hand off any blocks with markers to the
404 slower routines. */
405
DRC19c791c2018-03-08 10:55:20 -0600406#define GET_BYTE { \
DRCbc515802011-04-18 06:52:07 +0000407 register int c0, c1; \
408 c0 = GETJOCTET(*buffer++); \
409 c1 = GETJOCTET(*buffer); \
410 /* Pre-execute most common case */ \
411 get_buffer = (get_buffer << 8) | c0; \
412 bits_left += 8; \
413 if (c0 == 0xFF) { \
414 /* Pre-execute case of FF/00, which represents an FF data byte */ \
415 buffer++; \
416 if (c1 != 0) { \
417 /* Oops, it's actually a marker indicating end of compressed data. */ \
418 cinfo->unread_marker = c1; \
419 /* Back out pre-execution and fill the buffer with zero bits */ \
420 buffer -= 2; \
421 get_buffer &= ~0xFF; \
422 } \
423 } \
424}
425
DRC19c791c2018-03-08 10:55:20 -0600426#if SIZEOF_SIZE_T == 8 || defined(_WIN64)
DRCbc515802011-04-18 06:52:07 +0000427
428/* Pre-fetch 48 bytes, because the holding register is 64-bit */
429#define FILL_BIT_BUFFER_FAST \
DRC944aa8e2015-07-21 16:43:39 -0500430 if (bits_left <= 16) { \
DRCbc515802011-04-18 06:52:07 +0000431 GET_BYTE GET_BYTE GET_BYTE GET_BYTE GET_BYTE GET_BYTE \
432 }
433
434#else
435
436/* Pre-fetch 16 bytes, because the holding register is 32-bit */
437#define FILL_BIT_BUFFER_FAST \
DRC944aa8e2015-07-21 16:43:39 -0500438 if (bits_left <= 16) { \
DRCbc515802011-04-18 06:52:07 +0000439 GET_BYTE GET_BYTE \
440 }
441
442#endif
443
444
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000445/*
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000446 * Out-of-line code for Huffman code decoding.
447 * See jdhuff.h for info about usage.
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000448 */
449
Thomas G. Lane489583f1996-02-07 00:00:00 +0000450GLOBAL(int)
DRC19c791c2018-03-08 10:55:20 -0600451jpeg_huff_decode(bitread_working_state *state,
452 register bit_buf_type get_buffer, register int bits_left,
453 d_derived_tbl *htbl, int min_bits)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000454{
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000455 register int l = min_bits;
DRC1e32fe32015-10-14 17:32:39 -0500456 register JLONG code;
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000457
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000458 /* HUFF_DECODE has determined that the code is at least min_bits */
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000459 /* bits long, so fetch that many bits in one swoop. */
460
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000461 CHECK_BIT_BUFFER(*state, l, return -1);
462 code = GET_BITS(l);
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000463
464 /* Collect the rest of the Huffman code one bit at a time. */
DRCa6289522018-07-24 18:36:51 -0500465 /* This is per Figure F.16. */
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000466
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000467 while (code > htbl->maxcode[l]) {
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000468 code <<= 1;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000469 CHECK_BIT_BUFFER(*state, 1, return -1);
470 code |= GET_BITS(1);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000471 l++;
472 }
Thomas G. Lanebd543f01991-12-13 00:00:00 +0000473
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000474 /* Unload the local registers */
475 state->get_buffer = get_buffer;
476 state->bits_left = bits_left;
477
Thomas G. Lanebd543f01991-12-13 00:00:00 +0000478 /* With garbage input we may reach the sentinel value l = 17. */
479
480 if (l > 16) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000481 WARNMS(state->cinfo, JWRN_HUFF_BAD_CODE);
DRCe5eaf372014-05-09 18:00:32 +0000482 return 0; /* fake a zero as the safest result */
Thomas G. Lanebd543f01991-12-13 00:00:00 +0000483 }
484
DRC19c791c2018-03-08 10:55:20 -0600485 return htbl->pub->huffval[(int)(code + htbl->valoffset[l])];
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000486}
487
488
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000489/*
490 * Figure F.12: extend sign bit.
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000491 * On some machines, a shift and add will be faster than a table lookup.
492 */
493
DRCe2816642009-09-28 00:33:02 +0000494#define AVOID_TABLES
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000495#ifdef AVOID_TABLES
496
DRC293263c2018-03-17 15:14:35 -0500497#define NEG_1 ((unsigned int)-1)
DRC19c791c2018-03-08 10:55:20 -0600498#define HUFF_EXTEND(x, s) \
499 ((x) + ((((x) - (1 << ((s) - 1))) >> 31) & (((NEG_1) << (s)) + 1)))
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000500
501#else
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000502
DRC19c791c2018-03-08 10:55:20 -0600503#define HUFF_EXTEND(x, s) \
504 ((x) < extend_test[s] ? (x) + extend_offset[s] : (x))
Thomas G. Lanebd543f01991-12-13 00:00:00 +0000505
DRC19c791c2018-03-08 10:55:20 -0600506static const int extend_test[16] = { /* entry n is 2**(n-1) */
507 0, 0x0001, 0x0002, 0x0004, 0x0008, 0x0010, 0x0020, 0x0040, 0x0080,
508 0x0100, 0x0200, 0x0400, 0x0800, 0x1000, 0x2000, 0x4000
509};
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000510
DRC19c791c2018-03-08 10:55:20 -0600511static const int extend_offset[16] = { /* entry n is (-1 << n) + 1 */
512 0, ((-1) << 1) + 1, ((-1) << 2) + 1, ((-1) << 3) + 1, ((-1) << 4) + 1,
513 ((-1) << 5) + 1, ((-1) << 6) + 1, ((-1) << 7) + 1, ((-1) << 8) + 1,
514 ((-1) << 9) + 1, ((-1) << 10) + 1, ((-1) << 11) + 1, ((-1) << 12) + 1,
515 ((-1) << 13) + 1, ((-1) << 14) + 1, ((-1) << 15) + 1
516};
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000517
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000518#endif /* AVOID_TABLES */
519
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000520
521/*
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000522 * Check for a restart marker & resynchronize decoder.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000523 * Returns FALSE if must suspend.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000524 */
525
Thomas G. Lane489583f1996-02-07 00:00:00 +0000526LOCAL(boolean)
DRC19c791c2018-03-08 10:55:20 -0600527process_restart(j_decompress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000528{
DRC19c791c2018-03-08 10:55:20 -0600529 huff_entropy_ptr entropy = (huff_entropy_ptr)cinfo->entropy;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000530 int ci;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000531
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000532 /* Throw away any unused bits remaining in bit buffer; */
533 /* include any full bytes in next_marker's count of discarded bytes */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000534 cinfo->marker->discarded_bytes += entropy->bitstate.bits_left / 8;
535 entropy->bitstate.bits_left = 0;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000536
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000537 /* Advance past the RSTn marker */
DRC19c791c2018-03-08 10:55:20 -0600538 if (!(*cinfo->marker->read_restart_marker) (cinfo))
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000539 return FALSE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000540
541 /* Re-initialize DC predictions to 0 */
542 for (ci = 0; ci < cinfo->comps_in_scan; ci++)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000543 entropy->saved.last_dc_val[ci] = 0;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000544
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000545 /* Reset restart counter */
546 entropy->restarts_to_go = cinfo->restart_interval;
547
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000548 /* Reset out-of-data flag, unless read_restart_marker left us smack up
549 * against a marker. In that case we will end up treating the next data
550 * segment as empty, and we can avoid producing bogus output pixels by
551 * leaving the flag set.
552 */
553 if (cinfo->unread_marker == 0)
554 entropy->pub.insufficient_data = FALSE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000555
556 return TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000557}
558
559
DRCe2816642009-09-28 00:33:02 +0000560LOCAL(boolean)
DRC19c791c2018-03-08 10:55:20 -0600561decode_mcu_slow(j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
DRCe2816642009-09-28 00:33:02 +0000562{
DRC19c791c2018-03-08 10:55:20 -0600563 huff_entropy_ptr entropy = (huff_entropy_ptr)cinfo->entropy;
DRCe2816642009-09-28 00:33:02 +0000564 BITREAD_STATE_VARS;
565 int blkn;
566 savable_state state;
567 /* Outer loop handles each block in the MCU */
568
569 /* Load up working state */
DRC19c791c2018-03-08 10:55:20 -0600570 BITREAD_LOAD_STATE(cinfo, entropy->bitstate);
DRCe2816642009-09-28 00:33:02 +0000571 ASSIGN_STATE(state, entropy->saved);
572
573 for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
DRCeb32cc12015-06-25 03:44:36 +0000574 JBLOCKROW block = MCU_data ? MCU_data[blkn] : NULL;
DRCbd498032016-02-19 08:53:33 -0600575 d_derived_tbl *dctbl = entropy->dc_cur_tbls[blkn];
576 d_derived_tbl *actbl = entropy->ac_cur_tbls[blkn];
DRCe2816642009-09-28 00:33:02 +0000577 register int s, k, r;
578
579 /* Decode a single block's worth of coefficients */
580
581 /* Section F.2.2.1: decode the DC coefficient difference */
582 HUFF_DECODE(s, br_state, dctbl, return FALSE, label1);
583 if (s) {
584 CHECK_BIT_BUFFER(br_state, s, return FALSE);
585 r = GET_BITS(s);
586 s = HUFF_EXTEND(r, s);
587 }
588
589 if (entropy->dc_needed[blkn]) {
590 /* Convert DC difference to actual value, update last_dc_val */
591 int ci = cinfo->MCU_membership[blkn];
DRCd3a3a732019-04-10 14:28:47 -0500592 /* This is really just
593 * s += state.last_dc_val[ci];
594 * It is written this way in order to shut up UBSan.
595 */
596 s = (int)((unsigned int)s + (unsigned int)state.last_dc_val[ci]);
DRCe2816642009-09-28 00:33:02 +0000597 state.last_dc_val[ci] = s;
DRCeb32cc12015-06-25 03:44:36 +0000598 if (block) {
599 /* Output the DC coefficient (assumes jpeg_natural_order[0] = 0) */
DRC19c791c2018-03-08 10:55:20 -0600600 (*block)[0] = (JCOEF)s;
DRCeb32cc12015-06-25 03:44:36 +0000601 }
DRCe2816642009-09-28 00:33:02 +0000602 }
603
DRCeb32cc12015-06-25 03:44:36 +0000604 if (entropy->ac_needed[blkn] && block) {
DRCe2816642009-09-28 00:33:02 +0000605
606 /* Section F.2.2.2: decode the AC coefficients */
607 /* Since zeroes are skipped, output area must be cleared beforehand */
608 for (k = 1; k < DCTSIZE2; k++) {
609 HUFF_DECODE(s, br_state, actbl, return FALSE, label2);
610
611 r = s >> 4;
612 s &= 15;
DRCe5eaf372014-05-09 18:00:32 +0000613
DRCe2816642009-09-28 00:33:02 +0000614 if (s) {
615 k += r;
616 CHECK_BIT_BUFFER(br_state, s, return FALSE);
617 r = GET_BITS(s);
618 s = HUFF_EXTEND(r, s);
619 /* Output coefficient in natural (dezigzagged) order.
620 * Note: the extra entries in jpeg_natural_order[] will save us
621 * if k >= DCTSIZE2, which could happen if the data is corrupted.
622 */
DRC19c791c2018-03-08 10:55:20 -0600623 (*block)[jpeg_natural_order[k]] = (JCOEF)s;
DRCe2816642009-09-28 00:33:02 +0000624 } else {
625 if (r != 15)
626 break;
627 k += 15;
628 }
629 }
630
631 } else {
632
633 /* Section F.2.2.2: decode the AC coefficients */
634 /* In this path we just discard the values */
635 for (k = 1; k < DCTSIZE2; k++) {
636 HUFF_DECODE(s, br_state, actbl, return FALSE, label3);
637
638 r = s >> 4;
639 s &= 15;
640
641 if (s) {
642 k += r;
643 CHECK_BIT_BUFFER(br_state, s, return FALSE);
644 DROP_BITS(s);
645 } else {
646 if (r != 15)
647 break;
648 k += 15;
649 }
650 }
651 }
652 }
653
654 /* Completed MCU, so update state */
DRC19c791c2018-03-08 10:55:20 -0600655 BITREAD_SAVE_STATE(cinfo, entropy->bitstate);
DRCe2816642009-09-28 00:33:02 +0000656 ASSIGN_STATE(entropy->saved, state);
657 return TRUE;
658}
659
660
DRCe2816642009-09-28 00:33:02 +0000661LOCAL(boolean)
DRC19c791c2018-03-08 10:55:20 -0600662decode_mcu_fast(j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
DRCe2816642009-09-28 00:33:02 +0000663{
DRC19c791c2018-03-08 10:55:20 -0600664 huff_entropy_ptr entropy = (huff_entropy_ptr)cinfo->entropy;
DRCe2816642009-09-28 00:33:02 +0000665 BITREAD_STATE_VARS;
666 JOCTET *buffer;
667 int blkn;
668 savable_state state;
669 /* Outer loop handles each block in the MCU */
670
671 /* Load up working state */
DRC19c791c2018-03-08 10:55:20 -0600672 BITREAD_LOAD_STATE(cinfo, entropy->bitstate);
673 buffer = (JOCTET *)br_state.next_input_byte;
DRCe2816642009-09-28 00:33:02 +0000674 ASSIGN_STATE(state, entropy->saved);
675
676 for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
DRCeb32cc12015-06-25 03:44:36 +0000677 JBLOCKROW block = MCU_data ? MCU_data[blkn] : NULL;
DRCbd498032016-02-19 08:53:33 -0600678 d_derived_tbl *dctbl = entropy->dc_cur_tbls[blkn];
679 d_derived_tbl *actbl = entropy->ac_cur_tbls[blkn];
DRCe2816642009-09-28 00:33:02 +0000680 register int s, k, r, l;
681
682 HUFF_DECODE_FAST(s, l, dctbl);
683 if (s) {
DRCbc515802011-04-18 06:52:07 +0000684 FILL_BIT_BUFFER_FAST
DRCe2816642009-09-28 00:33:02 +0000685 r = GET_BITS(s);
686 s = HUFF_EXTEND(r, s);
687 }
688
689 if (entropy->dc_needed[blkn]) {
690 int ci = cinfo->MCU_membership[blkn];
DRC7bc9fca2019-04-12 09:07:35 -0500691 s = (int)((unsigned int)s + (unsigned int)state.last_dc_val[ci]);
DRCe2816642009-09-28 00:33:02 +0000692 state.last_dc_val[ci] = s;
DRCeb32cc12015-06-25 03:44:36 +0000693 if (block)
DRC19c791c2018-03-08 10:55:20 -0600694 (*block)[0] = (JCOEF)s;
DRCe2816642009-09-28 00:33:02 +0000695 }
696
DRCeb32cc12015-06-25 03:44:36 +0000697 if (entropy->ac_needed[blkn] && block) {
DRCe2816642009-09-28 00:33:02 +0000698
699 for (k = 1; k < DCTSIZE2; k++) {
700 HUFF_DECODE_FAST(s, l, actbl);
701 r = s >> 4;
702 s &= 15;
DRCe5eaf372014-05-09 18:00:32 +0000703
DRCe2816642009-09-28 00:33:02 +0000704 if (s) {
705 k += r;
DRCbc515802011-04-18 06:52:07 +0000706 FILL_BIT_BUFFER_FAST
DRCe2816642009-09-28 00:33:02 +0000707 r = GET_BITS(s);
708 s = HUFF_EXTEND(r, s);
DRC19c791c2018-03-08 10:55:20 -0600709 (*block)[jpeg_natural_order[k]] = (JCOEF)s;
DRCe2816642009-09-28 00:33:02 +0000710 } else {
711 if (r != 15) break;
712 k += 15;
713 }
714 }
715
716 } else {
717
718 for (k = 1; k < DCTSIZE2; k++) {
719 HUFF_DECODE_FAST(s, l, actbl);
720 r = s >> 4;
721 s &= 15;
722
723 if (s) {
724 k += r;
DRCbc515802011-04-18 06:52:07 +0000725 FILL_BIT_BUFFER_FAST
DRCe2816642009-09-28 00:33:02 +0000726 DROP_BITS(s);
727 } else {
728 if (r != 15) break;
729 k += 15;
730 }
731 }
732 }
733 }
734
DRC051d9622011-04-16 18:53:26 +0000735 if (cinfo->unread_marker != 0) {
736 cinfo->unread_marker = 0;
737 return FALSE;
DRCfe6a2ee2011-03-18 05:49:26 +0000738 }
739
DRCe2816642009-09-28 00:33:02 +0000740 br_state.bytes_in_buffer -= (buffer - br_state.next_input_byte);
741 br_state.next_input_byte = buffer;
DRC19c791c2018-03-08 10:55:20 -0600742 BITREAD_SAVE_STATE(cinfo, entropy->bitstate);
DRCe2816642009-09-28 00:33:02 +0000743 ASSIGN_STATE(entropy->saved, state);
744 return TRUE;
745}
746
747
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000748/*
749 * Decode and return one MCU's worth of Huffman-compressed coefficients.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000750 * The coefficients are reordered from zigzag order into natural array order,
751 * but are not dequantized.
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000752 *
753 * The i'th block of the MCU is stored into the block pointed to by
754 * MCU_data[i]. WE ASSUME THIS AREA HAS BEEN ZEROED BY THE CALLER.
755 * (Wholesale zeroing is usually a little faster than retail...)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000756 *
757 * Returns FALSE if data source requested suspension. In that case no
758 * changes have been made to permanent state. (Exception: some output
759 * coefficients may already have been assigned. This is harmless for
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000760 * this module, since we'll just re-assign them on the next call.)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000761 */
762
DRC293263c2018-03-17 15:14:35 -0500763#define BUFSIZE (DCTSIZE2 * 8)
DRCe2816642009-09-28 00:33:02 +0000764
Thomas G. Lane489583f1996-02-07 00:00:00 +0000765METHODDEF(boolean)
DRC19c791c2018-03-08 10:55:20 -0600766decode_mcu(j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000767{
DRC19c791c2018-03-08 10:55:20 -0600768 huff_entropy_ptr entropy = (huff_entropy_ptr)cinfo->entropy;
DRC97f8ec42010-03-20 22:38:53 +0000769 int usefast = 1;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000770
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000771 /* Process restart marker if needed; may have to suspend */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000772 if (cinfo->restart_interval) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000773 if (entropy->restarts_to_go == 0)
DRC19c791c2018-03-08 10:55:20 -0600774 if (!process_restart(cinfo))
DRCe5eaf372014-05-09 18:00:32 +0000775 return FALSE;
DRC97f8ec42010-03-20 22:38:53 +0000776 usefast = 0;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000777 }
778
DRC19c791c2018-03-08 10:55:20 -0600779 if (cinfo->src->bytes_in_buffer < BUFSIZE * (size_t)cinfo->blocks_in_MCU ||
780 cinfo->unread_marker != 0)
DRC97f8ec42010-03-20 22:38:53 +0000781 usefast = 0;
782
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000783 /* If we've run out of data, just leave the MCU set to zeroes.
784 * This way, we return uniform gray for the remainder of the segment.
785 */
DRC19c791c2018-03-08 10:55:20 -0600786 if (!entropy->pub.insufficient_data) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000787
DRC97f8ec42010-03-20 22:38:53 +0000788 if (usefast) {
DRC051d9622011-04-16 18:53:26 +0000789 if (!decode_mcu_fast(cinfo, MCU_data)) goto use_slow;
DRC19c791c2018-03-08 10:55:20 -0600790 } else {
791use_slow:
DRCe2816642009-09-28 00:33:02 +0000792 if (!decode_mcu_slow(cinfo, MCU_data)) return FALSE;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000793 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000794
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000795 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000796
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000797 /* Account for restart interval (no-op if not using restarts) */
798 entropy->restarts_to_go--;
799
800 return TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000801}
802
803
804/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000805 * Module initialization routine for Huffman entropy decoding.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000806 */
807
Thomas G. Lane489583f1996-02-07 00:00:00 +0000808GLOBAL(void)
DRC19c791c2018-03-08 10:55:20 -0600809jinit_huff_decoder(j_decompress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000810{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000811 huff_entropy_ptr entropy;
812 int i;
813
DRCa1135062014-01-31 17:22:15 +0000814 /* Motion JPEG frames typically do not include the Huffman tables if they
815 are the default tables. Thus, if the tables are not set by the time
816 the Huffman decoder is initialized (usually within the body of
817 jpeg_start_decompress()), we set them to default values. */
DRC19c791c2018-03-08 10:55:20 -0600818 std_huff_tables((j_common_ptr)cinfo);
DRCa1135062014-01-31 17:22:15 +0000819
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000820 entropy = (huff_entropy_ptr)
DRC19c791c2018-03-08 10:55:20 -0600821 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000822 sizeof(huff_entropy_decoder));
DRC19c791c2018-03-08 10:55:20 -0600823 cinfo->entropy = (struct jpeg_entropy_decoder *)entropy;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000824 entropy->pub.start_pass = start_pass_huff_decoder;
825 entropy->pub.decode_mcu = decode_mcu;
826
827 /* Mark tables unallocated */
828 for (i = 0; i < NUM_HUFF_TBLS; i++) {
829 entropy->dc_derived_tbls[i] = entropy->ac_derived_tbls[i] = NULL;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000830 }
831}