blob: 877ff10edfaeef944a4ee4a7743b1f6c8396ce0d [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:
DRCeb32cc12015-06-25 03:44:36 +00007 * Copyright (C) 2009-2011, 2015, D. R. Commander.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00008 * For conditions of distribution and use, see the accompanying README file.
9 *
10 * This file contains Huffman entropy decoding routines.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000011 *
12 * Much of the complexity here has to do with supporting input suspension.
13 * If the data source module demands suspension, we want to be able to back
14 * up to the start of the current MCU. To do this, we copy state variables
Thomas G. Lanebc79e061995-08-02 00:00:00 +000015 * into local working storage, and update them back to the permanent
16 * storage only upon successful completion of an MCU.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000017 */
18
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000019#define JPEG_INTERNALS
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000020#include "jinclude.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000021#include "jpeglib.h"
DRCe5eaf372014-05-09 18:00:32 +000022#include "jdhuff.h" /* Declarations shared with jdphuff.c */
DRC36a6eec2010-10-08 08:05:44 +000023#include "jpegcomp.h"
DRCa1135062014-01-31 17:22:15 +000024#include "jstdhuff.c"
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000025
26
Thomas G. Lanebc79e061995-08-02 00:00:00 +000027/*
28 * Expanded entropy decoder object for Huffman decoding.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000029 *
30 * The savable_state subrecord contains fields that change within an MCU,
31 * but must not be updated permanently until we complete the MCU.
32 */
33
34typedef struct {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000035 int last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each component */
36} savable_state;
37
38/* This macro is to work around compilers with missing or broken
39 * structure assignment. You'll need to fix this code if you have
40 * such a compiler and you change MAX_COMPS_IN_SCAN.
41 */
42
43#ifndef NO_STRUCT_ASSIGN
44#define ASSIGN_STATE(dest,src) ((dest) = (src))
45#else
46#if MAX_COMPS_IN_SCAN == 4
47#define ASSIGN_STATE(dest,src) \
DRCe5eaf372014-05-09 18:00:32 +000048 ((dest).last_dc_val[0] = (src).last_dc_val[0], \
49 (dest).last_dc_val[1] = (src).last_dc_val[1], \
50 (dest).last_dc_val[2] = (src).last_dc_val[2], \
51 (dest).last_dc_val[3] = (src).last_dc_val[3])
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000052#endif
53#endif
54
55
56typedef struct {
57 struct jpeg_entropy_decoder pub; /* public fields */
58
Thomas G. Lanebc79e061995-08-02 00:00:00 +000059 /* These fields are loaded into local variables at start of each MCU.
60 * In case of suspension, we exit WITHOUT updating them.
61 */
DRCe5eaf372014-05-09 18:00:32 +000062 bitread_perm_state bitstate; /* Bit buffer at start of MCU */
63 savable_state saved; /* Other state at start of MCU */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000064
65 /* These fields are NOT loaded into local working state. */
DRCe5eaf372014-05-09 18:00:32 +000066 unsigned int restarts_to_go; /* MCUs left in this restart interval */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000067
68 /* Pointers to derived tables (these workspaces have image lifespan) */
Thomas G. Lanebc79e061995-08-02 00:00:00 +000069 d_derived_tbl * dc_derived_tbls[NUM_HUFF_TBLS];
70 d_derived_tbl * ac_derived_tbls[NUM_HUFF_TBLS];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000071
72 /* Precalculated info set up by start_pass for use in decode_mcu: */
73
74 /* Pointers to derived tables to be used for each block within an MCU */
75 d_derived_tbl * dc_cur_tbls[D_MAX_BLOCKS_IN_MCU];
76 d_derived_tbl * ac_cur_tbls[D_MAX_BLOCKS_IN_MCU];
77 /* Whether we care about the DC and AC coefficient values for each block */
78 boolean dc_needed[D_MAX_BLOCKS_IN_MCU];
79 boolean ac_needed[D_MAX_BLOCKS_IN_MCU];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000080} huff_entropy_decoder;
81
82typedef huff_entropy_decoder * huff_entropy_ptr;
83
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000084
85/*
86 * Initialize for a Huffman-compressed scan.
87 */
88
Thomas G. Lane489583f1996-02-07 00:00:00 +000089METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000090start_pass_huff_decoder (j_decompress_ptr cinfo)
91{
92 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000093 int ci, blkn, dctbl, actbl;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000094 jpeg_component_info * compptr;
95
Thomas G. Lanebc79e061995-08-02 00:00:00 +000096 /* Check that the scan parameters Ss, Se, Ah/Al are OK for sequential JPEG.
97 * This ought to be an error condition, but we make it a warning because
98 * there are some baseline files out there with all zeroes in these bytes.
99 */
100 if (cinfo->Ss != 0 || cinfo->Se != DCTSIZE2-1 ||
101 cinfo->Ah != 0 || cinfo->Al != 0)
102 WARNMS(cinfo, JWRN_NOT_SEQUENTIAL);
103
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000104 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
105 compptr = cinfo->cur_comp_info[ci];
106 dctbl = compptr->dc_tbl_no;
107 actbl = compptr->ac_tbl_no;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000108 /* Compute derived values for Huffman tables */
109 /* We may do this more than once for a table, but it's not expensive */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000110 jpeg_make_d_derived_tbl(cinfo, TRUE, dctbl,
DRCe5eaf372014-05-09 18:00:32 +0000111 & entropy->dc_derived_tbls[dctbl]);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000112 jpeg_make_d_derived_tbl(cinfo, FALSE, actbl,
DRCe5eaf372014-05-09 18:00:32 +0000113 & entropy->ac_derived_tbls[actbl]);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000114 /* Initialize DC predictions to 0 */
115 entropy->saved.last_dc_val[ci] = 0;
116 }
117
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000118 /* Precalculate decoding info for each block in an MCU of this scan */
119 for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
120 ci = cinfo->MCU_membership[blkn];
121 compptr = cinfo->cur_comp_info[ci];
122 /* Precalculate which table to use for each block */
123 entropy->dc_cur_tbls[blkn] = entropy->dc_derived_tbls[compptr->dc_tbl_no];
124 entropy->ac_cur_tbls[blkn] = entropy->ac_derived_tbls[compptr->ac_tbl_no];
125 /* Decide whether we really care about the coefficient values */
126 if (compptr->component_needed) {
127 entropy->dc_needed[blkn] = TRUE;
128 /* we don't need the ACs if producing a 1/8th-size image */
DRC49967cd2010-10-09 19:57:51 +0000129 entropy->ac_needed[blkn] = (compptr->_DCT_scaled_size > 1);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000130 } else {
131 entropy->dc_needed[blkn] = entropy->ac_needed[blkn] = FALSE;
132 }
133 }
134
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000135 /* Initialize bitread state variables */
136 entropy->bitstate.bits_left = 0;
137 entropy->bitstate.get_buffer = 0; /* unnecessary, but keeps Purify quiet */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000138 entropy->pub.insufficient_data = FALSE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000139
140 /* Initialize restart counter */
141 entropy->restarts_to_go = cinfo->restart_interval;
142}
143
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000144
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000145/*
146 * Compute the derived values for a Huffman table.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000147 * This routine also performs some validation checks on the table.
148 *
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000149 * Note this is also used by jdphuff.c.
150 */
151
Thomas G. Lane489583f1996-02-07 00:00:00 +0000152GLOBAL(void)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000153jpeg_make_d_derived_tbl (j_decompress_ptr cinfo, boolean isDC, int tblno,
DRCe5eaf372014-05-09 18:00:32 +0000154 d_derived_tbl ** pdtbl)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000155{
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000156 JHUFF_TBL *htbl;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000157 d_derived_tbl *dtbl;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000158 int p, i, l, si, numsymbols;
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000159 int lookbits, ctr;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000160 char huffsize[257];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000161 unsigned int huffcode[257];
162 unsigned int code;
163
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000164 /* Note that huffsize[] and huffcode[] are filled in code-length order,
165 * paralleling the order of the symbols themselves in htbl->huffval[].
166 */
167
168 /* Find the input Huffman table */
169 if (tblno < 0 || tblno >= NUM_HUFF_TBLS)
170 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tblno);
171 htbl =
172 isDC ? cinfo->dc_huff_tbl_ptrs[tblno] : cinfo->ac_huff_tbl_ptrs[tblno];
173 if (htbl == NULL)
174 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tblno);
175
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000176 /* Allocate a workspace if we haven't already done so. */
177 if (*pdtbl == NULL)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000178 *pdtbl = (d_derived_tbl *)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000179 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000180 sizeof(d_derived_tbl));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000181 dtbl = *pdtbl;
DRCe5eaf372014-05-09 18:00:32 +0000182 dtbl->pub = htbl; /* fill in back link */
183
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000184 /* Figure C.1: make table of Huffman code length for each symbol */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000185
186 p = 0;
187 for (l = 1; l <= 16; l++) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000188 i = (int) htbl->bits[l];
DRCe5eaf372014-05-09 18:00:32 +0000189 if (i < 0 || p + i > 256) /* protect against table overrun */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000190 ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
191 while (i--)
Thomas G. Lanebd543f01991-12-13 00:00:00 +0000192 huffsize[p++] = (char) l;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000193 }
194 huffsize[p] = 0;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000195 numsymbols = p;
DRCe5eaf372014-05-09 18:00:32 +0000196
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000197 /* Figure C.2: generate the codes themselves */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000198 /* We also validate that the counts represent a legal Huffman code tree. */
DRCe5eaf372014-05-09 18:00:32 +0000199
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000200 code = 0;
201 si = huffsize[0];
202 p = 0;
203 while (huffsize[p]) {
Thomas G. Lanebd543f01991-12-13 00:00:00 +0000204 while (((int) huffsize[p]) == si) {
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000205 huffcode[p++] = code;
206 code++;
207 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000208 /* code is now 1 more than the last code used for codelength si; but
209 * it must still fit in si bits, since no code is allowed to be all ones.
210 */
211 if (((INT32) code) >= (((INT32) 1) << si))
212 ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000213 code <<= 1;
214 si++;
215 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000216
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000217 /* Figure F.15: generate decoding tables for bit-sequential decoding */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000218
219 p = 0;
220 for (l = 1; l <= 16; l++) {
221 if (htbl->bits[l]) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000222 /* valoffset[l] = huffval[] index of 1st symbol of code length l,
223 * minus the minimum code of length l
224 */
225 dtbl->valoffset[l] = (INT32) p - (INT32) huffcode[p];
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000226 p += htbl->bits[l];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000227 dtbl->maxcode[l] = huffcode[p-1]; /* maximum code of length l */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000228 } else {
DRCe5eaf372014-05-09 18:00:32 +0000229 dtbl->maxcode[l] = -1; /* -1 if no codes of this length */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000230 }
231 }
DRC0fbb28e2010-07-30 17:15:52 +0000232 dtbl->valoffset[17] = 0;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000233 dtbl->maxcode[17] = 0xFFFFFL; /* ensures jpeg_huff_decode terminates */
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000234
235 /* Compute lookahead tables to speed up decoding.
236 * First we set all the table entries to 0, indicating "too long";
237 * then we iterate through the Huffman codes that are short enough and
238 * fill in all the entries that correspond to bit sequences starting
239 * with that code.
240 */
241
DRCe2816642009-09-28 00:33:02 +0000242 for (i = 0; i < (1 << HUFF_LOOKAHEAD); i++)
243 dtbl->lookup[i] = (HUFF_LOOKAHEAD + 1) << HUFF_LOOKAHEAD;
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000244
245 p = 0;
246 for (l = 1; l <= HUFF_LOOKAHEAD; l++) {
247 for (i = 1; i <= (int) htbl->bits[l]; i++, p++) {
248 /* l = current code's length, p = its index in huffcode[] & huffval[]. */
249 /* Generate left-justified code followed by all possible bit sequences */
250 lookbits = huffcode[p] << (HUFF_LOOKAHEAD-l);
251 for (ctr = 1 << (HUFF_LOOKAHEAD-l); ctr > 0; ctr--) {
DRCe5eaf372014-05-09 18:00:32 +0000252 dtbl->lookup[lookbits] = (l << HUFF_LOOKAHEAD) | htbl->huffval[p];
253 lookbits++;
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000254 }
255 }
256 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000257
258 /* Validate symbols as being reasonable.
259 * For AC tables, we make no check, but accept all byte values 0..255.
260 * For DC tables, we require the symbols to be in range 0..15.
261 * (Tighter bounds could be applied depending on the data depth and mode,
262 * but this is sufficient to ensure safe decoding.)
263 */
264 if (isDC) {
265 for (i = 0; i < numsymbols; i++) {
266 int sym = htbl->huffval[i];
267 if (sym < 0 || sym > 15)
DRCe5eaf372014-05-09 18:00:32 +0000268 ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000269 }
270 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000271}
272
273
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000274/*
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000275 * Out-of-line code for bit fetching (shared with jdphuff.c).
276 * See jdhuff.h for info about usage.
277 * Note: current values of get_buffer and bits_left are passed as parameters,
278 * but are returned in the corresponding fields of the state struct.
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000279 *
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000280 * On most machines MIN_GET_BITS should be 25 to allow the full 32-bit width
281 * of get_buffer to be used. (On machines with wider words, an even larger
282 * buffer could be used.) However, on some machines 32-bit shifts are
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000283 * quite slow and take time proportional to the number of places shifted.
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000284 * (This is true with most PC compilers, for instance.) In this case it may
285 * 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 +0000286 * average shift distance at the cost of more calls to jpeg_fill_bit_buffer.
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000287 */
288
289#ifdef SLOW_SHIFT_32
DRCe5eaf372014-05-09 18:00:32 +0000290#define MIN_GET_BITS 15 /* minimum allowable value */
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000291#else
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000292#define MIN_GET_BITS (BIT_BUF_SIZE-7)
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000293#endif
294
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000295
Thomas G. Lane489583f1996-02-07 00:00:00 +0000296GLOBAL(boolean)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000297jpeg_fill_bit_buffer (bitread_working_state * state,
DRCe5eaf372014-05-09 18:00:32 +0000298 register bit_buf_type get_buffer, register int bits_left,
299 int nbits)
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000300/* Load up the bit buffer to a depth of at least nbits */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000301{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000302 /* Copy heavily used state fields into locals (hopefully registers) */
303 register const JOCTET * next_input_byte = state->next_input_byte;
304 register size_t bytes_in_buffer = state->bytes_in_buffer;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000305 j_decompress_ptr cinfo = state->cinfo;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000306
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000307 /* Attempt to load at least MIN_GET_BITS bits into get_buffer. */
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000308 /* (It is assumed that no request will be for more than that many bits.) */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000309 /* We fail to do so only if we hit a marker or are forced to suspend. */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000310
DRCe5eaf372014-05-09 18:00:32 +0000311 if (cinfo->unread_marker == 0) { /* cannot advance past a marker */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000312 while (bits_left < MIN_GET_BITS) {
313 register int c;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000314
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000315 /* Attempt to read a byte */
316 if (bytes_in_buffer == 0) {
DRCe5eaf372014-05-09 18:00:32 +0000317 if (! (*cinfo->src->fill_input_buffer) (cinfo))
318 return FALSE;
319 next_input_byte = cinfo->src->next_input_byte;
320 bytes_in_buffer = cinfo->src->bytes_in_buffer;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000321 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000322 bytes_in_buffer--;
323 c = GETJOCTET(*next_input_byte++);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000324
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000325 /* If it's 0xFF, check and discard stuffed zero byte */
326 if (c == 0xFF) {
DRCe5eaf372014-05-09 18:00:32 +0000327 /* Loop here to discard any padding FF's on terminating marker,
328 * so that we can save a valid unread_marker value. NOTE: we will
329 * accept multiple FF's followed by a 0 as meaning a single FF data
330 * byte. This data pattern is not valid according to the standard.
331 */
332 do {
333 if (bytes_in_buffer == 0) {
334 if (! (*cinfo->src->fill_input_buffer) (cinfo))
335 return FALSE;
336 next_input_byte = cinfo->src->next_input_byte;
337 bytes_in_buffer = cinfo->src->bytes_in_buffer;
338 }
339 bytes_in_buffer--;
340 c = GETJOCTET(*next_input_byte++);
341 } while (c == 0xFF);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000342
DRCe5eaf372014-05-09 18:00:32 +0000343 if (c == 0) {
344 /* Found FF/00, which represents an FF data byte */
345 c = 0xFF;
346 } else {
347 /* Oops, it's actually a marker indicating end of compressed data.
348 * Save the marker code for later use.
349 * Fine point: it might appear that we should save the marker into
350 * bitread working state, not straight into permanent state. But
351 * once we have hit a marker, we cannot need to suspend within the
352 * current MCU, because we will read no more bytes from the data
353 * source. So it is OK to update permanent state right away.
354 */
355 cinfo->unread_marker = c;
356 /* See if we need to insert some fake zero bits. */
357 goto no_more_bytes;
358 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000359 }
360
361 /* OK, load c into get_buffer */
362 get_buffer = (get_buffer << 8) | c;
363 bits_left += 8;
364 } /* end while */
365 } else {
366 no_more_bytes:
367 /* We get here if we've read the marker that terminates the compressed
368 * data segment. There should be enough bits in the buffer register
369 * to satisfy the request; if so, no problem.
370 */
371 if (nbits > bits_left) {
372 /* Uh-oh. Report corrupted data to user and stuff zeroes into
373 * the data stream, so that we can produce some kind of image.
374 * We use a nonvolatile flag to ensure that only one warning message
375 * appears per data segment.
376 */
377 if (! cinfo->entropy->insufficient_data) {
DRCe5eaf372014-05-09 18:00:32 +0000378 WARNMS(cinfo, JWRN_HIT_MARKER);
379 cinfo->entropy->insufficient_data = TRUE;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000380 }
381 /* Fill the buffer with zero bits */
382 get_buffer <<= MIN_GET_BITS - bits_left;
383 bits_left = MIN_GET_BITS;
384 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000385 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000386
387 /* Unload the local registers */
388 state->next_input_byte = next_input_byte;
389 state->bytes_in_buffer = bytes_in_buffer;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000390 state->get_buffer = get_buffer;
391 state->bits_left = bits_left;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000392
393 return TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000394}
395
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000396
DRCbc515802011-04-18 06:52:07 +0000397/* Macro version of the above, which performs much better but does not
398 handle markers. We have to hand off any blocks with markers to the
399 slower routines. */
400
401#define GET_BYTE \
402{ \
403 register int c0, c1; \
404 c0 = GETJOCTET(*buffer++); \
405 c1 = GETJOCTET(*buffer); \
406 /* Pre-execute most common case */ \
407 get_buffer = (get_buffer << 8) | c0; \
408 bits_left += 8; \
409 if (c0 == 0xFF) { \
410 /* Pre-execute case of FF/00, which represents an FF data byte */ \
411 buffer++; \
412 if (c1 != 0) { \
413 /* Oops, it's actually a marker indicating end of compressed data. */ \
414 cinfo->unread_marker = c1; \
415 /* Back out pre-execution and fill the buffer with zero bits */ \
416 buffer -= 2; \
417 get_buffer &= ~0xFF; \
418 } \
419 } \
420}
421
DRC3ebcc322015-05-15 19:09:44 +0000422#if SIZEOF_SIZE_T==8 || defined(_WIN64)
DRCbc515802011-04-18 06:52:07 +0000423
424/* Pre-fetch 48 bytes, because the holding register is 64-bit */
425#define FILL_BIT_BUFFER_FAST \
426 if (bits_left < 16) { \
427 GET_BYTE GET_BYTE GET_BYTE GET_BYTE GET_BYTE GET_BYTE \
428 }
429
430#else
431
432/* Pre-fetch 16 bytes, because the holding register is 32-bit */
433#define FILL_BIT_BUFFER_FAST \
434 if (bits_left < 16) { \
435 GET_BYTE GET_BYTE \
436 }
437
438#endif
439
440
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000441/*
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000442 * Out-of-line code for Huffman code decoding.
443 * See jdhuff.h for info about usage.
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000444 */
445
Thomas G. Lane489583f1996-02-07 00:00:00 +0000446GLOBAL(int)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000447jpeg_huff_decode (bitread_working_state * state,
DRCe5eaf372014-05-09 18:00:32 +0000448 register bit_buf_type get_buffer, register int bits_left,
449 d_derived_tbl * htbl, int min_bits)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000450{
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000451 register int l = min_bits;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000452 register INT32 code;
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000453
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000454 /* HUFF_DECODE has determined that the code is at least min_bits */
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000455 /* bits long, so fetch that many bits in one swoop. */
456
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000457 CHECK_BIT_BUFFER(*state, l, return -1);
458 code = GET_BITS(l);
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000459
460 /* Collect the rest of the Huffman code one bit at a time. */
461 /* This is per Figure F.16 in the JPEG spec. */
462
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000463 while (code > htbl->maxcode[l]) {
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000464 code <<= 1;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000465 CHECK_BIT_BUFFER(*state, 1, return -1);
466 code |= GET_BITS(1);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000467 l++;
468 }
Thomas G. Lanebd543f01991-12-13 00:00:00 +0000469
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000470 /* Unload the local registers */
471 state->get_buffer = get_buffer;
472 state->bits_left = bits_left;
473
Thomas G. Lanebd543f01991-12-13 00:00:00 +0000474 /* With garbage input we may reach the sentinel value l = 17. */
475
476 if (l > 16) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000477 WARNMS(state->cinfo, JWRN_HUFF_BAD_CODE);
DRCe5eaf372014-05-09 18:00:32 +0000478 return 0; /* fake a zero as the safest result */
Thomas G. Lanebd543f01991-12-13 00:00:00 +0000479 }
480
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000481 return htbl->pub->huffval[ (int) (code + htbl->valoffset[l]) ];
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000482}
483
484
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000485/*
486 * Figure F.12: extend sign bit.
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000487 * On some machines, a shift and add will be faster than a table lookup.
488 */
489
DRCe2816642009-09-28 00:33:02 +0000490#define AVOID_TABLES
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000491#ifdef AVOID_TABLES
492
DRCe2816642009-09-28 00:33:02 +0000493#define HUFF_EXTEND(x,s) ((x) + ((((x) - (1<<((s)-1))) >> 31) & (((-1)<<(s)) + 1)))
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000494
495#else
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000496
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000497#define HUFF_EXTEND(x,s) ((x) < extend_test[s] ? (x) + extend_offset[s] : (x))
Thomas G. Lanebd543f01991-12-13 00:00:00 +0000498
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000499static const int extend_test[16] = /* entry n is 2**(n-1) */
500 { 0, 0x0001, 0x0002, 0x0004, 0x0008, 0x0010, 0x0020, 0x0040, 0x0080,
501 0x0100, 0x0200, 0x0400, 0x0800, 0x1000, 0x2000, 0x4000 };
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000502
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000503static const int extend_offset[16] = /* entry n is (-1 << n) + 1 */
504 { 0, ((-1)<<1) + 1, ((-1)<<2) + 1, ((-1)<<3) + 1, ((-1)<<4) + 1,
505 ((-1)<<5) + 1, ((-1)<<6) + 1, ((-1)<<7) + 1, ((-1)<<8) + 1,
506 ((-1)<<9) + 1, ((-1)<<10) + 1, ((-1)<<11) + 1, ((-1)<<12) + 1,
507 ((-1)<<13) + 1, ((-1)<<14) + 1, ((-1)<<15) + 1 };
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000508
Thomas G. Lanecc7150e1993-02-18 00:00:00 +0000509#endif /* AVOID_TABLES */
510
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000511
512/*
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000513 * Check for a restart marker & resynchronize decoder.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000514 * Returns FALSE if must suspend.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000515 */
516
Thomas G. Lane489583f1996-02-07 00:00:00 +0000517LOCAL(boolean)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000518process_restart (j_decompress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000519{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000520 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy;
521 int ci;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000522
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000523 /* Throw away any unused bits remaining in bit buffer; */
524 /* include any full bytes in next_marker's count of discarded bytes */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000525 cinfo->marker->discarded_bytes += entropy->bitstate.bits_left / 8;
526 entropy->bitstate.bits_left = 0;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000527
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000528 /* Advance past the RSTn marker */
529 if (! (*cinfo->marker->read_restart_marker) (cinfo))
530 return FALSE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000531
532 /* Re-initialize DC predictions to 0 */
533 for (ci = 0; ci < cinfo->comps_in_scan; ci++)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000534 entropy->saved.last_dc_val[ci] = 0;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000535
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000536 /* Reset restart counter */
537 entropy->restarts_to_go = cinfo->restart_interval;
538
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000539 /* Reset out-of-data flag, unless read_restart_marker left us smack up
540 * against a marker. In that case we will end up treating the next data
541 * segment as empty, and we can avoid producing bogus output pixels by
542 * leaving the flag set.
543 */
544 if (cinfo->unread_marker == 0)
545 entropy->pub.insufficient_data = FALSE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000546
547 return TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000548}
549
550
DRCe2816642009-09-28 00:33:02 +0000551LOCAL(boolean)
552decode_mcu_slow (j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
553{
554 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy;
555 BITREAD_STATE_VARS;
556 int blkn;
557 savable_state state;
558 /* Outer loop handles each block in the MCU */
559
560 /* Load up working state */
561 BITREAD_LOAD_STATE(cinfo,entropy->bitstate);
562 ASSIGN_STATE(state, entropy->saved);
563
564 for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
DRCeb32cc12015-06-25 03:44:36 +0000565 JBLOCKROW block = MCU_data ? MCU_data[blkn] : NULL;
DRCe2816642009-09-28 00:33:02 +0000566 d_derived_tbl * dctbl = entropy->dc_cur_tbls[blkn];
567 d_derived_tbl * actbl = entropy->ac_cur_tbls[blkn];
568 register int s, k, r;
569
570 /* Decode a single block's worth of coefficients */
571
572 /* Section F.2.2.1: decode the DC coefficient difference */
573 HUFF_DECODE(s, br_state, dctbl, return FALSE, label1);
574 if (s) {
575 CHECK_BIT_BUFFER(br_state, s, return FALSE);
576 r = GET_BITS(s);
577 s = HUFF_EXTEND(r, s);
578 }
579
580 if (entropy->dc_needed[blkn]) {
581 /* Convert DC difference to actual value, update last_dc_val */
582 int ci = cinfo->MCU_membership[blkn];
583 s += state.last_dc_val[ci];
584 state.last_dc_val[ci] = s;
DRCeb32cc12015-06-25 03:44:36 +0000585 if (block) {
586 /* Output the DC coefficient (assumes jpeg_natural_order[0] = 0) */
587 (*block)[0] = (JCOEF) s;
588 }
DRCe2816642009-09-28 00:33:02 +0000589 }
590
DRCeb32cc12015-06-25 03:44:36 +0000591 if (entropy->ac_needed[blkn] && block) {
DRCe2816642009-09-28 00:33:02 +0000592
593 /* Section F.2.2.2: decode the AC coefficients */
594 /* Since zeroes are skipped, output area must be cleared beforehand */
595 for (k = 1; k < DCTSIZE2; k++) {
596 HUFF_DECODE(s, br_state, actbl, return FALSE, label2);
597
598 r = s >> 4;
599 s &= 15;
DRCe5eaf372014-05-09 18:00:32 +0000600
DRCe2816642009-09-28 00:33:02 +0000601 if (s) {
602 k += r;
603 CHECK_BIT_BUFFER(br_state, s, return FALSE);
604 r = GET_BITS(s);
605 s = HUFF_EXTEND(r, s);
606 /* Output coefficient in natural (dezigzagged) order.
607 * Note: the extra entries in jpeg_natural_order[] will save us
608 * if k >= DCTSIZE2, which could happen if the data is corrupted.
609 */
610 (*block)[jpeg_natural_order[k]] = (JCOEF) s;
611 } else {
612 if (r != 15)
613 break;
614 k += 15;
615 }
616 }
617
618 } else {
619
620 /* Section F.2.2.2: decode the AC coefficients */
621 /* In this path we just discard the values */
622 for (k = 1; k < DCTSIZE2; k++) {
623 HUFF_DECODE(s, br_state, actbl, return FALSE, label3);
624
625 r = s >> 4;
626 s &= 15;
627
628 if (s) {
629 k += r;
630 CHECK_BIT_BUFFER(br_state, s, return FALSE);
631 DROP_BITS(s);
632 } else {
633 if (r != 15)
634 break;
635 k += 15;
636 }
637 }
638 }
639 }
640
641 /* Completed MCU, so update state */
642 BITREAD_SAVE_STATE(cinfo,entropy->bitstate);
643 ASSIGN_STATE(entropy->saved, state);
644 return TRUE;
645}
646
647
DRCe2816642009-09-28 00:33:02 +0000648LOCAL(boolean)
649decode_mcu_fast (j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
650{
651 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy;
652 BITREAD_STATE_VARS;
653 JOCTET *buffer;
654 int blkn;
655 savable_state state;
656 /* Outer loop handles each block in the MCU */
657
658 /* Load up working state */
659 BITREAD_LOAD_STATE(cinfo,entropy->bitstate);
660 buffer = (JOCTET *) br_state.next_input_byte;
661 ASSIGN_STATE(state, entropy->saved);
662
663 for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
DRCeb32cc12015-06-25 03:44:36 +0000664 JBLOCKROW block = MCU_data ? MCU_data[blkn] : NULL;
DRCe2816642009-09-28 00:33:02 +0000665 d_derived_tbl * dctbl = entropy->dc_cur_tbls[blkn];
666 d_derived_tbl * actbl = entropy->ac_cur_tbls[blkn];
667 register int s, k, r, l;
668
669 HUFF_DECODE_FAST(s, l, dctbl);
670 if (s) {
DRCbc515802011-04-18 06:52:07 +0000671 FILL_BIT_BUFFER_FAST
DRCe2816642009-09-28 00:33:02 +0000672 r = GET_BITS(s);
673 s = HUFF_EXTEND(r, s);
674 }
675
676 if (entropy->dc_needed[blkn]) {
677 int ci = cinfo->MCU_membership[blkn];
678 s += state.last_dc_val[ci];
679 state.last_dc_val[ci] = s;
DRCeb32cc12015-06-25 03:44:36 +0000680 if (block)
681 (*block)[0] = (JCOEF) s;
DRCe2816642009-09-28 00:33:02 +0000682 }
683
DRCeb32cc12015-06-25 03:44:36 +0000684 if (entropy->ac_needed[blkn] && block) {
DRCe2816642009-09-28 00:33:02 +0000685
686 for (k = 1; k < DCTSIZE2; k++) {
687 HUFF_DECODE_FAST(s, l, actbl);
688 r = s >> 4;
689 s &= 15;
DRCe5eaf372014-05-09 18:00:32 +0000690
DRCe2816642009-09-28 00:33:02 +0000691 if (s) {
692 k += r;
DRCbc515802011-04-18 06:52:07 +0000693 FILL_BIT_BUFFER_FAST
DRCe2816642009-09-28 00:33:02 +0000694 r = GET_BITS(s);
695 s = HUFF_EXTEND(r, s);
696 (*block)[jpeg_natural_order[k]] = (JCOEF) s;
697 } else {
698 if (r != 15) break;
699 k += 15;
700 }
701 }
702
703 } else {
704
705 for (k = 1; k < DCTSIZE2; k++) {
706 HUFF_DECODE_FAST(s, l, actbl);
707 r = s >> 4;
708 s &= 15;
709
710 if (s) {
711 k += r;
DRCbc515802011-04-18 06:52:07 +0000712 FILL_BIT_BUFFER_FAST
DRCe2816642009-09-28 00:33:02 +0000713 DROP_BITS(s);
714 } else {
715 if (r != 15) break;
716 k += 15;
717 }
718 }
719 }
720 }
721
DRC051d9622011-04-16 18:53:26 +0000722 if (cinfo->unread_marker != 0) {
723 cinfo->unread_marker = 0;
724 return FALSE;
DRCfe6a2ee2011-03-18 05:49:26 +0000725 }
726
DRCe2816642009-09-28 00:33:02 +0000727 br_state.bytes_in_buffer -= (buffer - br_state.next_input_byte);
728 br_state.next_input_byte = buffer;
729 BITREAD_SAVE_STATE(cinfo,entropy->bitstate);
730 ASSIGN_STATE(entropy->saved, state);
731 return TRUE;
732}
733
734
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000735/*
736 * Decode and return one MCU's worth of Huffman-compressed coefficients.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000737 * The coefficients are reordered from zigzag order into natural array order,
738 * but are not dequantized.
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000739 *
740 * The i'th block of the MCU is stored into the block pointed to by
741 * MCU_data[i]. WE ASSUME THIS AREA HAS BEEN ZEROED BY THE CALLER.
742 * (Wholesale zeroing is usually a little faster than retail...)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000743 *
744 * Returns FALSE if data source requested suspension. In that case no
745 * changes have been made to permanent state. (Exception: some output
746 * coefficients may already have been assigned. This is harmless for
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000747 * this module, since we'll just re-assign them on the next call.)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000748 */
749
DRCe2816642009-09-28 00:33:02 +0000750#define BUFSIZE (DCTSIZE2 * 2)
751
Thomas G. Lane489583f1996-02-07 00:00:00 +0000752METHODDEF(boolean)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000753decode_mcu (j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000754{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000755 huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy;
DRC97f8ec42010-03-20 22:38:53 +0000756 int usefast = 1;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000757
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000758 /* Process restart marker if needed; may have to suspend */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000759 if (cinfo->restart_interval) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000760 if (entropy->restarts_to_go == 0)
761 if (! process_restart(cinfo))
DRCe5eaf372014-05-09 18:00:32 +0000762 return FALSE;
DRC97f8ec42010-03-20 22:38:53 +0000763 usefast = 0;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000764 }
765
DRCefe28ce2012-01-17 11:48:38 +0000766 if (cinfo->src->bytes_in_buffer < BUFSIZE * (size_t)cinfo->blocks_in_MCU
DRC051d9622011-04-16 18:53:26 +0000767 || cinfo->unread_marker != 0)
DRC97f8ec42010-03-20 22:38:53 +0000768 usefast = 0;
769
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000770 /* If we've run out of data, just leave the MCU set to zeroes.
771 * This way, we return uniform gray for the remainder of the segment.
772 */
773 if (! entropy->pub.insufficient_data) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000774
DRC97f8ec42010-03-20 22:38:53 +0000775 if (usefast) {
DRC051d9622011-04-16 18:53:26 +0000776 if (!decode_mcu_fast(cinfo, MCU_data)) goto use_slow;
DRCe2816642009-09-28 00:33:02 +0000777 }
778 else {
DRC051d9622011-04-16 18:53:26 +0000779 use_slow:
DRCe2816642009-09-28 00:33:02 +0000780 if (!decode_mcu_slow(cinfo, MCU_data)) return FALSE;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000781 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000782
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000783 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000784
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000785 /* Account for restart interval (no-op if not using restarts) */
786 entropy->restarts_to_go--;
787
788 return TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000789}
790
791
792/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000793 * Module initialization routine for Huffman entropy decoding.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000794 */
795
Thomas G. Lane489583f1996-02-07 00:00:00 +0000796GLOBAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000797jinit_huff_decoder (j_decompress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000798{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000799 huff_entropy_ptr entropy;
800 int i;
801
DRCa1135062014-01-31 17:22:15 +0000802 /* Motion JPEG frames typically do not include the Huffman tables if they
803 are the default tables. Thus, if the tables are not set by the time
804 the Huffman decoder is initialized (usually within the body of
805 jpeg_start_decompress()), we set them to default values. */
806 std_huff_tables((j_common_ptr) cinfo);
807
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000808 entropy = (huff_entropy_ptr)
809 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000810 sizeof(huff_entropy_decoder));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000811 cinfo->entropy = (struct jpeg_entropy_decoder *) entropy;
812 entropy->pub.start_pass = start_pass_huff_decoder;
813 entropy->pub.decode_mcu = decode_mcu;
814
815 /* Mark tables unallocated */
816 for (i = 0; i < NUM_HUFF_TBLS; i++) {
817 entropy->dc_derived_tbls[i] = entropy->ac_derived_tbls[i] = NULL;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000818 }
819}