blob: 6cc3310e3bd635b55c0f8d116f673f88b5f32f84 [file] [log] [blame]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001/*
2 * jddctmgr.c
3 *
DRCa73e8702012-12-31 02:52:30 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane489583f1996-02-07 00:00:00 +00005 * Copyright (C) 1994-1996, Thomas G. Lane.
Guido Vollbedingf18f81b2010-02-28 00:00:00 +00006 * Modified 2002-2010 by Guido Vollbeding.
DRCa6ef2822013-09-28 03:23:49 +00007 * libjpeg-turbo Modifications:
Pierre Ossman59a39382009-03-09 13:15:56 +00008 * Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
DRC36a6eec2010-10-08 08:05:44 +00009 * Copyright (C) 2010, D. R. Commander.
DRC5ef46302014-05-18 20:04:47 +000010 * Copyright (C) 2013, MIPS Technologies, Inc., California
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000011 * For conditions of distribution and use, see the accompanying README file.
12 *
13 * This file contains the inverse-DCT management logic.
14 * This code selects a particular IDCT implementation to be used,
15 * and it performs related housekeeping chores. No code in this file
Thomas G. Lanebc79e061995-08-02 00:00:00 +000016 * is executed per IDCT step, only during output pass setup.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000017 *
18 * Note that the IDCT routines are responsible for performing coefficient
19 * dequantization as well as the IDCT proper. This module sets up the
20 * dequantization multiplier table needed by the IDCT routine.
21 */
22
23#define JPEG_INTERNALS
24#include "jinclude.h"
25#include "jpeglib.h"
DRCe5eaf372014-05-09 18:00:32 +000026#include "jdct.h" /* Private declarations for DCT subsystem */
Pierre Ossman59a39382009-03-09 13:15:56 +000027#include "jsimddct.h"
DRC36a6eec2010-10-08 08:05:44 +000028#include "jpegcomp.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000029
30
Thomas G. Lanebc79e061995-08-02 00:00:00 +000031/*
32 * The decompressor input side (jdinput.c) saves away the appropriate
33 * quantization table for each component at the start of the first scan
34 * involving that component. (This is necessary in order to correctly
35 * decode files that reuse Q-table slots.)
36 * When we are ready to make an output pass, the saved Q-table is converted
37 * to a multiplier table that will actually be used by the IDCT routine.
38 * The multiplier table contents are IDCT-method-dependent. To support
39 * application changes in IDCT method between scans, we can remake the
40 * multiplier tables if necessary.
41 * In buffered-image mode, the first output pass may occur before any data
42 * has been seen for some components, and thus before their Q-tables have
43 * been saved away. To handle this case, multiplier tables are preset
44 * to zeroes; the result of the IDCT will be a neutral gray level.
45 */
46
47
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000048/* Private subobject for this module */
49
50typedef struct {
DRCe5eaf372014-05-09 18:00:32 +000051 struct jpeg_inverse_dct pub; /* public fields */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000052
Thomas G. Lanebc79e061995-08-02 00:00:00 +000053 /* This array contains the IDCT method code that each multiplier table
54 * is currently set up for, or -1 if it's not yet set up.
55 * The actual multiplier tables are pointed to by dct_table in the
56 * per-component comp_info structures.
57 */
58 int cur_method[MAX_COMPONENTS];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000059} my_idct_controller;
60
61typedef my_idct_controller * my_idct_ptr;
62
63
Thomas G. Lanebc79e061995-08-02 00:00:00 +000064/* Allocated multiplier tables: big enough for any supported variant */
65
66typedef union {
67 ISLOW_MULT_TYPE islow_array[DCTSIZE2];
68#ifdef DCT_IFAST_SUPPORTED
69 IFAST_MULT_TYPE ifast_array[DCTSIZE2];
70#endif
71#ifdef DCT_FLOAT_SUPPORTED
72 FLOAT_MULT_TYPE float_array[DCTSIZE2];
73#endif
74} multiplier_table;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000075
76
77/* The current scaled-IDCT routines require ISLOW-style multiplier tables,
78 * so be sure to compile that code if either ISLOW or SCALING is requested.
79 */
80#ifdef DCT_ISLOW_SUPPORTED
81#define PROVIDE_ISLOW_TABLES
82#else
83#ifdef IDCT_SCALING_SUPPORTED
84#define PROVIDE_ISLOW_TABLES
85#endif
86#endif
87
88
89/*
Thomas G. Lanebc79e061995-08-02 00:00:00 +000090 * Prepare for an output pass.
91 * Here we select the proper IDCT routine for each component and build
92 * a matching multiplier table.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000093 */
94
Thomas G. Lane489583f1996-02-07 00:00:00 +000095METHODDEF(void)
Thomas G. Lanebc79e061995-08-02 00:00:00 +000096start_pass (j_decompress_ptr cinfo)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000097{
98 my_idct_ptr idct = (my_idct_ptr) cinfo->idct;
Thomas G. Lanebc79e061995-08-02 00:00:00 +000099 int ci, i;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000100 jpeg_component_info *compptr;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000101 int method = 0;
102 inverse_DCT_method_ptr method_ptr = NULL;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000103 JQUANT_TBL * qtbl;
104
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000105 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
106 ci++, compptr++) {
107 /* Select the proper IDCT routine for this component's scaling */
DRC49967cd2010-10-09 19:57:51 +0000108 switch (compptr->_DCT_scaled_size) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000109#ifdef IDCT_SCALING_SUPPORTED
110 case 1:
111 method_ptr = jpeg_idct_1x1;
DRCe5eaf372014-05-09 18:00:32 +0000112 method = JDCT_ISLOW; /* jidctred uses islow-style table */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000113 break;
114 case 2:
Pierre Ossman59a39382009-03-09 13:15:56 +0000115 if (jsimd_can_idct_2x2())
116 method_ptr = jsimd_idct_2x2;
117 else
118 method_ptr = jpeg_idct_2x2;
DRCe5eaf372014-05-09 18:00:32 +0000119 method = JDCT_ISLOW; /* jidctred uses islow-style table */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000120 break;
DRC27fb3fc2012-01-28 01:48:07 +0000121 case 3:
Guido Vollbeding5996a252009-06-27 00:00:00 +0000122 method_ptr = jpeg_idct_3x3;
DRCe5eaf372014-05-09 18:00:32 +0000123 method = JDCT_ISLOW; /* jidctint uses islow-style table */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000124 break;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000125 case 4:
Pierre Ossman59a39382009-03-09 13:15:56 +0000126 if (jsimd_can_idct_4x4())
127 method_ptr = jsimd_idct_4x4;
128 else
129 method_ptr = jpeg_idct_4x4;
DRCe5eaf372014-05-09 18:00:32 +0000130 method = JDCT_ISLOW; /* jidctred uses islow-style table */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000131 break;
DRC27fb3fc2012-01-28 01:48:07 +0000132 case 5:
Guido Vollbeding5996a252009-06-27 00:00:00 +0000133 method_ptr = jpeg_idct_5x5;
DRCe5eaf372014-05-09 18:00:32 +0000134 method = JDCT_ISLOW; /* jidctint uses islow-style table */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000135 break;
DRC27fb3fc2012-01-28 01:48:07 +0000136 case 6:
DRCe5005912013-09-27 17:51:08 +0000137#if defined(__mips__)
138 if (jsimd_can_idct_6x6())
139 method_ptr = jsimd_idct_6x6;
140 else
141#endif
Guido Vollbeding5996a252009-06-27 00:00:00 +0000142 method_ptr = jpeg_idct_6x6;
DRCe5eaf372014-05-09 18:00:32 +0000143 method = JDCT_ISLOW; /* jidctint uses islow-style table */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000144 break;
DRC27fb3fc2012-01-28 01:48:07 +0000145 case 7:
Guido Vollbeding5996a252009-06-27 00:00:00 +0000146 method_ptr = jpeg_idct_7x7;
DRCe5eaf372014-05-09 18:00:32 +0000147 method = JDCT_ISLOW; /* jidctint uses islow-style table */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000148 break;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000149#endif
150 case DCTSIZE:
151 switch (cinfo->dct_method) {
152#ifdef DCT_ISLOW_SUPPORTED
153 case JDCT_ISLOW:
DRCe5eaf372014-05-09 18:00:32 +0000154 if (jsimd_can_idct_islow())
155 method_ptr = jsimd_idct_islow;
156 else
157 method_ptr = jpeg_idct_islow;
158 method = JDCT_ISLOW;
159 break;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000160#endif
161#ifdef DCT_IFAST_SUPPORTED
162 case JDCT_IFAST:
DRCe5eaf372014-05-09 18:00:32 +0000163 if (jsimd_can_idct_ifast())
164 method_ptr = jsimd_idct_ifast;
165 else
166 method_ptr = jpeg_idct_ifast;
167 method = JDCT_IFAST;
168 break;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000169#endif
170#ifdef DCT_FLOAT_SUPPORTED
171 case JDCT_FLOAT:
DRCe5eaf372014-05-09 18:00:32 +0000172 if (jsimd_can_idct_float())
173 method_ptr = jsimd_idct_float;
174 else
175 method_ptr = jpeg_idct_float;
176 method = JDCT_FLOAT;
177 break;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000178#endif
179 default:
DRCe5eaf372014-05-09 18:00:32 +0000180 ERREXIT(cinfo, JERR_NOT_COMPILED);
181 break;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000182 }
183 break;
DRCa3deac12015-07-14 20:51:53 +0000184#ifdef IDCT_SCALING_SUPPORTED
DRC27fb3fc2012-01-28 01:48:07 +0000185 case 9:
186 method_ptr = jpeg_idct_9x9;
DRCe5eaf372014-05-09 18:00:32 +0000187 method = JDCT_ISLOW; /* jidctint uses islow-style table */
DRC27fb3fc2012-01-28 01:48:07 +0000188 break;
189 case 10:
190 method_ptr = jpeg_idct_10x10;
DRCe5eaf372014-05-09 18:00:32 +0000191 method = JDCT_ISLOW; /* jidctint uses islow-style table */
DRC27fb3fc2012-01-28 01:48:07 +0000192 break;
193 case 11:
194 method_ptr = jpeg_idct_11x11;
DRCe5eaf372014-05-09 18:00:32 +0000195 method = JDCT_ISLOW; /* jidctint uses islow-style table */
DRC27fb3fc2012-01-28 01:48:07 +0000196 break;
197 case 12:
DRCe5005912013-09-27 17:51:08 +0000198#if defined(__mips__)
199 if (jsimd_can_idct_12x12())
200 method_ptr = jsimd_idct_12x12;
201 else
202#endif
DRC27fb3fc2012-01-28 01:48:07 +0000203 method_ptr = jpeg_idct_12x12;
DRCe5eaf372014-05-09 18:00:32 +0000204 method = JDCT_ISLOW; /* jidctint uses islow-style table */
DRC27fb3fc2012-01-28 01:48:07 +0000205 break;
206 case 13:
207 method_ptr = jpeg_idct_13x13;
DRCe5eaf372014-05-09 18:00:32 +0000208 method = JDCT_ISLOW; /* jidctint uses islow-style table */
DRC27fb3fc2012-01-28 01:48:07 +0000209 break;
210 case 14:
211 method_ptr = jpeg_idct_14x14;
DRCe5eaf372014-05-09 18:00:32 +0000212 method = JDCT_ISLOW; /* jidctint uses islow-style table */
DRC27fb3fc2012-01-28 01:48:07 +0000213 break;
214 case 15:
215 method_ptr = jpeg_idct_15x15;
DRCe5eaf372014-05-09 18:00:32 +0000216 method = JDCT_ISLOW; /* jidctint uses islow-style table */
DRC27fb3fc2012-01-28 01:48:07 +0000217 break;
218 case 16:
219 method_ptr = jpeg_idct_16x16;
DRCe5eaf372014-05-09 18:00:32 +0000220 method = JDCT_ISLOW; /* jidctint uses islow-style table */
DRC27fb3fc2012-01-28 01:48:07 +0000221 break;
DRCa3deac12015-07-14 20:51:53 +0000222#endif
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000223 default:
DRC49967cd2010-10-09 19:57:51 +0000224 ERREXIT1(cinfo, JERR_BAD_DCTSIZE, compptr->_DCT_scaled_size);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000225 break;
226 }
227 idct->pub.inverse_DCT[ci] = method_ptr;
228 /* Create multiplier table from quant table.
229 * However, we can skip this if the component is uninteresting
230 * or if we already built the table. Also, if no quant table
231 * has yet been saved for the component, we leave the
232 * multiplier table all-zero; we'll be reading zeroes from the
233 * coefficient controller's buffer anyway.
234 */
235 if (! compptr->component_needed || idct->cur_method[ci] == method)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000236 continue;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000237 qtbl = compptr->quant_table;
DRCe5eaf372014-05-09 18:00:32 +0000238 if (qtbl == NULL) /* happens if no data yet for component */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000239 continue;
240 idct->cur_method[ci] = method;
241 switch (method) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000242#ifdef PROVIDE_ISLOW_TABLES
243 case JDCT_ISLOW:
244 {
DRCe5eaf372014-05-09 18:00:32 +0000245 /* For LL&M IDCT method, multipliers are equal to raw quantization
246 * coefficients, but are stored as ints to ensure access efficiency.
247 */
248 ISLOW_MULT_TYPE * ismtbl = (ISLOW_MULT_TYPE *) compptr->dct_table;
249 for (i = 0; i < DCTSIZE2; i++) {
250 ismtbl[i] = (ISLOW_MULT_TYPE) qtbl->quantval[i];
251 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000252 }
253 break;
254#endif
255#ifdef DCT_IFAST_SUPPORTED
256 case JDCT_IFAST:
257 {
DRCe5eaf372014-05-09 18:00:32 +0000258 /* For AA&N IDCT method, multipliers are equal to quantization
259 * coefficients scaled by scalefactor[row]*scalefactor[col], where
260 * scalefactor[0] = 1
261 * scalefactor[k] = cos(k*PI/16) * sqrt(2) for k=1..7
262 * For integer operation, the multiplier table is to be scaled by
263 * IFAST_SCALE_BITS.
264 */
265 IFAST_MULT_TYPE * ifmtbl = (IFAST_MULT_TYPE *) compptr->dct_table;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000266#define CONST_BITS 14
DRCe5eaf372014-05-09 18:00:32 +0000267 static const INT16 aanscales[DCTSIZE2] = {
268 /* precomputed values scaled up by 14 bits */
269 16384, 22725, 21407, 19266, 16384, 12873, 8867, 4520,
270 22725, 31521, 29692, 26722, 22725, 17855, 12299, 6270,
271 21407, 29692, 27969, 25172, 21407, 16819, 11585, 5906,
272 19266, 26722, 25172, 22654, 19266, 15137, 10426, 5315,
273 16384, 22725, 21407, 19266, 16384, 12873, 8867, 4520,
274 12873, 17855, 16819, 15137, 12873, 10114, 6967, 3552,
275 8867, 12299, 11585, 10426, 8867, 6967, 4799, 2446,
276 4520, 6270, 5906, 5315, 4520, 3552, 2446, 1247
277 };
278 SHIFT_TEMPS
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000279
DRCe5eaf372014-05-09 18:00:32 +0000280 for (i = 0; i < DCTSIZE2; i++) {
281 ifmtbl[i] = (IFAST_MULT_TYPE)
282 DESCALE(MULTIPLY16V16((INT32) qtbl->quantval[i],
283 (INT32) aanscales[i]),
284 CONST_BITS-IFAST_SCALE_BITS);
285 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000286 }
287 break;
288#endif
289#ifdef DCT_FLOAT_SUPPORTED
290 case JDCT_FLOAT:
291 {
DRCe5eaf372014-05-09 18:00:32 +0000292 /* For float AA&N IDCT method, multipliers are equal to quantization
293 * coefficients scaled by scalefactor[row]*scalefactor[col], where
294 * scalefactor[0] = 1
295 * scalefactor[k] = cos(k*PI/16) * sqrt(2) for k=1..7
296 */
297 FLOAT_MULT_TYPE * fmtbl = (FLOAT_MULT_TYPE *) compptr->dct_table;
298 int row, col;
299 static const double aanscalefactor[DCTSIZE] = {
300 1.0, 1.387039845, 1.306562965, 1.175875602,
301 1.0, 0.785694958, 0.541196100, 0.275899379
302 };
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000303
DRCe5eaf372014-05-09 18:00:32 +0000304 i = 0;
305 for (row = 0; row < DCTSIZE; row++) {
306 for (col = 0; col < DCTSIZE; col++) {
307 fmtbl[i] = (FLOAT_MULT_TYPE)
308 ((double) qtbl->quantval[i] *
309 aanscalefactor[row] * aanscalefactor[col]);
310 i++;
311 }
312 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000313 }
314 break;
315#endif
316 default:
317 ERREXIT(cinfo, JERR_NOT_COMPILED);
318 break;
319 }
320 }
321}
322
323
324/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000325 * Initialize IDCT manager.
326 */
327
Thomas G. Lane489583f1996-02-07 00:00:00 +0000328GLOBAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000329jinit_inverse_dct (j_decompress_ptr cinfo)
330{
331 my_idct_ptr idct;
332 int ci;
333 jpeg_component_info *compptr;
334
335 idct = (my_idct_ptr)
336 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000337 sizeof(my_idct_controller));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000338 cinfo->idct = (struct jpeg_inverse_dct *) idct;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000339 idct->pub.start_pass = start_pass;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000340
341 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
342 ci++, compptr++) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000343 /* Allocate and pre-zero a multiplier table for each component */
344 compptr->dct_table =
345 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000346 sizeof(multiplier_table));
347 MEMZERO(compptr->dct_table, sizeof(multiplier_table));
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000348 /* Mark multiplier table not yet set up for any method */
349 idct->cur_method[ci] = -1;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000350 }
351}