blob: 723a9ac2be60e3df1afa7306f3258fbcad79ff0e [file] [log] [blame]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001/*
2 * jdcoefct.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) 1994-1997, Thomas G. Lane.
DRCa6ef2822013-09-28 03:23:49 +00006 * libjpeg-turbo Modifications:
DRCac30a1b2015-06-25 03:44:36 +00007 * Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
DRC0ef076f2016-02-19 18:32:10 -06008 * Copyright (C) 2010, 2015-2016, D. R. Commander.
9 * Copyright (C) 2015, Google, Inc.
10 * For conditions of distribution and use, see the accompanying README.ijg
11 * file.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000012 *
13 * This file contains the coefficient buffer controller for decompression.
14 * This controller is the top level of the JPEG decompressor proper.
15 * The coefficient buffer lies between entropy decoding and inverse-DCT steps.
Thomas G. Lanebc79e061995-08-02 00:00:00 +000016 *
17 * In buffered-image mode, this controller is the interface between
18 * input-oriented processing and output-oriented processing.
19 * Also, the input side (only) is used when reading a file for transcoding.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000020 */
21
Alex Naidis6eb7d372016-10-16 23:10:08 +020022#include "jinclude.h"
DRCac30a1b2015-06-25 03:44:36 +000023#include "jdcoefct.h"
DRC36a6eec2010-10-08 08:05:44 +000024#include "jpegcomp.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000025
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000026
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000027/* Forward declarations */
Leon Scroggins III3993b372018-07-16 10:43:45 -040028METHODDEF(int) decompress_onepass(j_decompress_ptr cinfo,
29 JSAMPIMAGE output_buf);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000030#ifdef D_MULTISCAN_FILES_SUPPORTED
Leon Scroggins III3993b372018-07-16 10:43:45 -040031METHODDEF(int) decompress_data(j_decompress_ptr cinfo, JSAMPIMAGE output_buf);
Thomas G. Lanebc79e061995-08-02 00:00:00 +000032#endif
33#ifdef BLOCK_SMOOTHING_SUPPORTED
Leon Scroggins III3993b372018-07-16 10:43:45 -040034LOCAL(boolean) smoothing_ok(j_decompress_ptr cinfo);
35METHODDEF(int) decompress_smooth_data(j_decompress_ptr cinfo,
36 JSAMPIMAGE output_buf);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000037#endif
38
39
40/*
Thomas G. Lanebc79e061995-08-02 00:00:00 +000041 * Initialize for an input processing pass.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000042 */
43
Thomas G. Lane489583f1996-02-07 00:00:00 +000044METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040045start_input_pass(j_decompress_ptr cinfo)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000046{
Thomas G. Lanebc79e061995-08-02 00:00:00 +000047 cinfo->input_iMCU_row = 0;
Thomas G. Lanea8b67c41995-03-15 00:00:00 +000048 start_iMCU_row(cinfo);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000049}
50
51
52/*
Thomas G. Lanebc79e061995-08-02 00:00:00 +000053 * Initialize for an output processing pass.
54 */
55
Thomas G. Lane489583f1996-02-07 00:00:00 +000056METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040057start_output_pass(j_decompress_ptr cinfo)
Thomas G. Lanebc79e061995-08-02 00:00:00 +000058{
59#ifdef BLOCK_SMOOTHING_SUPPORTED
Leon Scroggins III3993b372018-07-16 10:43:45 -040060 my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
Thomas G. Lanebc79e061995-08-02 00:00:00 +000061
62 /* If multipass, check to see whether to use block smoothing on this pass */
63 if (coef->pub.coef_arrays != NULL) {
64 if (cinfo->do_block_smoothing && smoothing_ok(cinfo))
65 coef->pub.decompress_data = decompress_smooth_data;
66 else
67 coef->pub.decompress_data = decompress_data;
68 }
69#endif
70 cinfo->output_iMCU_row = 0;
71}
72
73
74/*
75 * Decompress and return some data in the single-pass case.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000076 * Always attempts to emit one fully interleaved MCU row ("iMCU" row).
Thomas G. Lanebc79e061995-08-02 00:00:00 +000077 * Input and output must run in lockstep since we have only a one-MCU buffer.
78 * Return value is JPEG_ROW_COMPLETED, JPEG_SCAN_COMPLETED, or JPEG_SUSPENDED.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000079 *
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000080 * NB: output_buf contains a plane for each component in image,
81 * which we index according to the component's SOF position.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000082 */
83
Thomas G. Lane489583f1996-02-07 00:00:00 +000084METHODDEF(int)
Leon Scroggins III3993b372018-07-16 10:43:45 -040085decompress_onepass(j_decompress_ptr cinfo, JSAMPIMAGE output_buf)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000086{
Leon Scroggins III3993b372018-07-16 10:43:45 -040087 my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
DRCe5eaf372014-05-09 18:00:32 +000088 JDIMENSION MCU_col_num; /* index of current MCU within row */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000089 JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
Thomas G. Lanea8b67c41995-03-15 00:00:00 +000090 JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
91 int blkn, ci, xindex, yindex, yoffset, useful_width;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000092 JSAMPARRAY output_ptr;
93 JDIMENSION start_col, output_col;
94 jpeg_component_info *compptr;
95 inverse_DCT_method_ptr inverse_DCT;
96
Thomas G. Lanea8b67c41995-03-15 00:00:00 +000097 /* Loop to process as much as one whole iMCU row */
98 for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
99 yoffset++) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000100 for (MCU_col_num = coef->MCU_ctr; MCU_col_num <= last_MCU_col;
DRCe5eaf372014-05-09 18:00:32 +0000101 MCU_col_num++) {
Thomas G. Lanea8b67c41995-03-15 00:00:00 +0000102 /* Try to fetch an MCU. Entropy decoder expects buffer to be zeroed. */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400103 jzero_far((void *)coef->MCU_buffer[0],
104 (size_t)(cinfo->blocks_in_MCU * sizeof(JBLOCK)));
105 if (!(*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer)) {
DRCe5eaf372014-05-09 18:00:32 +0000106 /* Suspension forced; update state counters and exit */
107 coef->MCU_vert_offset = yoffset;
108 coef->MCU_ctr = MCU_col_num;
109 return JPEG_SUSPENDED;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000110 }
DRC0ef076f2016-02-19 18:32:10 -0600111
112 /* Only perform the IDCT on blocks that are contained within the desired
113 * cropping region.
Thomas G. Lanea8b67c41995-03-15 00:00:00 +0000114 */
DRC0ef076f2016-02-19 18:32:10 -0600115 if (MCU_col_num >= cinfo->master->first_iMCU_col &&
116 MCU_col_num <= cinfo->master->last_iMCU_col) {
117 /* Determine where data should go in output_buf and do the IDCT thing.
118 * We skip dummy blocks at the right and bottom edges (but blkn gets
119 * incremented past them!). Note the inner loop relies on having
120 * allocated the MCU_buffer[] blocks sequentially.
121 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400122 blkn = 0; /* index of current DCT block within MCU */
DRC0ef076f2016-02-19 18:32:10 -0600123 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
124 compptr = cinfo->cur_comp_info[ci];
125 /* Don't bother to IDCT an uninteresting component. */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400126 if (!compptr->component_needed) {
DRC0ef076f2016-02-19 18:32:10 -0600127 blkn += compptr->MCU_blocks;
128 continue;
DRCe5eaf372014-05-09 18:00:32 +0000129 }
DRC0ef076f2016-02-19 18:32:10 -0600130 inverse_DCT = cinfo->idct->inverse_DCT[compptr->component_index];
Leon Scroggins III3993b372018-07-16 10:43:45 -0400131 useful_width = (MCU_col_num < last_MCU_col) ?
132 compptr->MCU_width : compptr->last_col_width;
DRC0ef076f2016-02-19 18:32:10 -0600133 output_ptr = output_buf[compptr->component_index] +
Leon Scroggins III3993b372018-07-16 10:43:45 -0400134 yoffset * compptr->_DCT_scaled_size;
DRC0ef076f2016-02-19 18:32:10 -0600135 start_col = (MCU_col_num - cinfo->master->first_iMCU_col) *
Leon Scroggins III3993b372018-07-16 10:43:45 -0400136 compptr->MCU_sample_width;
DRC0ef076f2016-02-19 18:32:10 -0600137 for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
138 if (cinfo->input_iMCU_row < last_iMCU_row ||
Leon Scroggins III3993b372018-07-16 10:43:45 -0400139 yoffset + yindex < compptr->last_row_height) {
DRC0ef076f2016-02-19 18:32:10 -0600140 output_col = start_col;
141 for (xindex = 0; xindex < useful_width; xindex++) {
142 (*inverse_DCT) (cinfo, compptr,
Leon Scroggins III3993b372018-07-16 10:43:45 -0400143 (JCOEFPTR)coef->MCU_buffer[blkn + xindex],
DRC0ef076f2016-02-19 18:32:10 -0600144 output_ptr, output_col);
145 output_col += compptr->_DCT_scaled_size;
146 }
147 }
148 blkn += compptr->MCU_width;
149 output_ptr += compptr->_DCT_scaled_size;
150 }
DRCe5eaf372014-05-09 18:00:32 +0000151 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000152 }
153 }
Thomas G. Lanea8b67c41995-03-15 00:00:00 +0000154 /* Completed an MCU row, but perhaps not an iMCU row */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000155 coef->MCU_ctr = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000156 }
Thomas G. Lanea8b67c41995-03-15 00:00:00 +0000157 /* Completed the iMCU row, advance counters for next one */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000158 cinfo->output_iMCU_row++;
159 if (++(cinfo->input_iMCU_row) < cinfo->total_iMCU_rows) {
160 start_iMCU_row(cinfo);
161 return JPEG_ROW_COMPLETED;
162 }
163 /* Completed the scan */
164 (*cinfo->inputctl->finish_input_pass) (cinfo);
165 return JPEG_SCAN_COMPLETED;
166}
167
168
169/*
170 * Dummy consume-input routine for single-pass operation.
171 */
172
Thomas G. Lane489583f1996-02-07 00:00:00 +0000173METHODDEF(int)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400174dummy_consume_data(j_decompress_ptr cinfo)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000175{
DRCe5eaf372014-05-09 18:00:32 +0000176 return JPEG_SUSPENDED; /* Always indicate nothing was done */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000177}
178
179
180#ifdef D_MULTISCAN_FILES_SUPPORTED
181
182/*
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000183 * Consume input data and store it in the full-image coefficient buffer.
184 * We read as much as one fully interleaved MCU row ("iMCU" row) per call,
185 * ie, v_samp_factor block rows for each component in the scan.
186 * Return value is JPEG_ROW_COMPLETED, JPEG_SCAN_COMPLETED, or JPEG_SUSPENDED.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000187 */
188
Thomas G. Lane489583f1996-02-07 00:00:00 +0000189METHODDEF(int)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400190consume_data(j_decompress_ptr cinfo)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000191{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400192 my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
DRCe5eaf372014-05-09 18:00:32 +0000193 JDIMENSION MCU_col_num; /* index of current MCU within row */
Thomas G. Lanea8b67c41995-03-15 00:00:00 +0000194 int blkn, ci, xindex, yindex, yoffset;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000195 JDIMENSION start_col;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000196 JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
197 JBLOCKROW buffer_ptr;
198 jpeg_component_info *compptr;
199
200 /* Align the virtual buffers for the components used in this scan. */
201 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
202 compptr = cinfo->cur_comp_info[ci];
203 buffer[ci] = (*cinfo->mem->access_virt_barray)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400204 ((j_common_ptr)cinfo, coef->whole_image[compptr->component_index],
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000205 cinfo->input_iMCU_row * compptr->v_samp_factor,
Leon Scroggins III3993b372018-07-16 10:43:45 -0400206 (JDIMENSION)compptr->v_samp_factor, TRUE);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000207 /* Note: entropy decoder expects buffer to be zeroed,
208 * but this is handled automatically by the memory manager
209 * because we requested a pre-zeroed array.
210 */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000211 }
212
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000213 /* Loop to process one whole iMCU row */
Thomas G. Lanea8b67c41995-03-15 00:00:00 +0000214 for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
215 yoffset++) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000216 for (MCU_col_num = coef->MCU_ctr; MCU_col_num < cinfo->MCUs_per_row;
DRCe5eaf372014-05-09 18:00:32 +0000217 MCU_col_num++) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000218 /* Construct list of pointers to DCT blocks belonging to this MCU */
DRCe5eaf372014-05-09 18:00:32 +0000219 blkn = 0; /* index of current DCT block within MCU */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000220 for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
DRCe5eaf372014-05-09 18:00:32 +0000221 compptr = cinfo->cur_comp_info[ci];
222 start_col = MCU_col_num * compptr->MCU_width;
223 for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400224 buffer_ptr = buffer[ci][yindex + yoffset] + start_col;
DRCe5eaf372014-05-09 18:00:32 +0000225 for (xindex = 0; xindex < compptr->MCU_width; xindex++) {
226 coef->MCU_buffer[blkn++] = buffer_ptr++;
227 }
228 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000229 }
230 /* Try to fetch the MCU. */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400231 if (!(*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer)) {
DRCe5eaf372014-05-09 18:00:32 +0000232 /* Suspension forced; update state counters and exit */
233 coef->MCU_vert_offset = yoffset;
234 coef->MCU_ctr = MCU_col_num;
235 return JPEG_SUSPENDED;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000236 }
237 }
Thomas G. Lanea8b67c41995-03-15 00:00:00 +0000238 /* Completed an MCU row, but perhaps not an iMCU row */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000239 coef->MCU_ctr = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000240 }
Thomas G. Lanea8b67c41995-03-15 00:00:00 +0000241 /* Completed the iMCU row, advance counters for next one */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000242 if (++(cinfo->input_iMCU_row) < cinfo->total_iMCU_rows) {
243 start_iMCU_row(cinfo);
244 return JPEG_ROW_COMPLETED;
245 }
246 /* Completed the scan */
247 (*cinfo->inputctl->finish_input_pass) (cinfo);
248 return JPEG_SCAN_COMPLETED;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000249}
250
251
252/*
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000253 * Decompress and return some data in the multi-pass case.
254 * Always attempts to emit one fully interleaved MCU row ("iMCU" row).
255 * Return value is JPEG_ROW_COMPLETED, JPEG_SCAN_COMPLETED, or JPEG_SUSPENDED.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000256 *
257 * NB: output_buf contains a plane for each component in image.
258 */
259
Thomas G. Lane489583f1996-02-07 00:00:00 +0000260METHODDEF(int)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400261decompress_data(j_decompress_ptr cinfo, JSAMPIMAGE output_buf)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000262{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400263 my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
Thomas G. Lanea8b67c41995-03-15 00:00:00 +0000264 JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000265 JDIMENSION block_num;
266 int ci, block_row, block_rows;
267 JBLOCKARRAY buffer;
268 JBLOCKROW buffer_ptr;
269 JSAMPARRAY output_ptr;
270 JDIMENSION output_col;
271 jpeg_component_info *compptr;
272 inverse_DCT_method_ptr inverse_DCT;
273
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000274 /* Force some input to be done if we are getting ahead of the input. */
275 while (cinfo->input_scan_number < cinfo->output_scan_number ||
DRCe5eaf372014-05-09 18:00:32 +0000276 (cinfo->input_scan_number == cinfo->output_scan_number &&
277 cinfo->input_iMCU_row <= cinfo->output_iMCU_row)) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400278 if ((*cinfo->inputctl->consume_input) (cinfo) == JPEG_SUSPENDED)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000279 return JPEG_SUSPENDED;
280 }
281
282 /* OK, output from the virtual arrays. */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000283 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
284 ci++, compptr++) {
285 /* Don't bother to IDCT an uninteresting component. */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400286 if (!compptr->component_needed)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000287 continue;
288 /* Align the virtual buffer for this component. */
289 buffer = (*cinfo->mem->access_virt_barray)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400290 ((j_common_ptr)cinfo, coef->whole_image[ci],
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000291 cinfo->output_iMCU_row * compptr->v_samp_factor,
Leon Scroggins III3993b372018-07-16 10:43:45 -0400292 (JDIMENSION)compptr->v_samp_factor, FALSE);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000293 /* Count non-dummy DCT block rows in this iMCU row. */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000294 if (cinfo->output_iMCU_row < last_iMCU_row)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000295 block_rows = compptr->v_samp_factor;
296 else {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000297 /* NB: can't use last_row_height here; it is input-side-dependent! */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400298 block_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000299 if (block_rows == 0) block_rows = compptr->v_samp_factor;
300 }
301 inverse_DCT = cinfo->idct->inverse_DCT[ci];
302 output_ptr = output_buf[ci];
303 /* Loop over all DCT blocks to be processed. */
304 for (block_row = 0; block_row < block_rows; block_row++) {
DRC0ef076f2016-02-19 18:32:10 -0600305 buffer_ptr = buffer[block_row] + cinfo->master->first_MCU_col[ci];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000306 output_col = 0;
DRC0ef076f2016-02-19 18:32:10 -0600307 for (block_num = cinfo->master->first_MCU_col[ci];
308 block_num <= cinfo->master->last_MCU_col[ci]; block_num++) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400309 (*inverse_DCT) (cinfo, compptr, (JCOEFPTR)buffer_ptr, output_ptr,
310 output_col);
DRCe5eaf372014-05-09 18:00:32 +0000311 buffer_ptr++;
312 output_col += compptr->_DCT_scaled_size;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000313 }
DRC49967cd2010-10-09 19:57:51 +0000314 output_ptr += compptr->_DCT_scaled_size;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000315 }
316 }
317
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000318 if (++(cinfo->output_iMCU_row) < cinfo->total_iMCU_rows)
319 return JPEG_ROW_COMPLETED;
320 return JPEG_SCAN_COMPLETED;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000321}
322
323#endif /* D_MULTISCAN_FILES_SUPPORTED */
324
325
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000326#ifdef BLOCK_SMOOTHING_SUPPORTED
327
328/*
329 * This code applies interblock smoothing as described by section K.8
330 * of the JPEG standard: the first 5 AC coefficients are estimated from
331 * the DC values of a DCT block and its 8 neighboring blocks.
332 * We apply smoothing only for progressive JPEG decoding, and only if
333 * the coefficients it can estimate are not yet known to full precision.
334 */
335
Thomas G. Lane489583f1996-02-07 00:00:00 +0000336/* Natural-order array positions of the first 5 zigzag-order coefficients */
337#define Q01_POS 1
338#define Q10_POS 8
339#define Q20_POS 16
340#define Q11_POS 9
341#define Q02_POS 2
342
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000343/*
344 * Determine whether block smoothing is applicable and safe.
345 * We also latch the current states of the coef_bits[] entries for the
346 * AC coefficients; otherwise, if the input side of the decompressor
347 * advances into a new scan, we might think the coefficients are known
348 * more accurately than they really are.
349 */
350
Thomas G. Lane489583f1996-02-07 00:00:00 +0000351LOCAL(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400352smoothing_ok(j_decompress_ptr cinfo)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000353{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400354 my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000355 boolean smoothing_useful = FALSE;
356 int ci, coefi;
357 jpeg_component_info *compptr;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200358 JQUANT_TBL *qtable;
359 int *coef_bits;
360 int *coef_bits_latch;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000361
Leon Scroggins III3993b372018-07-16 10:43:45 -0400362 if (!cinfo->progressive_mode || cinfo->coef_bits == NULL)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000363 return FALSE;
364
365 /* Allocate latch area if not already done */
366 if (coef->coef_bits_latch == NULL)
367 coef->coef_bits_latch = (int *)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400368 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRCe5eaf372014-05-09 18:00:32 +0000369 cinfo->num_components *
DRC5de454b2014-05-18 19:04:03 +0000370 (SAVED_COEFS * sizeof(int)));
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000371 coef_bits_latch = coef->coef_bits_latch;
372
373 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
374 ci++, compptr++) {
375 /* All components' quantization values must already be latched. */
376 if ((qtable = compptr->quant_table) == NULL)
377 return FALSE;
378 /* Verify DC & first 5 AC quantizers are nonzero to avoid zero-divide. */
Thomas G. Lane489583f1996-02-07 00:00:00 +0000379 if (qtable->quantval[0] == 0 ||
DRCe5eaf372014-05-09 18:00:32 +0000380 qtable->quantval[Q01_POS] == 0 ||
381 qtable->quantval[Q10_POS] == 0 ||
382 qtable->quantval[Q20_POS] == 0 ||
383 qtable->quantval[Q11_POS] == 0 ||
384 qtable->quantval[Q02_POS] == 0)
Thomas G. Lane489583f1996-02-07 00:00:00 +0000385 return FALSE;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000386 /* DC values must be at least partly known for all components. */
387 coef_bits = cinfo->coef_bits[ci];
388 if (coef_bits[0] < 0)
389 return FALSE;
390 /* Block smoothing is helpful if some AC coefficients remain inaccurate. */
391 for (coefi = 1; coefi <= 5; coefi++) {
392 coef_bits_latch[coefi] = coef_bits[coefi];
393 if (coef_bits[coefi] != 0)
DRCe5eaf372014-05-09 18:00:32 +0000394 smoothing_useful = TRUE;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000395 }
396 coef_bits_latch += SAVED_COEFS;
397 }
398
399 return smoothing_useful;
400}
401
402
403/*
404 * Variant of decompress_data for use when doing block smoothing.
405 */
406
Thomas G. Lane489583f1996-02-07 00:00:00 +0000407METHODDEF(int)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400408decompress_smooth_data(j_decompress_ptr cinfo, JSAMPIMAGE output_buf)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000409{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400410 my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000411 JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
412 JDIMENSION block_num, last_block_column;
413 int ci, block_row, block_rows, access_rows;
414 JBLOCKARRAY buffer;
415 JBLOCKROW buffer_ptr, prev_block_row, next_block_row;
416 JSAMPARRAY output_ptr;
417 JDIMENSION output_col;
418 jpeg_component_info *compptr;
419 inverse_DCT_method_ptr inverse_DCT;
420 boolean first_row, last_row;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200421 JCOEF *workspace;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000422 int *coef_bits;
423 JQUANT_TBL *quanttbl;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400424 JLONG Q00, Q01, Q02, Q10, Q11, Q20, num;
425 int DC1, DC2, DC3, DC4, DC5, DC6, DC7, DC8, DC9;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000426 int Al, pred;
427
Pierre Ossman35c47192009-03-09 13:29:37 +0000428 /* Keep a local variable to avoid looking it up more than once */
429 workspace = coef->workspace;
430
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000431 /* Force some input to be done if we are getting ahead of the input. */
432 while (cinfo->input_scan_number <= cinfo->output_scan_number &&
Leon Scroggins III3993b372018-07-16 10:43:45 -0400433 !cinfo->inputctl->eoi_reached) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000434 if (cinfo->input_scan_number == cinfo->output_scan_number) {
435 /* If input is working on current scan, we ordinarily want it to
436 * have completed the current row. But if input scan is DC,
437 * we want it to keep one row ahead so that next block row's DC
438 * values are up to date.
439 */
440 JDIMENSION delta = (cinfo->Ss == 0) ? 1 : 0;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400441 if (cinfo->input_iMCU_row > cinfo->output_iMCU_row + delta)
DRCe5eaf372014-05-09 18:00:32 +0000442 break;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000443 }
Leon Scroggins III3993b372018-07-16 10:43:45 -0400444 if ((*cinfo->inputctl->consume_input) (cinfo) == JPEG_SUSPENDED)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000445 return JPEG_SUSPENDED;
446 }
447
448 /* OK, output from the virtual arrays. */
449 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
450 ci++, compptr++) {
451 /* Don't bother to IDCT an uninteresting component. */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400452 if (!compptr->component_needed)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000453 continue;
454 /* Count non-dummy DCT block rows in this iMCU row. */
455 if (cinfo->output_iMCU_row < last_iMCU_row) {
456 block_rows = compptr->v_samp_factor;
457 access_rows = block_rows * 2; /* this and next iMCU row */
458 last_row = FALSE;
459 } else {
460 /* NB: can't use last_row_height here; it is input-side-dependent! */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400461 block_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000462 if (block_rows == 0) block_rows = compptr->v_samp_factor;
463 access_rows = block_rows; /* this iMCU row only */
464 last_row = TRUE;
465 }
466 /* Align the virtual buffer for this component. */
467 if (cinfo->output_iMCU_row > 0) {
468 access_rows += compptr->v_samp_factor; /* prior iMCU row too */
469 buffer = (*cinfo->mem->access_virt_barray)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400470 ((j_common_ptr)cinfo, coef->whole_image[ci],
DRCe5eaf372014-05-09 18:00:32 +0000471 (cinfo->output_iMCU_row - 1) * compptr->v_samp_factor,
Leon Scroggins III3993b372018-07-16 10:43:45 -0400472 (JDIMENSION)access_rows, FALSE);
DRCe5eaf372014-05-09 18:00:32 +0000473 buffer += compptr->v_samp_factor; /* point to current iMCU row */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000474 first_row = FALSE;
475 } else {
476 buffer = (*cinfo->mem->access_virt_barray)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400477 ((j_common_ptr)cinfo, coef->whole_image[ci],
478 (JDIMENSION)0, (JDIMENSION)access_rows, FALSE);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000479 first_row = TRUE;
480 }
481 /* Fetch component-dependent info */
482 coef_bits = coef->coef_bits_latch + (ci * SAVED_COEFS);
483 quanttbl = compptr->quant_table;
484 Q00 = quanttbl->quantval[0];
Thomas G. Lane489583f1996-02-07 00:00:00 +0000485 Q01 = quanttbl->quantval[Q01_POS];
486 Q10 = quanttbl->quantval[Q10_POS];
487 Q20 = quanttbl->quantval[Q20_POS];
488 Q11 = quanttbl->quantval[Q11_POS];
489 Q02 = quanttbl->quantval[Q02_POS];
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000490 inverse_DCT = cinfo->idct->inverse_DCT[ci];
491 output_ptr = output_buf[ci];
492 /* Loop over all DCT blocks to be processed. */
493 for (block_row = 0; block_row < block_rows; block_row++) {
DRC0ef076f2016-02-19 18:32:10 -0600494 buffer_ptr = buffer[block_row] + cinfo->master->first_MCU_col[ci];
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000495 if (first_row && block_row == 0)
DRCe5eaf372014-05-09 18:00:32 +0000496 prev_block_row = buffer_ptr;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000497 else
Leon Scroggins III3993b372018-07-16 10:43:45 -0400498 prev_block_row = buffer[block_row - 1];
499 if (last_row && block_row == block_rows - 1)
DRCe5eaf372014-05-09 18:00:32 +0000500 next_block_row = buffer_ptr;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000501 else
Leon Scroggins III3993b372018-07-16 10:43:45 -0400502 next_block_row = buffer[block_row + 1];
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000503 /* We fetch the surrounding DC values using a sliding-register approach.
504 * Initialize all nine here so as to do the right thing on narrow pics.
505 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400506 DC1 = DC2 = DC3 = (int)prev_block_row[0][0];
507 DC4 = DC5 = DC6 = (int)buffer_ptr[0][0];
508 DC7 = DC8 = DC9 = (int)next_block_row[0][0];
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000509 output_col = 0;
510 last_block_column = compptr->width_in_blocks - 1;
DRC0ef076f2016-02-19 18:32:10 -0600511 for (block_num = cinfo->master->first_MCU_col[ci];
512 block_num <= cinfo->master->last_MCU_col[ci]; block_num++) {
DRCe5eaf372014-05-09 18:00:32 +0000513 /* Fetch current DCT block into workspace so we can modify it. */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400514 jcopy_block_row(buffer_ptr, (JBLOCKROW)workspace, (JDIMENSION)1);
DRCe5eaf372014-05-09 18:00:32 +0000515 /* Update DC values */
516 if (block_num < last_block_column) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400517 DC3 = (int)prev_block_row[1][0];
518 DC6 = (int)buffer_ptr[1][0];
519 DC9 = (int)next_block_row[1][0];
DRCe5eaf372014-05-09 18:00:32 +0000520 }
521 /* Compute coefficient estimates per K.8.
522 * An estimate is applied only if coefficient is still zero,
523 * and is not known to be fully accurate.
524 */
525 /* AC01 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400526 if ((Al = coef_bits[1]) != 0 && workspace[1] == 0) {
DRCe5eaf372014-05-09 18:00:32 +0000527 num = 36 * Q00 * (DC4 - DC6);
528 if (num >= 0) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400529 pred = (int)(((Q01 << 7) + num) / (Q01 << 8));
530 if (Al > 0 && pred >= (1 << Al))
531 pred = (1 << Al) - 1;
DRCe5eaf372014-05-09 18:00:32 +0000532 } else {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400533 pred = (int)(((Q01 << 7) - num) / (Q01 << 8));
534 if (Al > 0 && pred >= (1 << Al))
535 pred = (1 << Al) - 1;
DRCe5eaf372014-05-09 18:00:32 +0000536 pred = -pred;
537 }
Leon Scroggins III3993b372018-07-16 10:43:45 -0400538 workspace[1] = (JCOEF)pred;
DRCe5eaf372014-05-09 18:00:32 +0000539 }
540 /* AC10 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400541 if ((Al = coef_bits[2]) != 0 && workspace[8] == 0) {
DRCe5eaf372014-05-09 18:00:32 +0000542 num = 36 * Q00 * (DC2 - DC8);
543 if (num >= 0) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400544 pred = (int)(((Q10 << 7) + num) / (Q10 << 8));
545 if (Al > 0 && pred >= (1 << Al))
546 pred = (1 << Al) - 1;
DRCe5eaf372014-05-09 18:00:32 +0000547 } else {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400548 pred = (int)(((Q10 << 7) - num) / (Q10 << 8));
549 if (Al > 0 && pred >= (1 << Al))
550 pred = (1 << Al) - 1;
DRCe5eaf372014-05-09 18:00:32 +0000551 pred = -pred;
552 }
Leon Scroggins III3993b372018-07-16 10:43:45 -0400553 workspace[8] = (JCOEF)pred;
DRCe5eaf372014-05-09 18:00:32 +0000554 }
555 /* AC20 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400556 if ((Al = coef_bits[3]) != 0 && workspace[16] == 0) {
557 num = 9 * Q00 * (DC2 + DC8 - 2 * DC5);
DRCe5eaf372014-05-09 18:00:32 +0000558 if (num >= 0) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400559 pred = (int)(((Q20 << 7) + num) / (Q20 << 8));
560 if (Al > 0 && pred >= (1 << Al))
561 pred = (1 << Al) - 1;
DRCe5eaf372014-05-09 18:00:32 +0000562 } else {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400563 pred = (int)(((Q20 << 7) - num) / (Q20 << 8));
564 if (Al > 0 && pred >= (1 << Al))
565 pred = (1 << Al) - 1;
DRCe5eaf372014-05-09 18:00:32 +0000566 pred = -pred;
567 }
Leon Scroggins III3993b372018-07-16 10:43:45 -0400568 workspace[16] = (JCOEF)pred;
DRCe5eaf372014-05-09 18:00:32 +0000569 }
570 /* AC11 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400571 if ((Al = coef_bits[4]) != 0 && workspace[9] == 0) {
DRCe5eaf372014-05-09 18:00:32 +0000572 num = 5 * Q00 * (DC1 - DC3 - DC7 + DC9);
573 if (num >= 0) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400574 pred = (int)(((Q11 << 7) + num) / (Q11 << 8));
575 if (Al > 0 && pred >= (1 << Al))
576 pred = (1 << Al) - 1;
DRCe5eaf372014-05-09 18:00:32 +0000577 } else {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400578 pred = (int)(((Q11 << 7) - num) / (Q11 << 8));
579 if (Al > 0 && pred >= (1 << Al))
580 pred = (1 << Al) - 1;
DRCe5eaf372014-05-09 18:00:32 +0000581 pred = -pred;
582 }
Leon Scroggins III3993b372018-07-16 10:43:45 -0400583 workspace[9] = (JCOEF)pred;
DRCe5eaf372014-05-09 18:00:32 +0000584 }
585 /* AC02 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400586 if ((Al = coef_bits[5]) != 0 && workspace[2] == 0) {
587 num = 9 * Q00 * (DC4 + DC6 - 2 * DC5);
DRCe5eaf372014-05-09 18:00:32 +0000588 if (num >= 0) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400589 pred = (int)(((Q02 << 7) + num) / (Q02 << 8));
590 if (Al > 0 && pred >= (1 << Al))
591 pred = (1 << Al) - 1;
DRCe5eaf372014-05-09 18:00:32 +0000592 } else {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400593 pred = (int)(((Q02 << 7) - num) / (Q02 << 8));
594 if (Al > 0 && pred >= (1 << Al))
595 pred = (1 << Al) - 1;
DRCe5eaf372014-05-09 18:00:32 +0000596 pred = -pred;
597 }
Leon Scroggins III3993b372018-07-16 10:43:45 -0400598 workspace[2] = (JCOEF)pred;
DRCe5eaf372014-05-09 18:00:32 +0000599 }
600 /* OK, do the IDCT */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400601 (*inverse_DCT) (cinfo, compptr, (JCOEFPTR)workspace, output_ptr,
602 output_col);
DRCe5eaf372014-05-09 18:00:32 +0000603 /* Advance for next column */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400604 DC1 = DC2; DC2 = DC3;
605 DC4 = DC5; DC5 = DC6;
606 DC7 = DC8; DC8 = DC9;
DRCe5eaf372014-05-09 18:00:32 +0000607 buffer_ptr++, prev_block_row++, next_block_row++;
608 output_col += compptr->_DCT_scaled_size;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000609 }
DRC49967cd2010-10-09 19:57:51 +0000610 output_ptr += compptr->_DCT_scaled_size;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000611 }
612 }
613
614 if (++(cinfo->output_iMCU_row) < cinfo->total_iMCU_rows)
615 return JPEG_ROW_COMPLETED;
616 return JPEG_SCAN_COMPLETED;
617}
618
619#endif /* BLOCK_SMOOTHING_SUPPORTED */
620
621
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000622/*
623 * Initialize coefficient buffer controller.
624 */
625
Thomas G. Lane489583f1996-02-07 00:00:00 +0000626GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400627jinit_d_coef_controller(j_decompress_ptr cinfo, boolean need_full_buffer)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000628{
629 my_coef_ptr coef;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000630
631 coef = (my_coef_ptr)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400632 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000633 sizeof(my_coef_controller));
Leon Scroggins III3993b372018-07-16 10:43:45 -0400634 cinfo->coef = (struct jpeg_d_coef_controller *)coef;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000635 coef->pub.start_input_pass = start_input_pass;
636 coef->pub.start_output_pass = start_output_pass;
637#ifdef BLOCK_SMOOTHING_SUPPORTED
638 coef->coef_bits_latch = NULL;
639#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000640
641 /* Create the coefficient buffer. */
642 if (need_full_buffer) {
643#ifdef D_MULTISCAN_FILES_SUPPORTED
644 /* Allocate a full-image virtual array for each component, */
645 /* padded to a multiple of samp_factor DCT blocks in each direction. */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000646 /* Note we ask for a pre-zeroed array. */
647 int ci, access_rows;
648 jpeg_component_info *compptr;
649
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000650 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
DRCe5eaf372014-05-09 18:00:32 +0000651 ci++, compptr++) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000652 access_rows = compptr->v_samp_factor;
653#ifdef BLOCK_SMOOTHING_SUPPORTED
654 /* If block smoothing could be used, need a bigger window */
655 if (cinfo->progressive_mode)
DRCe5eaf372014-05-09 18:00:32 +0000656 access_rows *= 3;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000657#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000658 coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400659 ((j_common_ptr)cinfo, JPOOL_IMAGE, TRUE,
660 (JDIMENSION)jround_up((long)compptr->width_in_blocks,
661 (long)compptr->h_samp_factor),
662 (JDIMENSION)jround_up((long)compptr->height_in_blocks,
663 (long)compptr->v_samp_factor),
664 (JDIMENSION)access_rows);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000665 }
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000666 coef->pub.consume_data = consume_data;
667 coef->pub.decompress_data = decompress_data;
668 coef->pub.coef_arrays = coef->whole_image; /* link to virtual arrays */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000669#else
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000670 ERREXIT(cinfo, JERR_NOT_COMPILED);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000671#endif
672 } else {
673 /* We only need a single-MCU buffer. */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000674 JBLOCKROW buffer;
675 int i;
676
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000677 buffer = (JBLOCKROW)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400678 (*cinfo->mem->alloc_large) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000679 D_MAX_BLOCKS_IN_MCU * sizeof(JBLOCK));
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000680 for (i = 0; i < D_MAX_BLOCKS_IN_MCU; i++) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000681 coef->MCU_buffer[i] = buffer + i;
682 }
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000683 coef->pub.consume_data = dummy_consume_data;
684 coef->pub.decompress_data = decompress_onepass;
685 coef->pub.coef_arrays = NULL; /* flag for no virtual arrays */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000686 }
Pierre Ossman35c47192009-03-09 13:29:37 +0000687
688 /* Allocate the workspace buffer */
689 coef->workspace = (JCOEF *)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400690 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000691 sizeof(JCOEF) * DCTSIZE2);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000692}