blob: 939b3e76a11e089c666f874e806bb03979d1b205 [file] [log] [blame]
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001/*
2 * jchuff.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:
Leon Scroggins III3993b372018-07-16 10:43:45 -04007 * Copyright (C) 2009-2011, 2014-2016, 2018, D. R. Commander.
Alex Naidis6eb7d372016-10-16 23:10:08 +02008 * Copyright (C) 2015, Matthieu Darbois.
9 * For conditions of distribution and use, see the accompanying README.ijg
10 * file.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000011 *
12 * This file contains Huffman entropy encoding routines.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000013 *
14 * Much of the complexity here has to do with supporting output suspension.
15 * If the data destination module demands suspension, we want to be able to
16 * back up to the start of the current MCU. To do this, we copy state
17 * variables into local working storage, and update them back to the
18 * permanent JPEG objects only upon successful completion of an MCU.
Leon Scroggins III3993b372018-07-16 10:43:45 -040019 *
20 * NOTE: All referenced figures are from
21 * Recommendation ITU-T T.81 (1992) | ISO/IEC 10918-1:1994.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000022 */
23
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000024#define JPEG_INTERNALS
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000025#include "jinclude.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000026#include "jpeglib.h"
Alex Naidis6eb7d372016-10-16 23:10:08 +020027#include "jsimd.h"
28#include "jconfigint.h"
DRC8443e522009-07-30 08:35:06 +000029#include <limits.h>
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000030
DRC0cfc4c12014-03-28 18:33:25 +000031/*
32 * NOTE: If USE_CLZ_INTRINSIC is defined, then clz/bsr instructions will be
33 * used for bit counting rather than the lookup table. This will reduce the
34 * memory footprint by 64k, which is important for some mobile applications
35 * that create many isolated instances of libjpeg-turbo (web browsers, for
36 * instance.) This may improve performance on some mobile platforms as well.
37 * This feature is enabled by default only on ARM processors, because some x86
38 * chips have a slow implementation of bsr, and the use of clz/bsr cannot be
39 * shown to have a significant performance impact even on the x86 chips that
40 * have a fast implementation of it. When building for ARMv6, you can
41 * explicitly disable the use of clz/bsr by adding -mthumb to the compiler
42 * flags (this defines __thumb__).
43 */
44
45/* NOTE: Both GCC and Clang define __GNUC__ */
DRC803b5d22014-11-18 15:56:43 +000046#if defined __GNUC__ && (defined __arm__ || defined __aarch64__)
DRC0cfc4c12014-03-28 18:33:25 +000047#if !defined __thumb__ || defined __thumb2__
48#define USE_CLZ_INTRINSIC
49#endif
50#endif
51
52#ifdef USE_CLZ_INTRINSIC
Leon Scroggins III3993b372018-07-16 10:43:45 -040053#define JPEG_NBITS_NONZERO(x) (32 - __builtin_clz(x))
54#define JPEG_NBITS(x) (x ? JPEG_NBITS_NONZERO(x) : 0)
DRC0cfc4c12014-03-28 18:33:25 +000055#else
DRCef9a4e02014-03-28 18:50:30 +000056#include "jpeg_nbits_table.h"
Leon Scroggins III3993b372018-07-16 10:43:45 -040057#define JPEG_NBITS(x) (jpeg_nbits_table[x])
58#define JPEG_NBITS_NONZERO(x) JPEG_NBITS(x)
DRC3cba8db2009-03-16 23:58:30 +000059#endif
60
DRC6bb57b72011-04-26 22:08:31 +000061
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000062/* Expanded entropy encoder object for Huffman encoding.
63 *
64 * The savable_state subrecord contains fields that change within an MCU,
65 * but must not be updated permanently until we complete the MCU.
66 */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000067
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000068typedef struct {
Leon Scroggins III3993b372018-07-16 10:43:45 -040069 size_t put_buffer; /* current bit-accumulation buffer */
70 int put_bits; /* # of bits now in it */
71 int last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each component */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000072} savable_state;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000073
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000074/* This macro is to work around compilers with missing or broken
75 * structure assignment. You'll need to fix this code if you have
76 * such a compiler and you change MAX_COMPS_IN_SCAN.
77 */
78
79#ifndef NO_STRUCT_ASSIGN
Leon Scroggins III3993b372018-07-16 10:43:45 -040080#define ASSIGN_STATE(dest, src) ((dest) = (src))
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000081#else
82#if MAX_COMPS_IN_SCAN == 4
Leon Scroggins III3993b372018-07-16 10:43:45 -040083#define ASSIGN_STATE(dest, src) \
84 ((dest).put_buffer = (src).put_buffer, \
85 (dest).put_bits = (src).put_bits, \
86 (dest).last_dc_val[0] = (src).last_dc_val[0], \
87 (dest).last_dc_val[1] = (src).last_dc_val[1], \
88 (dest).last_dc_val[2] = (src).last_dc_val[2], \
89 (dest).last_dc_val[3] = (src).last_dc_val[3])
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000090#endif
91#endif
92
93
94typedef struct {
95 struct jpeg_entropy_encoder pub; /* public fields */
96
DRCe5eaf372014-05-09 18:00:32 +000097 savable_state saved; /* Bit buffer & DC state at start of MCU */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000098
99 /* These fields are NOT loaded into local working state. */
DRCe5eaf372014-05-09 18:00:32 +0000100 unsigned int restarts_to_go; /* MCUs left in this restart interval */
101 int next_restart_num; /* next restart number to write (0-7) */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000102
103 /* Pointers to derived tables (these workspaces have image lifespan) */
Alex Naidis6eb7d372016-10-16 23:10:08 +0200104 c_derived_tbl *dc_derived_tbls[NUM_HUFF_TBLS];
105 c_derived_tbl *ac_derived_tbls[NUM_HUFF_TBLS];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000106
DRCe5eaf372014-05-09 18:00:32 +0000107#ifdef ENTROPY_OPT_SUPPORTED /* Statistics tables for optimization */
Alex Naidis6eb7d372016-10-16 23:10:08 +0200108 long *dc_count_ptrs[NUM_HUFF_TBLS];
109 long *ac_count_ptrs[NUM_HUFF_TBLS];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000110#endif
Alex Naidis6eb7d372016-10-16 23:10:08 +0200111
112 int simd;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000113} huff_entropy_encoder;
114
Alex Naidis6eb7d372016-10-16 23:10:08 +0200115typedef huff_entropy_encoder *huff_entropy_ptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000116
117/* Working state while writing an MCU.
118 * This struct contains all the fields that are needed by subroutines.
119 */
120
121typedef struct {
Alex Naidis6eb7d372016-10-16 23:10:08 +0200122 JOCTET *next_output_byte; /* => next byte to write in buffer */
DRCe5eaf372014-05-09 18:00:32 +0000123 size_t free_in_buffer; /* # of byte spaces remaining in buffer */
124 savable_state cur; /* Current bit buffer & DC state */
125 j_compress_ptr cinfo; /* dump_buffer needs access to this */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000126} working_state;
127
128
129/* Forward declarations */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400130METHODDEF(boolean) encode_mcu_huff(j_compress_ptr cinfo, JBLOCKROW *MCU_data);
131METHODDEF(void) finish_pass_huff(j_compress_ptr cinfo);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000132#ifdef ENTROPY_OPT_SUPPORTED
Leon Scroggins III3993b372018-07-16 10:43:45 -0400133METHODDEF(boolean) encode_mcu_gather(j_compress_ptr cinfo,
134 JBLOCKROW *MCU_data);
135METHODDEF(void) finish_pass_gather(j_compress_ptr cinfo);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000136#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000137
138
139/*
140 * Initialize for a Huffman-compressed scan.
141 * If gather_statistics is TRUE, we do not output anything during the scan,
142 * just count the Huffman symbols used and generate Huffman code tables.
143 */
144
Thomas G. Lane489583f1996-02-07 00:00:00 +0000145METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400146start_pass_huff(j_compress_ptr cinfo, boolean gather_statistics)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000147{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400148 huff_entropy_ptr entropy = (huff_entropy_ptr)cinfo->entropy;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000149 int ci, dctbl, actbl;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200150 jpeg_component_info *compptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000151
152 if (gather_statistics) {
153#ifdef ENTROPY_OPT_SUPPORTED
154 entropy->pub.encode_mcu = encode_mcu_gather;
155 entropy->pub.finish_pass = finish_pass_gather;
156#else
157 ERREXIT(cinfo, JERR_NOT_COMPILED);
158#endif
159 } else {
160 entropy->pub.encode_mcu = encode_mcu_huff;
161 entropy->pub.finish_pass = finish_pass_huff;
162 }
163
Alex Naidis6eb7d372016-10-16 23:10:08 +0200164 entropy->simd = jsimd_can_huff_encode_one_block();
165
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000166 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
167 compptr = cinfo->cur_comp_info[ci];
168 dctbl = compptr->dc_tbl_no;
169 actbl = compptr->ac_tbl_no;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000170 if (gather_statistics) {
171#ifdef ENTROPY_OPT_SUPPORTED
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000172 /* Check for invalid table indexes */
173 /* (make_c_derived_tbl does this in the other path) */
174 if (dctbl < 0 || dctbl >= NUM_HUFF_TBLS)
DRCe5eaf372014-05-09 18:00:32 +0000175 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, dctbl);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000176 if (actbl < 0 || actbl >= NUM_HUFF_TBLS)
DRCe5eaf372014-05-09 18:00:32 +0000177 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, actbl);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000178 /* Allocate and zero the statistics tables */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000179 /* Note that jpeg_gen_optimal_table expects 257 entries in each table! */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000180 if (entropy->dc_count_ptrs[dctbl] == NULL)
DRCe5eaf372014-05-09 18:00:32 +0000181 entropy->dc_count_ptrs[dctbl] = (long *)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400182 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000183 257 * sizeof(long));
184 MEMZERO(entropy->dc_count_ptrs[dctbl], 257 * sizeof(long));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000185 if (entropy->ac_count_ptrs[actbl] == NULL)
DRCe5eaf372014-05-09 18:00:32 +0000186 entropy->ac_count_ptrs[actbl] = (long *)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400187 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000188 257 * sizeof(long));
189 MEMZERO(entropy->ac_count_ptrs[actbl], 257 * sizeof(long));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000190#endif
191 } else {
192 /* Compute derived values for Huffman tables */
193 /* We may do this more than once for a table, but it's not expensive */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000194 jpeg_make_c_derived_tbl(cinfo, TRUE, dctbl,
Leon Scroggins III3993b372018-07-16 10:43:45 -0400195 &entropy->dc_derived_tbls[dctbl]);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000196 jpeg_make_c_derived_tbl(cinfo, FALSE, actbl,
Leon Scroggins III3993b372018-07-16 10:43:45 -0400197 &entropy->ac_derived_tbls[actbl]);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000198 }
199 /* Initialize DC predictions to 0 */
200 entropy->saved.last_dc_val[ci] = 0;
201 }
202
203 /* Initialize bit buffer to empty */
204 entropy->saved.put_buffer = 0;
205 entropy->saved.put_bits = 0;
206
207 /* Initialize restart stuff */
208 entropy->restarts_to_go = cinfo->restart_interval;
209 entropy->next_restart_num = 0;
210}
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000211
212
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000213/*
214 * Compute the derived values for a Huffman table.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000215 * This routine also performs some validation checks on the table.
216 *
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000217 * Note this is also used by jcphuff.c.
218 */
219
Thomas G. Lane489583f1996-02-07 00:00:00 +0000220GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400221jpeg_make_c_derived_tbl(j_compress_ptr cinfo, boolean isDC, int tblno,
222 c_derived_tbl **pdtbl)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000223{
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000224 JHUFF_TBL *htbl;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000225 c_derived_tbl *dtbl;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000226 int p, i, l, lastp, si, maxsymbol;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000227 char huffsize[257];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000228 unsigned int huffcode[257];
229 unsigned int code;
230
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000231 /* Note that huffsize[] and huffcode[] are filled in code-length order,
232 * paralleling the order of the symbols themselves in htbl->huffval[].
233 */
234
235 /* Find the input Huffman table */
236 if (tblno < 0 || tblno >= NUM_HUFF_TBLS)
237 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tblno);
238 htbl =
239 isDC ? cinfo->dc_huff_tbl_ptrs[tblno] : cinfo->ac_huff_tbl_ptrs[tblno];
240 if (htbl == NULL)
241 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tblno);
242
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000243 /* Allocate a workspace if we haven't already done so. */
244 if (*pdtbl == NULL)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000245 *pdtbl = (c_derived_tbl *)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400246 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000247 sizeof(c_derived_tbl));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000248 dtbl = *pdtbl;
DRCe5eaf372014-05-09 18:00:32 +0000249
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000250 /* Figure C.1: make table of Huffman code length for each symbol */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000251
252 p = 0;
253 for (l = 1; l <= 16; l++) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400254 i = (int)htbl->bits[l];
DRCe5eaf372014-05-09 18:00:32 +0000255 if (i < 0 || p + i > 256) /* protect against table overrun */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000256 ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
257 while (i--)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400258 huffsize[p++] = (char)l;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000259 }
260 huffsize[p] = 0;
261 lastp = p;
DRCe5eaf372014-05-09 18:00:32 +0000262
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000263 /* Figure C.2: generate the codes themselves */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000264 /* We also validate that the counts represent a legal Huffman code tree. */
265
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000266 code = 0;
267 si = huffsize[0];
268 p = 0;
269 while (huffsize[p]) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400270 while (((int)huffsize[p]) == si) {
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000271 huffcode[p++] = code;
272 code++;
273 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000274 /* code is now 1 more than the last code used for codelength si; but
275 * it must still fit in si bits, since no code is allowed to be all ones.
276 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400277 if (((JLONG)code) >= (((JLONG)1) << si))
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000278 ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000279 code <<= 1;
280 si++;
281 }
DRCe5eaf372014-05-09 18:00:32 +0000282
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000283 /* Figure C.3: generate encoding tables */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000284 /* These are code and size indexed by symbol value */
285
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000286 /* Set all codeless symbols to have code length 0;
287 * this lets us detect duplicate VAL entries here, and later
288 * allows emit_bits to detect any attempt to emit such symbols.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000289 */
DRC5de454b2014-05-18 19:04:03 +0000290 MEMZERO(dtbl->ehufsi, sizeof(dtbl->ehufsi));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000291
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000292 /* This is also a convenient place to check for out-of-range
293 * and duplicated VAL entries. We allow 0..255 for AC symbols
294 * but only 0..15 for DC. (We could constrain them further
295 * based on data depth and mode, but this seems enough.)
296 */
297 maxsymbol = isDC ? 15 : 255;
298
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000299 for (p = 0; p < lastp; p++) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000300 i = htbl->huffval[p];
301 if (i < 0 || i > maxsymbol || dtbl->ehufsi[i])
302 ERREXIT(cinfo, JERR_BAD_HUFF_TABLE);
303 dtbl->ehufco[i] = huffcode[p];
304 dtbl->ehufsi[i] = huffsize[p];
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000305 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000306}
307
308
309/* Outputting bytes to the file */
310
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000311/* Emit a byte, taking 'action' if must suspend. */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400312#define emit_byte(state, val, action) { \
313 *(state)->next_output_byte++ = (JOCTET)(val); \
314 if (--(state)->free_in_buffer == 0) \
315 if (!dump_buffer(state)) \
316 { action; } \
317}
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000318
319
Thomas G. Lane489583f1996-02-07 00:00:00 +0000320LOCAL(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400321dump_buffer(working_state *state)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000322/* Empty the output buffer; return TRUE if successful, FALSE if must suspend */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000323{
Alex Naidis6eb7d372016-10-16 23:10:08 +0200324 struct jpeg_destination_mgr *dest = state->cinfo->dest;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000325
Leon Scroggins III3993b372018-07-16 10:43:45 -0400326 if (!(*dest->empty_output_buffer) (state->cinfo))
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000327 return FALSE;
328 /* After a successful buffer dump, must reset buffer pointers */
329 state->next_output_byte = dest->next_output_byte;
330 state->free_in_buffer = dest->free_in_buffer;
331 return TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000332}
333
334
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000335/* Outputting bits to the file */
336
DRC6bb57b72011-04-26 22:08:31 +0000337/* These macros perform the same task as the emit_bits() function in the
338 * original libjpeg code. In addition to reducing overhead by explicitly
339 * inlining the code, additional performance is achieved by taking into
340 * account the size of the bit buffer and waiting until it is almost full
341 * before emptying it. This mostly benefits 64-bit platforms, since 6
342 * bytes can be stored in a 64-bit bit buffer before it has to be emptied.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000343 */
344
DRC6bb57b72011-04-26 22:08:31 +0000345#define EMIT_BYTE() { \
346 JOCTET c; \
347 put_bits -= 8; \
348 c = (JOCTET)GETJOCTET(put_buffer >> put_bits); \
349 *buffer++ = c; \
350 if (c == 0xFF) /* need to stuff a zero byte? */ \
351 *buffer++ = 0; \
Leon Scroggins III3993b372018-07-16 10:43:45 -0400352}
DRC8443e522009-07-30 08:35:06 +0000353
DRC6bb57b72011-04-26 22:08:31 +0000354#define PUT_BITS(code, size) { \
355 put_bits += size; \
356 put_buffer = (put_buffer << size) | code; \
DRC8443e522009-07-30 08:35:06 +0000357}
358
DRC6bb57b72011-04-26 22:08:31 +0000359#define CHECKBUF15() { \
360 if (put_bits > 15) { \
361 EMIT_BYTE() \
362 EMIT_BYTE() \
363 } \
DRC8443e522009-07-30 08:35:06 +0000364}
365
DRC6bb57b72011-04-26 22:08:31 +0000366#define CHECKBUF31() { \
367 if (put_bits > 31) { \
368 EMIT_BYTE() \
369 EMIT_BYTE() \
370 EMIT_BYTE() \
371 EMIT_BYTE() \
372 } \
DRC8443e522009-07-30 08:35:06 +0000373}
374
DRC6bb57b72011-04-26 22:08:31 +0000375#define CHECKBUF47() { \
376 if (put_bits > 47) { \
377 EMIT_BYTE() \
378 EMIT_BYTE() \
379 EMIT_BYTE() \
380 EMIT_BYTE() \
381 EMIT_BYTE() \
382 EMIT_BYTE() \
383 } \
384}
DRC8443e522009-07-30 08:35:06 +0000385
DRC3ebcc322015-05-15 19:09:44 +0000386#if !defined(_WIN32) && !defined(SIZEOF_SIZE_T)
387#error Cannot determine word size
DRCf64b36f2015-04-22 08:43:04 +0000388#endif
389
Leon Scroggins III3993b372018-07-16 10:43:45 -0400390#if SIZEOF_SIZE_T == 8 || defined(_WIN64)
DRC8443e522009-07-30 08:35:06 +0000391
DRC6bb57b72011-04-26 22:08:31 +0000392#define EMIT_BITS(code, size) { \
393 CHECKBUF47() \
394 PUT_BITS(code, size) \
395}
396
397#define EMIT_CODE(code, size) { \
Leon Scroggins III3993b372018-07-16 10:43:45 -0400398 temp2 &= (((JLONG)1) << nbits) - 1; \
DRC6bb57b72011-04-26 22:08:31 +0000399 CHECKBUF31() \
400 PUT_BITS(code, size) \
401 PUT_BITS(temp2, nbits) \
Leon Scroggins III3993b372018-07-16 10:43:45 -0400402}
DRC8443e522009-07-30 08:35:06 +0000403
404#else
405
DRC6bb57b72011-04-26 22:08:31 +0000406#define EMIT_BITS(code, size) { \
407 PUT_BITS(code, size) \
408 CHECKBUF15() \
409}
410
411#define EMIT_CODE(code, size) { \
Leon Scroggins III3993b372018-07-16 10:43:45 -0400412 temp2 &= (((JLONG)1) << nbits) - 1; \
DRC6bb57b72011-04-26 22:08:31 +0000413 PUT_BITS(code, size) \
414 CHECKBUF15() \
415 PUT_BITS(temp2, nbits) \
416 CHECKBUF15() \
Leon Scroggins III3993b372018-07-16 10:43:45 -0400417}
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000418
DRC8443e522009-07-30 08:35:06 +0000419#endif
420
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000421
DRC402a7152014-11-22 22:09:30 +0000422/* Although it is exceedingly rare, it is possible for a Huffman-encoded
423 * coefficient block to be larger than the 128-byte unencoded block. For each
424 * of the 64 coefficients, PUT_BITS is invoked twice, and each invocation can
425 * theoretically store 16 bits (for a maximum of 2048 bits or 256 bytes per
426 * encoded block.) If, for instance, one artificially sets the AC
427 * coefficients to alternating values of 32767 and -32768 (using the JPEG
428 * scanning order-- 1, 8, 16, etc.), then this will produce an encoded block
429 * larger than 200 bytes.
430 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400431#define BUFSIZE (DCTSIZE2 * 4)
DRC3cba8db2009-03-16 23:58:30 +0000432
DRC6bb57b72011-04-26 22:08:31 +0000433#define LOAD_BUFFER() { \
434 if (state->free_in_buffer < BUFSIZE) { \
435 localbuf = 1; \
436 buffer = _buffer; \
Leon Scroggins III3993b372018-07-16 10:43:45 -0400437 } else \
438 buffer = state->next_output_byte; \
439}
DRC3cba8db2009-03-16 23:58:30 +0000440
DRC6bb57b72011-04-26 22:08:31 +0000441#define STORE_BUFFER() { \
442 if (localbuf) { \
443 bytes = buffer - _buffer; \
444 buffer = _buffer; \
445 while (bytes > 0) { \
Leon Scroggins III3993b372018-07-16 10:43:45 -0400446 bytestocopy = MIN(bytes, state->free_in_buffer); \
DRC6bb57b72011-04-26 22:08:31 +0000447 MEMCOPY(state->next_output_byte, buffer, bytestocopy); \
448 state->next_output_byte += bytestocopy; \
449 buffer += bytestocopy; \
450 state->free_in_buffer -= bytestocopy; \
451 if (state->free_in_buffer == 0) \
Leon Scroggins III3993b372018-07-16 10:43:45 -0400452 if (!dump_buffer(state)) return FALSE; \
DRC6bb57b72011-04-26 22:08:31 +0000453 bytes -= bytestocopy; \
454 } \
Leon Scroggins III3993b372018-07-16 10:43:45 -0400455 } else { \
DRC6bb57b72011-04-26 22:08:31 +0000456 state->free_in_buffer -= (buffer - state->next_output_byte); \
457 state->next_output_byte = buffer; \
458 } \
Leon Scroggins III3993b372018-07-16 10:43:45 -0400459}
DRC3cba8db2009-03-16 23:58:30 +0000460
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000461
Thomas G. Lane489583f1996-02-07 00:00:00 +0000462LOCAL(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400463flush_bits(working_state *state)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000464{
DRCeddc3552014-08-21 03:38:14 +0000465 JOCTET _buffer[BUFSIZE], *buffer;
DRC04899092010-02-26 23:01:19 +0000466 size_t put_buffer; int put_bits;
467 size_t bytes, bytestocopy; int localbuf = 0;
DRC99313382009-03-12 17:24:27 +0000468
DRC99313382009-03-12 17:24:27 +0000469 put_buffer = state->cur.put_buffer;
470 put_bits = state->cur.put_bits;
DRC3cba8db2009-03-16 23:58:30 +0000471 LOAD_BUFFER()
DRC99313382009-03-12 17:24:27 +0000472
DRC6bb57b72011-04-26 22:08:31 +0000473 /* fill any partial byte with ones */
474 PUT_BITS(0x7F, 7)
475 while (put_bits >= 8) EMIT_BYTE()
DRC99313382009-03-12 17:24:27 +0000476
DRCe5eaf372014-05-09 18:00:32 +0000477 state->cur.put_buffer = 0; /* and reset bit-buffer to empty */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000478 state->cur.put_bits = 0;
DRC3cba8db2009-03-16 23:58:30 +0000479 STORE_BUFFER()
DRC99313382009-03-12 17:24:27 +0000480
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000481 return TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000482}
483
DRC6bb57b72011-04-26 22:08:31 +0000484
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000485/* Encode a single block's worth of coefficients */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000486
Thomas G. Lane489583f1996-02-07 00:00:00 +0000487LOCAL(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400488encode_one_block_simd(working_state *state, JCOEFPTR block, int last_dc_val,
489 c_derived_tbl *dctbl, c_derived_tbl *actbl)
Alex Naidis6eb7d372016-10-16 23:10:08 +0200490{
491 JOCTET _buffer[BUFSIZE], *buffer;
492 size_t bytes, bytestocopy; int localbuf = 0;
493
494 LOAD_BUFFER()
495
496 buffer = jsimd_huff_encode_one_block(state, buffer, block, last_dc_val,
497 dctbl, actbl);
498
499 STORE_BUFFER()
500
501 return TRUE;
502}
503
504LOCAL(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400505encode_one_block(working_state *state, JCOEFPTR block, int last_dc_val,
506 c_derived_tbl *dctbl, c_derived_tbl *actbl)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000507{
DRC6bb57b72011-04-26 22:08:31 +0000508 int temp, temp2, temp3;
DRC99313382009-03-12 17:24:27 +0000509 int nbits;
DRC6bb57b72011-04-26 22:08:31 +0000510 int r, code, size;
DRCeddc3552014-08-21 03:38:14 +0000511 JOCTET _buffer[BUFSIZE], *buffer;
DRC04899092010-02-26 23:01:19 +0000512 size_t put_buffer; int put_bits;
DRC99313382009-03-12 17:24:27 +0000513 int code_0xf0 = actbl->ehufco[0xf0], size_0xf0 = actbl->ehufsi[0xf0];
DRC04899092010-02-26 23:01:19 +0000514 size_t bytes, bytestocopy; int localbuf = 0;
DRC99313382009-03-12 17:24:27 +0000515
DRC99313382009-03-12 17:24:27 +0000516 put_buffer = state->cur.put_buffer;
517 put_bits = state->cur.put_bits;
DRC3cba8db2009-03-16 23:58:30 +0000518 LOAD_BUFFER()
DRC99313382009-03-12 17:24:27 +0000519
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000520 /* Encode the DC coefficient difference per section F.1.2.1 */
DRCe5eaf372014-05-09 18:00:32 +0000521
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000522 temp = temp2 = block[0] - last_dc_val;
Thomas G. Lanebd543f01991-12-13 00:00:00 +0000523
Leon Scroggins III3993b372018-07-16 10:43:45 -0400524 /* This is a well-known technique for obtaining the absolute value without a
525 * branch. It is derived from an assembly language technique presented in
526 * "How to Optimize for the Pentium Processors", Copyright (c) 1996, 1997 by
527 * Agner Fog.
528 */
DRC6bb57b72011-04-26 22:08:31 +0000529 temp3 = temp >> (CHAR_BIT * sizeof(int) - 1);
530 temp ^= temp3;
531 temp -= temp3;
532
533 /* For a negative input, want temp2 = bitwise complement of abs(input) */
534 /* This code assumes we are on a two's complement machine */
535 temp2 += temp3;
536
537 /* Find the number of bits needed for the magnitude of the coefficient */
DRC0cfc4c12014-03-28 18:33:25 +0000538 nbits = JPEG_NBITS(temp);
DRC6bb57b72011-04-26 22:08:31 +0000539
540 /* Emit the Huffman-coded symbol for the number of bits */
541 code = dctbl->ehufco[nbits];
542 size = dctbl->ehufsi[nbits];
DRCa8b6ea22015-05-06 22:41:12 +0000543 EMIT_BITS(code, size)
DRC6bb57b72011-04-26 22:08:31 +0000544
545 /* Mask off any extra bits in code */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400546 temp2 &= (((JLONG)1) << nbits) - 1;
DRC6bb57b72011-04-26 22:08:31 +0000547
548 /* Emit that number of bits of the value, if positive, */
549 /* or the complement of its magnitude, if negative. */
DRCa8b6ea22015-05-06 22:41:12 +0000550 EMIT_BITS(temp2, nbits)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000551
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000552 /* Encode the AC coefficients per section F.1.2.2 */
DRCe5eaf372014-05-09 18:00:32 +0000553
554 r = 0; /* r = run length of zeros */
Thomas G. Lanebd543f01991-12-13 00:00:00 +0000555
DRC6bb57b72011-04-26 22:08:31 +0000556/* Manually unroll the k loop to eliminate the counter variable. This
557 * improves performance greatly on systems with a limited number of
558 * registers (such as x86.)
559 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400560#define kloop(jpeg_natural_order_of_k) { \
DRC6bb57b72011-04-26 22:08:31 +0000561 if ((temp = block[jpeg_natural_order_of_k]) == 0) { \
562 r++; \
563 } else { \
564 temp2 = temp; \
565 /* Branch-less absolute value, bitwise complement, etc., same as above */ \
566 temp3 = temp >> (CHAR_BIT * sizeof(int) - 1); \
567 temp ^= temp3; \
568 temp -= temp3; \
569 temp2 += temp3; \
DRC0cfc4c12014-03-28 18:33:25 +0000570 nbits = JPEG_NBITS_NONZERO(temp); \
DRC6bb57b72011-04-26 22:08:31 +0000571 /* if run length > 15, must emit special run-length-16 codes (0xF0) */ \
572 while (r > 15) { \
573 EMIT_BITS(code_0xf0, size_0xf0) \
574 r -= 16; \
575 } \
576 /* Emit Huffman symbol for run length / number of bits */ \
Leon Scroggins III3993b372018-07-16 10:43:45 -0400577 temp3 = (r << 4) + nbits; \
DRC6bb57b72011-04-26 22:08:31 +0000578 code = actbl->ehufco[temp3]; \
579 size = actbl->ehufsi[temp3]; \
580 EMIT_CODE(code, size) \
Leon Scroggins III3993b372018-07-16 10:43:45 -0400581 r = 0; \
DRC6bb57b72011-04-26 22:08:31 +0000582 } \
583}
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000584
DRC6bb57b72011-04-26 22:08:31 +0000585 /* One iteration for each value in jpeg_natural_order[] */
586 kloop(1); kloop(8); kloop(16); kloop(9); kloop(2); kloop(3);
587 kloop(10); kloop(17); kloop(24); kloop(32); kloop(25); kloop(18);
588 kloop(11); kloop(4); kloop(5); kloop(12); kloop(19); kloop(26);
589 kloop(33); kloop(40); kloop(48); kloop(41); kloop(34); kloop(27);
590 kloop(20); kloop(13); kloop(6); kloop(7); kloop(14); kloop(21);
591 kloop(28); kloop(35); kloop(42); kloop(49); kloop(56); kloop(57);
592 kloop(50); kloop(43); kloop(36); kloop(29); kloop(22); kloop(15);
593 kloop(23); kloop(30); kloop(37); kloop(44); kloop(51); kloop(58);
594 kloop(59); kloop(52); kloop(45); kloop(38); kloop(31); kloop(39);
595 kloop(46); kloop(53); kloop(60); kloop(61); kloop(54); kloop(47);
596 kloop(55); kloop(62); kloop(63);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000597
598 /* If the last coef(s) were zero, emit an end-of-block code */
DRC6bb57b72011-04-26 22:08:31 +0000599 if (r > 0) {
600 code = actbl->ehufco[0];
601 size = actbl->ehufsi[0];
602 EMIT_BITS(code, size)
603 }
DRC99313382009-03-12 17:24:27 +0000604
605 state->cur.put_buffer = put_buffer;
606 state->cur.put_bits = put_bits;
DRC3cba8db2009-03-16 23:58:30 +0000607 STORE_BUFFER()
DRC99313382009-03-12 17:24:27 +0000608
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000609 return TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000610}
611
612
613/*
614 * Emit a restart marker & resynchronize predictions.
615 */
616
Thomas G. Lane489583f1996-02-07 00:00:00 +0000617LOCAL(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400618emit_restart(working_state *state, int restart_num)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000619{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000620 int ci;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000621
Leon Scroggins III3993b372018-07-16 10:43:45 -0400622 if (!flush_bits(state))
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000623 return FALSE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000624
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000625 emit_byte(state, 0xFF, return FALSE);
626 emit_byte(state, JPEG_RST0 + restart_num, return FALSE);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000627
628 /* Re-initialize DC predictions to 0 */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000629 for (ci = 0; ci < state->cinfo->comps_in_scan; ci++)
630 state->cur.last_dc_val[ci] = 0;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000631
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000632 /* The restart counter is not updated until we successfully write the MCU. */
633
634 return TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000635}
636
637
638/*
639 * Encode and output one MCU's worth of Huffman-compressed coefficients.
640 */
641
Thomas G. Lane489583f1996-02-07 00:00:00 +0000642METHODDEF(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400643encode_mcu_huff(j_compress_ptr cinfo, JBLOCKROW *MCU_data)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000644{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400645 huff_entropy_ptr entropy = (huff_entropy_ptr)cinfo->entropy;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000646 working_state state;
647 int blkn, ci;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200648 jpeg_component_info *compptr;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000649
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000650 /* Load up working state */
651 state.next_output_byte = cinfo->dest->next_output_byte;
652 state.free_in_buffer = cinfo->dest->free_in_buffer;
653 ASSIGN_STATE(state.cur, entropy->saved);
654 state.cinfo = cinfo;
655
656 /* Emit restart marker if needed */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000657 if (cinfo->restart_interval) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000658 if (entropy->restarts_to_go == 0)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400659 if (!emit_restart(&state, entropy->next_restart_num))
DRCe5eaf372014-05-09 18:00:32 +0000660 return FALSE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000661 }
662
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000663 /* Encode the MCU data blocks */
Alex Naidis6eb7d372016-10-16 23:10:08 +0200664 if (entropy->simd) {
665 for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
666 ci = cinfo->MCU_membership[blkn];
667 compptr = cinfo->cur_comp_info[ci];
Leon Scroggins III3993b372018-07-16 10:43:45 -0400668 if (!encode_one_block_simd(&state,
669 MCU_data[blkn][0], state.cur.last_dc_val[ci],
670 entropy->dc_derived_tbls[compptr->dc_tbl_no],
671 entropy->ac_derived_tbls[compptr->ac_tbl_no]))
Alex Naidis6eb7d372016-10-16 23:10:08 +0200672 return FALSE;
673 /* Update last_dc_val */
674 state.cur.last_dc_val[ci] = MCU_data[blkn][0][0];
675 }
676 } else {
677 for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
678 ci = cinfo->MCU_membership[blkn];
679 compptr = cinfo->cur_comp_info[ci];
Leon Scroggins III3993b372018-07-16 10:43:45 -0400680 if (!encode_one_block(&state,
681 MCU_data[blkn][0], state.cur.last_dc_val[ci],
682 entropy->dc_derived_tbls[compptr->dc_tbl_no],
683 entropy->ac_derived_tbls[compptr->ac_tbl_no]))
Alex Naidis6eb7d372016-10-16 23:10:08 +0200684 return FALSE;
685 /* Update last_dc_val */
686 state.cur.last_dc_val[ci] = MCU_data[blkn][0][0];
687 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000688 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000689
690 /* Completed MCU, so update state */
691 cinfo->dest->next_output_byte = state.next_output_byte;
692 cinfo->dest->free_in_buffer = state.free_in_buffer;
693 ASSIGN_STATE(entropy->saved, state.cur);
694
695 /* Update restart-interval state too */
696 if (cinfo->restart_interval) {
697 if (entropy->restarts_to_go == 0) {
698 entropy->restarts_to_go = cinfo->restart_interval;
699 entropy->next_restart_num++;
700 entropy->next_restart_num &= 7;
701 }
702 entropy->restarts_to_go--;
703 }
704
705 return TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000706}
707
708
709/*
710 * Finish up at the end of a Huffman-compressed scan.
711 */
712
Thomas G. Lane489583f1996-02-07 00:00:00 +0000713METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400714finish_pass_huff(j_compress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000715{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400716 huff_entropy_ptr entropy = (huff_entropy_ptr)cinfo->entropy;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000717 working_state state;
718
719 /* Load up working state ... flush_bits needs it */
720 state.next_output_byte = cinfo->dest->next_output_byte;
721 state.free_in_buffer = cinfo->dest->free_in_buffer;
722 ASSIGN_STATE(state.cur, entropy->saved);
723 state.cinfo = cinfo;
724
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000725 /* Flush out the last data */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400726 if (!flush_bits(&state))
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000727 ERREXIT(cinfo, JERR_CANT_SUSPEND);
728
729 /* Update state */
730 cinfo->dest->next_output_byte = state.next_output_byte;
731 cinfo->dest->free_in_buffer = state.free_in_buffer;
732 ASSIGN_STATE(entropy->saved, state.cur);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000733}
734
735
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000736/*
737 * Huffman coding optimization.
738 *
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000739 * We first scan the supplied data and count the number of uses of each symbol
740 * that is to be Huffman-coded. (This process MUST agree with the code above.)
741 * Then we build a Huffman coding tree for the observed counts.
742 * Symbols which are not needed at all for the particular image are not
743 * assigned any code, which saves space in the DHT marker as well as in
744 * the compressed data.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000745 */
746
747#ifdef ENTROPY_OPT_SUPPORTED
748
749
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000750/* Process a single block's worth of coefficients */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000751
Thomas G. Lane489583f1996-02-07 00:00:00 +0000752LOCAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400753htest_one_block(j_compress_ptr cinfo, JCOEFPTR block, int last_dc_val,
754 long dc_counts[], long ac_counts[])
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000755{
756 register int temp;
757 register int nbits;
758 register int k, r;
DRCe5eaf372014-05-09 18:00:32 +0000759
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000760 /* Encode the DC coefficient difference per section F.1.2.1 */
DRCe5eaf372014-05-09 18:00:32 +0000761
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000762 temp = block[0] - last_dc_val;
763 if (temp < 0)
764 temp = -temp;
DRCe5eaf372014-05-09 18:00:32 +0000765
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000766 /* Find the number of bits needed for the magnitude of the coefficient */
767 nbits = 0;
768 while (temp) {
769 nbits++;
770 temp >>= 1;
771 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000772 /* Check for out-of-range coefficient values.
773 * Since we're encoding a difference, the range limit is twice as much.
774 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400775 if (nbits > MAX_COEF_BITS + 1)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000776 ERREXIT(cinfo, JERR_BAD_DCT_COEF);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000777
778 /* Count the Huffman symbol for the number of bits */
779 dc_counts[nbits]++;
DRCe5eaf372014-05-09 18:00:32 +0000780
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000781 /* Encode the AC coefficients per section F.1.2.2 */
DRCe5eaf372014-05-09 18:00:32 +0000782
783 r = 0; /* r = run length of zeros */
784
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000785 for (k = 1; k < DCTSIZE2; k++) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000786 if ((temp = block[jpeg_natural_order[k]]) == 0) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000787 r++;
788 } else {
789 /* if run length > 15, must emit special run-length-16 codes (0xF0) */
790 while (r > 15) {
DRCe5eaf372014-05-09 18:00:32 +0000791 ac_counts[0xF0]++;
792 r -= 16;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000793 }
DRCe5eaf372014-05-09 18:00:32 +0000794
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000795 /* Find the number of bits needed for the magnitude of the coefficient */
796 if (temp < 0)
DRCe5eaf372014-05-09 18:00:32 +0000797 temp = -temp;
798
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000799 /* Find the number of bits needed for the magnitude of the coefficient */
DRCe5eaf372014-05-09 18:00:32 +0000800 nbits = 1; /* there must be at least one 1 bit */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000801 while ((temp >>= 1))
DRCe5eaf372014-05-09 18:00:32 +0000802 nbits++;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000803 /* Check for out-of-range coefficient values */
804 if (nbits > MAX_COEF_BITS)
DRCe5eaf372014-05-09 18:00:32 +0000805 ERREXIT(cinfo, JERR_BAD_DCT_COEF);
806
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000807 /* Count Huffman symbol for run length / number of bits */
808 ac_counts[(r << 4) + nbits]++;
DRCe5eaf372014-05-09 18:00:32 +0000809
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000810 r = 0;
811 }
812 }
813
814 /* If the last coef(s) were zero, emit an end-of-block code */
815 if (r > 0)
816 ac_counts[0]++;
817}
818
819
820/*
821 * Trial-encode one MCU's worth of Huffman-compressed coefficients.
822 * No data is actually output, so no suspension return is possible.
823 */
824
Thomas G. Lane489583f1996-02-07 00:00:00 +0000825METHODDEF(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400826encode_mcu_gather(j_compress_ptr cinfo, JBLOCKROW *MCU_data)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000827{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400828 huff_entropy_ptr entropy = (huff_entropy_ptr)cinfo->entropy;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000829 int blkn, ci;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200830 jpeg_component_info *compptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000831
832 /* Take care of restart intervals if needed */
833 if (cinfo->restart_interval) {
834 if (entropy->restarts_to_go == 0) {
835 /* Re-initialize DC predictions to 0 */
836 for (ci = 0; ci < cinfo->comps_in_scan; ci++)
DRCe5eaf372014-05-09 18:00:32 +0000837 entropy->saved.last_dc_val[ci] = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000838 /* Update restart state */
839 entropy->restarts_to_go = cinfo->restart_interval;
840 }
841 entropy->restarts_to_go--;
842 }
843
844 for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {
845 ci = cinfo->MCU_membership[blkn];
846 compptr = cinfo->cur_comp_info[ci];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000847 htest_one_block(cinfo, MCU_data[blkn][0], entropy->saved.last_dc_val[ci],
DRCe5eaf372014-05-09 18:00:32 +0000848 entropy->dc_count_ptrs[compptr->dc_tbl_no],
849 entropy->ac_count_ptrs[compptr->ac_tbl_no]);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000850 entropy->saved.last_dc_val[ci] = MCU_data[blkn][0][0];
851 }
852
853 return TRUE;
854}
855
856
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000857/*
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000858 * Generate the best Huffman code table for the given counts, fill htbl.
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000859 * Note this is also used by jcphuff.c.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000860 *
861 * The JPEG standard requires that no symbol be assigned a codeword of all
862 * one bits (so that padding bits added at the end of a compressed segment
863 * can't look like a valid code). Because of the canonical ordering of
864 * codewords, this just means that there must be an unused slot in the
Leon Scroggins III3993b372018-07-16 10:43:45 -0400865 * longest codeword length category. Annex K (Clause K.2) of
866 * Rec. ITU-T T.81 (1992) | ISO/IEC 10918-1:1994 suggests reserving such a slot
867 * by pretending that symbol 256 is a valid symbol with count 1. In theory
868 * that's not optimal; giving it count zero but including it in the symbol set
869 * anyway should give a better Huffman code. But the theoretically better code
870 * actually seems to come out worse in practice, because it produces more
871 * all-ones bytes (which incur stuffed zero bytes in the final file). In any
872 * case the difference is tiny.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000873 *
874 * The JPEG standard requires Huffman codes to be no more than 16 bits long.
875 * If some symbols have a very small but nonzero probability, the Huffman tree
876 * must be adjusted to meet the code length restriction. We currently use
877 * the adjustment method suggested in JPEG section K.2. This method is *not*
878 * optimal; it may not choose the best possible limited-length code. But
879 * typically only very-low-frequency symbols will be given less-than-optimal
880 * lengths, so the code is almost optimal. Experimental comparisons against
881 * an optimal limited-length-code algorithm indicate that the difference is
882 * microscopic --- usually less than a hundredth of a percent of total size.
883 * So the extra complexity of an optimal algorithm doesn't seem worthwhile.
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000884 */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000885
Thomas G. Lane489583f1996-02-07 00:00:00 +0000886GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400887jpeg_gen_optimal_table(j_compress_ptr cinfo, JHUFF_TBL *htbl, long freq[])
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000888{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400889#define MAX_CLEN 32 /* assumed maximum initial code length */
890 UINT8 bits[MAX_CLEN + 1]; /* bits[k] = # of symbols with code length k */
DRCe5eaf372014-05-09 18:00:32 +0000891 int codesize[257]; /* codesize[k] = code length of symbol k */
892 int others[257]; /* next symbol in current branch of tree */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000893 int c1, c2;
894 int p, i, j;
895 long v;
896
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000897 /* This algorithm is explained in section K.2 of the JPEG standard */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000898
DRC5de454b2014-05-18 19:04:03 +0000899 MEMZERO(bits, sizeof(bits));
900 MEMZERO(codesize, sizeof(codesize));
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000901 for (i = 0; i < 257; i++)
DRCe5eaf372014-05-09 18:00:32 +0000902 others[i] = -1; /* init links to empty */
903
904 freq[256] = 1; /* make sure 256 has a nonzero count */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000905 /* Including the pseudo-symbol 256 in the Huffman procedure guarantees
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000906 * that no real symbol is given code-value of all ones, because 256
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000907 * will be placed last in the largest codeword category.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000908 */
909
910 /* Huffman's basic algorithm to assign optimal code lengths to symbols */
911
912 for (;;) {
913 /* Find the smallest nonzero frequency, set c1 = its symbol */
914 /* In case of ties, take the larger symbol number */
915 c1 = -1;
916 v = 1000000000L;
917 for (i = 0; i <= 256; i++) {
918 if (freq[i] && freq[i] <= v) {
DRCe5eaf372014-05-09 18:00:32 +0000919 v = freq[i];
920 c1 = i;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000921 }
922 }
923
924 /* Find the next smallest nonzero frequency, set c2 = its symbol */
925 /* In case of ties, take the larger symbol number */
926 c2 = -1;
927 v = 1000000000L;
928 for (i = 0; i <= 256; i++) {
929 if (freq[i] && freq[i] <= v && i != c1) {
DRCe5eaf372014-05-09 18:00:32 +0000930 v = freq[i];
931 c2 = i;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000932 }
933 }
934
935 /* Done if we've merged everything into one frequency */
936 if (c2 < 0)
937 break;
DRCe5eaf372014-05-09 18:00:32 +0000938
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000939 /* Else merge the two counts/trees */
940 freq[c1] += freq[c2];
941 freq[c2] = 0;
942
943 /* Increment the codesize of everything in c1's tree branch */
944 codesize[c1]++;
945 while (others[c1] >= 0) {
946 c1 = others[c1];
947 codesize[c1]++;
948 }
DRCe5eaf372014-05-09 18:00:32 +0000949
950 others[c1] = c2; /* chain c2 onto c1's tree branch */
951
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000952 /* Increment the codesize of everything in c2's tree branch */
953 codesize[c2]++;
954 while (others[c2] >= 0) {
955 c2 = others[c2];
956 codesize[c2]++;
957 }
958 }
959
960 /* Now count the number of symbols of each code length */
961 for (i = 0; i <= 256; i++) {
962 if (codesize[i]) {
963 /* The JPEG standard seems to think that this can't happen, */
964 /* but I'm paranoid... */
965 if (codesize[i] > MAX_CLEN)
DRCe5eaf372014-05-09 18:00:32 +0000966 ERREXIT(cinfo, JERR_HUFF_CLEN_OVERFLOW);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000967
968 bits[codesize[i]]++;
969 }
970 }
971
972 /* JPEG doesn't allow symbols with code lengths over 16 bits, so if the pure
973 * Huffman procedure assigned any such lengths, we must adjust the coding.
Leon Scroggins III3993b372018-07-16 10:43:45 -0400974 * Here is what Rec. ITU-T T.81 | ISO/IEC 10918-1 says about how this next
975 * bit works: Since symbols are paired for the longest Huffman code, the
976 * symbols are removed from this length category two at a time. The prefix
977 * for the pair (which is one bit shorter) is allocated to one of the pair;
978 * then, skipping the BITS entry for that prefix length, a code word from the
979 * next shortest nonzero BITS entry is converted into a prefix for two code
980 * words one bit longer.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000981 */
DRCe5eaf372014-05-09 18:00:32 +0000982
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000983 for (i = MAX_CLEN; i > 16; i--) {
984 while (bits[i] > 0) {
DRCe5eaf372014-05-09 18:00:32 +0000985 j = i - 2; /* find length of new prefix to be used */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000986 while (bits[j] == 0)
DRCe5eaf372014-05-09 18:00:32 +0000987 j--;
988
989 bits[i] -= 2; /* remove two symbols */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400990 bits[i - 1]++; /* one goes in this length */
991 bits[j + 1] += 2; /* two new symbols in this length */
DRCe5eaf372014-05-09 18:00:32 +0000992 bits[j]--; /* symbol of this length is now a prefix */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000993 }
994 }
995
996 /* Remove the count for the pseudo-symbol 256 from the largest codelength */
DRCe5eaf372014-05-09 18:00:32 +0000997 while (bits[i] == 0) /* find largest codelength still in use */
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000998 i--;
999 bits[i]--;
DRCe5eaf372014-05-09 18:00:32 +00001000
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001001 /* Return final symbol counts (only for lengths 0..16) */
DRC5de454b2014-05-18 19:04:03 +00001002 MEMCOPY(htbl->bits, bits, sizeof(htbl->bits));
DRCe5eaf372014-05-09 18:00:32 +00001003
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001004 /* Return a list of the symbols sorted by code length */
1005 /* It's not real clear to me why we don't need to consider the codelength
Leon Scroggins III3993b372018-07-16 10:43:45 -04001006 * changes made above, but Rec. ITU-T T.81 | ISO/IEC 10918-1 seems to think
1007 * this works.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001008 */
1009 p = 0;
1010 for (i = 1; i <= MAX_CLEN; i++) {
1011 for (j = 0; j <= 255; j++) {
1012 if (codesize[j] == i) {
Leon Scroggins III3993b372018-07-16 10:43:45 -04001013 htbl->huffval[p] = (UINT8)j;
DRCe5eaf372014-05-09 18:00:32 +00001014 p++;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001015 }
1016 }
1017 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001018
1019 /* Set sent_table FALSE so updated table will be written to JPEG file. */
1020 htbl->sent_table = FALSE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001021}
1022
1023
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001024/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001025 * Finish up a statistics-gathering pass and create the new Huffman tables.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001026 */
1027
Thomas G. Lane489583f1996-02-07 00:00:00 +00001028METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -04001029finish_pass_gather(j_compress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001030{
Leon Scroggins III3993b372018-07-16 10:43:45 -04001031 huff_entropy_ptr entropy = (huff_entropy_ptr)cinfo->entropy;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001032 int ci, dctbl, actbl;
Alex Naidis6eb7d372016-10-16 23:10:08 +02001033 jpeg_component_info *compptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001034 JHUFF_TBL **htblptr;
1035 boolean did_dc[NUM_HUFF_TBLS];
1036 boolean did_ac[NUM_HUFF_TBLS];
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001037
Thomas G. Lanebc79e061995-08-02 00:00:00 +00001038 /* It's important not to apply jpeg_gen_optimal_table more than once
1039 * per table, because it clobbers the input frequency counts!
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001040 */
DRC5de454b2014-05-18 19:04:03 +00001041 MEMZERO(did_dc, sizeof(did_dc));
1042 MEMZERO(did_ac, sizeof(did_ac));
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001043
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001044 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
1045 compptr = cinfo->cur_comp_info[ci];
1046 dctbl = compptr->dc_tbl_no;
1047 actbl = compptr->ac_tbl_no;
Leon Scroggins III3993b372018-07-16 10:43:45 -04001048 if (!did_dc[dctbl]) {
1049 htblptr = &cinfo->dc_huff_tbl_ptrs[dctbl];
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001050 if (*htblptr == NULL)
Leon Scroggins III3993b372018-07-16 10:43:45 -04001051 *htblptr = jpeg_alloc_huff_table((j_common_ptr)cinfo);
Thomas G. Lanebc79e061995-08-02 00:00:00 +00001052 jpeg_gen_optimal_table(cinfo, *htblptr, entropy->dc_count_ptrs[dctbl]);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001053 did_dc[dctbl] = TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001054 }
Leon Scroggins III3993b372018-07-16 10:43:45 -04001055 if (!did_ac[actbl]) {
1056 htblptr = &cinfo->ac_huff_tbl_ptrs[actbl];
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001057 if (*htblptr == NULL)
Leon Scroggins III3993b372018-07-16 10:43:45 -04001058 *htblptr = jpeg_alloc_huff_table((j_common_ptr)cinfo);
Thomas G. Lanebc79e061995-08-02 00:00:00 +00001059 jpeg_gen_optimal_table(cinfo, *htblptr, entropy->ac_count_ptrs[actbl]);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001060 did_ac[actbl] = TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001061 }
1062 }
1063}
1064
1065
1066#endif /* ENTROPY_OPT_SUPPORTED */
1067
1068
1069/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001070 * Module initialization routine for Huffman entropy encoding.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001071 */
1072
Thomas G. Lane489583f1996-02-07 00:00:00 +00001073GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -04001074jinit_huff_encoder(j_compress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001075{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001076 huff_entropy_ptr entropy;
1077 int i;
1078
1079 entropy = (huff_entropy_ptr)
Leon Scroggins III3993b372018-07-16 10:43:45 -04001080 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +00001081 sizeof(huff_entropy_encoder));
Leon Scroggins III3993b372018-07-16 10:43:45 -04001082 cinfo->entropy = (struct jpeg_entropy_encoder *)entropy;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001083 entropy->pub.start_pass = start_pass_huff;
1084
1085 /* Mark tables unallocated */
1086 for (i = 0; i < NUM_HUFF_TBLS; i++) {
1087 entropy->dc_derived_tbls[i] = entropy->ac_derived_tbls[i] = NULL;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001088#ifdef ENTROPY_OPT_SUPPORTED
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001089 entropy->dc_count_ptrs[i] = entropy->ac_count_ptrs[i] = NULL;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001090#endif
1091 }
1092}