istereo

annotate libs/libjpeg/jddctmgr.c @ 26:862a3329a8f0

wohooo, added a shitload of code from zlib/libpng/libjpeg. When the good lord was raining shared libraries the iphone held a fucking umbrella...
author John Tsiombikas <nuclear@mutantstargoat.com>
date Thu, 08 Sep 2011 06:28:38 +0300
parents
children
rev   line source
nuclear@26 1 /*
nuclear@26 2 * jddctmgr.c
nuclear@26 3 *
nuclear@26 4 * Copyright (C) 1994-1996, Thomas G. Lane.
nuclear@26 5 * This file is part of the Independent JPEG Group's software.
nuclear@26 6 * For conditions of distribution and use, see the accompanying README file.
nuclear@26 7 *
nuclear@26 8 * This file contains the inverse-DCT management logic.
nuclear@26 9 * This code selects a particular IDCT implementation to be used,
nuclear@26 10 * and it performs related housekeeping chores. No code in this file
nuclear@26 11 * is executed per IDCT step, only during output pass setup.
nuclear@26 12 *
nuclear@26 13 * Note that the IDCT routines are responsible for performing coefficient
nuclear@26 14 * dequantization as well as the IDCT proper. This module sets up the
nuclear@26 15 * dequantization multiplier table needed by the IDCT routine.
nuclear@26 16 */
nuclear@26 17
nuclear@26 18 #define JPEG_INTERNALS
nuclear@26 19 #include "jinclude.h"
nuclear@26 20 #include "jpeglib.h"
nuclear@26 21 #include "jdct.h" /* Private declarations for DCT subsystem */
nuclear@26 22
nuclear@26 23
nuclear@26 24 /*
nuclear@26 25 * The decompressor input side (jdinput.c) saves away the appropriate
nuclear@26 26 * quantization table for each component at the start of the first scan
nuclear@26 27 * involving that component. (This is necessary in order to correctly
nuclear@26 28 * decode files that reuse Q-table slots.)
nuclear@26 29 * When we are ready to make an output pass, the saved Q-table is converted
nuclear@26 30 * to a multiplier table that will actually be used by the IDCT routine.
nuclear@26 31 * The multiplier table contents are IDCT-method-dependent. To support
nuclear@26 32 * application changes in IDCT method between scans, we can remake the
nuclear@26 33 * multiplier tables if necessary.
nuclear@26 34 * In buffered-image mode, the first output pass may occur before any data
nuclear@26 35 * has been seen for some components, and thus before their Q-tables have
nuclear@26 36 * been saved away. To handle this case, multiplier tables are preset
nuclear@26 37 * to zeroes; the result of the IDCT will be a neutral gray level.
nuclear@26 38 */
nuclear@26 39
nuclear@26 40
nuclear@26 41 /* Private subobject for this module */
nuclear@26 42
nuclear@26 43 typedef struct {
nuclear@26 44 struct jpeg_inverse_dct pub; /* public fields */
nuclear@26 45
nuclear@26 46 /* This array contains the IDCT method code that each multiplier table
nuclear@26 47 * is currently set up for, or -1 if it's not yet set up.
nuclear@26 48 * The actual multiplier tables are pointed to by dct_table in the
nuclear@26 49 * per-component comp_info structures.
nuclear@26 50 */
nuclear@26 51 int cur_method[MAX_COMPONENTS];
nuclear@26 52 } my_idct_controller;
nuclear@26 53
nuclear@26 54 typedef my_idct_controller * my_idct_ptr;
nuclear@26 55
nuclear@26 56
nuclear@26 57 /* Allocated multiplier tables: big enough for any supported variant */
nuclear@26 58
nuclear@26 59 typedef union {
nuclear@26 60 ISLOW_MULT_TYPE islow_array[DCTSIZE2];
nuclear@26 61 #ifdef DCT_IFAST_SUPPORTED
nuclear@26 62 IFAST_MULT_TYPE ifast_array[DCTSIZE2];
nuclear@26 63 #endif
nuclear@26 64 #ifdef DCT_FLOAT_SUPPORTED
nuclear@26 65 FLOAT_MULT_TYPE float_array[DCTSIZE2];
nuclear@26 66 #endif
nuclear@26 67 } multiplier_table;
nuclear@26 68
nuclear@26 69
nuclear@26 70 /* The current scaled-IDCT routines require ISLOW-style multiplier tables,
nuclear@26 71 * so be sure to compile that code if either ISLOW or SCALING is requested.
nuclear@26 72 */
nuclear@26 73 #ifdef DCT_ISLOW_SUPPORTED
nuclear@26 74 #define PROVIDE_ISLOW_TABLES
nuclear@26 75 #else
nuclear@26 76 #ifdef IDCT_SCALING_SUPPORTED
nuclear@26 77 #define PROVIDE_ISLOW_TABLES
nuclear@26 78 #endif
nuclear@26 79 #endif
nuclear@26 80
nuclear@26 81
nuclear@26 82 /*
nuclear@26 83 * Prepare for an output pass.
nuclear@26 84 * Here we select the proper IDCT routine for each component and build
nuclear@26 85 * a matching multiplier table.
nuclear@26 86 */
nuclear@26 87
nuclear@26 88 METHODDEF(void)
nuclear@26 89 start_pass (j_decompress_ptr cinfo)
nuclear@26 90 {
nuclear@26 91 my_idct_ptr idct = (my_idct_ptr) cinfo->idct;
nuclear@26 92 int ci, i;
nuclear@26 93 jpeg_component_info *compptr;
nuclear@26 94 int method = 0;
nuclear@26 95 inverse_DCT_method_ptr method_ptr = NULL;
nuclear@26 96 JQUANT_TBL * qtbl;
nuclear@26 97
nuclear@26 98 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
nuclear@26 99 ci++, compptr++) {
nuclear@26 100 /* Select the proper IDCT routine for this component's scaling */
nuclear@26 101 switch (compptr->DCT_scaled_size) {
nuclear@26 102 #ifdef IDCT_SCALING_SUPPORTED
nuclear@26 103 case 1:
nuclear@26 104 method_ptr = jpeg_idct_1x1;
nuclear@26 105 method = JDCT_ISLOW; /* jidctred uses islow-style table */
nuclear@26 106 break;
nuclear@26 107 case 2:
nuclear@26 108 method_ptr = jpeg_idct_2x2;
nuclear@26 109 method = JDCT_ISLOW; /* jidctred uses islow-style table */
nuclear@26 110 break;
nuclear@26 111 case 4:
nuclear@26 112 method_ptr = jpeg_idct_4x4;
nuclear@26 113 method = JDCT_ISLOW; /* jidctred uses islow-style table */
nuclear@26 114 break;
nuclear@26 115 #endif
nuclear@26 116 case DCTSIZE:
nuclear@26 117 switch (cinfo->dct_method) {
nuclear@26 118 #ifdef DCT_ISLOW_SUPPORTED
nuclear@26 119 case JDCT_ISLOW:
nuclear@26 120 method_ptr = jpeg_idct_islow;
nuclear@26 121 method = JDCT_ISLOW;
nuclear@26 122 break;
nuclear@26 123 #endif
nuclear@26 124 #ifdef DCT_IFAST_SUPPORTED
nuclear@26 125 case JDCT_IFAST:
nuclear@26 126 method_ptr = jpeg_idct_ifast;
nuclear@26 127 method = JDCT_IFAST;
nuclear@26 128 break;
nuclear@26 129 #endif
nuclear@26 130 #ifdef DCT_FLOAT_SUPPORTED
nuclear@26 131 case JDCT_FLOAT:
nuclear@26 132 method_ptr = jpeg_idct_float;
nuclear@26 133 method = JDCT_FLOAT;
nuclear@26 134 break;
nuclear@26 135 #endif
nuclear@26 136 default:
nuclear@26 137 ERREXIT(cinfo, JERR_NOT_COMPILED);
nuclear@26 138 break;
nuclear@26 139 }
nuclear@26 140 break;
nuclear@26 141 default:
nuclear@26 142 ERREXIT1(cinfo, JERR_BAD_DCTSIZE, compptr->DCT_scaled_size);
nuclear@26 143 break;
nuclear@26 144 }
nuclear@26 145 idct->pub.inverse_DCT[ci] = method_ptr;
nuclear@26 146 /* Create multiplier table from quant table.
nuclear@26 147 * However, we can skip this if the component is uninteresting
nuclear@26 148 * or if we already built the table. Also, if no quant table
nuclear@26 149 * has yet been saved for the component, we leave the
nuclear@26 150 * multiplier table all-zero; we'll be reading zeroes from the
nuclear@26 151 * coefficient controller's buffer anyway.
nuclear@26 152 */
nuclear@26 153 if (! compptr->component_needed || idct->cur_method[ci] == method)
nuclear@26 154 continue;
nuclear@26 155 qtbl = compptr->quant_table;
nuclear@26 156 if (qtbl == NULL) /* happens if no data yet for component */
nuclear@26 157 continue;
nuclear@26 158 idct->cur_method[ci] = method;
nuclear@26 159 switch (method) {
nuclear@26 160 #ifdef PROVIDE_ISLOW_TABLES
nuclear@26 161 case JDCT_ISLOW:
nuclear@26 162 {
nuclear@26 163 /* For LL&M IDCT method, multipliers are equal to raw quantization
nuclear@26 164 * coefficients, but are stored as ints to ensure access efficiency.
nuclear@26 165 */
nuclear@26 166 ISLOW_MULT_TYPE * ismtbl = (ISLOW_MULT_TYPE *) compptr->dct_table;
nuclear@26 167 for (i = 0; i < DCTSIZE2; i++) {
nuclear@26 168 ismtbl[i] = (ISLOW_MULT_TYPE) qtbl->quantval[i];
nuclear@26 169 }
nuclear@26 170 }
nuclear@26 171 break;
nuclear@26 172 #endif
nuclear@26 173 #ifdef DCT_IFAST_SUPPORTED
nuclear@26 174 case JDCT_IFAST:
nuclear@26 175 {
nuclear@26 176 /* For AA&N IDCT method, multipliers are equal to quantization
nuclear@26 177 * coefficients scaled by scalefactor[row]*scalefactor[col], where
nuclear@26 178 * scalefactor[0] = 1
nuclear@26 179 * scalefactor[k] = cos(k*PI/16) * sqrt(2) for k=1..7
nuclear@26 180 * For integer operation, the multiplier table is to be scaled by
nuclear@26 181 * IFAST_SCALE_BITS.
nuclear@26 182 */
nuclear@26 183 IFAST_MULT_TYPE * ifmtbl = (IFAST_MULT_TYPE *) compptr->dct_table;
nuclear@26 184 #define CONST_BITS 14
nuclear@26 185 static const INT16 aanscales[DCTSIZE2] = {
nuclear@26 186 /* precomputed values scaled up by 14 bits */
nuclear@26 187 16384, 22725, 21407, 19266, 16384, 12873, 8867, 4520,
nuclear@26 188 22725, 31521, 29692, 26722, 22725, 17855, 12299, 6270,
nuclear@26 189 21407, 29692, 27969, 25172, 21407, 16819, 11585, 5906,
nuclear@26 190 19266, 26722, 25172, 22654, 19266, 15137, 10426, 5315,
nuclear@26 191 16384, 22725, 21407, 19266, 16384, 12873, 8867, 4520,
nuclear@26 192 12873, 17855, 16819, 15137, 12873, 10114, 6967, 3552,
nuclear@26 193 8867, 12299, 11585, 10426, 8867, 6967, 4799, 2446,
nuclear@26 194 4520, 6270, 5906, 5315, 4520, 3552, 2446, 1247
nuclear@26 195 };
nuclear@26 196 SHIFT_TEMPS
nuclear@26 197
nuclear@26 198 for (i = 0; i < DCTSIZE2; i++) {
nuclear@26 199 ifmtbl[i] = (IFAST_MULT_TYPE)
nuclear@26 200 DESCALE(MULTIPLY16V16((INT32) qtbl->quantval[i],
nuclear@26 201 (INT32) aanscales[i]),
nuclear@26 202 CONST_BITS-IFAST_SCALE_BITS);
nuclear@26 203 }
nuclear@26 204 }
nuclear@26 205 break;
nuclear@26 206 #endif
nuclear@26 207 #ifdef DCT_FLOAT_SUPPORTED
nuclear@26 208 case JDCT_FLOAT:
nuclear@26 209 {
nuclear@26 210 /* For float AA&N IDCT method, multipliers are equal to quantization
nuclear@26 211 * coefficients scaled by scalefactor[row]*scalefactor[col], where
nuclear@26 212 * scalefactor[0] = 1
nuclear@26 213 * scalefactor[k] = cos(k*PI/16) * sqrt(2) for k=1..7
nuclear@26 214 */
nuclear@26 215 FLOAT_MULT_TYPE * fmtbl = (FLOAT_MULT_TYPE *) compptr->dct_table;
nuclear@26 216 int row, col;
nuclear@26 217 static const double aanscalefactor[DCTSIZE] = {
nuclear@26 218 1.0, 1.387039845, 1.306562965, 1.175875602,
nuclear@26 219 1.0, 0.785694958, 0.541196100, 0.275899379
nuclear@26 220 };
nuclear@26 221
nuclear@26 222 i = 0;
nuclear@26 223 for (row = 0; row < DCTSIZE; row++) {
nuclear@26 224 for (col = 0; col < DCTSIZE; col++) {
nuclear@26 225 fmtbl[i] = (FLOAT_MULT_TYPE)
nuclear@26 226 ((double) qtbl->quantval[i] *
nuclear@26 227 aanscalefactor[row] * aanscalefactor[col]);
nuclear@26 228 i++;
nuclear@26 229 }
nuclear@26 230 }
nuclear@26 231 }
nuclear@26 232 break;
nuclear@26 233 #endif
nuclear@26 234 default:
nuclear@26 235 ERREXIT(cinfo, JERR_NOT_COMPILED);
nuclear@26 236 break;
nuclear@26 237 }
nuclear@26 238 }
nuclear@26 239 }
nuclear@26 240
nuclear@26 241
nuclear@26 242 /*
nuclear@26 243 * Initialize IDCT manager.
nuclear@26 244 */
nuclear@26 245
nuclear@26 246 GLOBAL(void)
nuclear@26 247 jinit_inverse_dct (j_decompress_ptr cinfo)
nuclear@26 248 {
nuclear@26 249 my_idct_ptr idct;
nuclear@26 250 int ci;
nuclear@26 251 jpeg_component_info *compptr;
nuclear@26 252
nuclear@26 253 idct = (my_idct_ptr)
nuclear@26 254 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
nuclear@26 255 SIZEOF(my_idct_controller));
nuclear@26 256 cinfo->idct = (struct jpeg_inverse_dct *) idct;
nuclear@26 257 idct->pub.start_pass = start_pass;
nuclear@26 258
nuclear@26 259 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
nuclear@26 260 ci++, compptr++) {
nuclear@26 261 /* Allocate and pre-zero a multiplier table for each component */
nuclear@26 262 compptr->dct_table =
nuclear@26 263 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
nuclear@26 264 SIZEOF(multiplier_table));
nuclear@26 265 MEMZERO(compptr->dct_table, SIZEOF(multiplier_table));
nuclear@26 266 /* Mark multiplier table not yet set up for any method */
nuclear@26 267 idct->cur_method[ci] = -1;
nuclear@26 268 }
nuclear@26 269 }