image_intensities 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/ext/image_intensities/Makefile +73 -4
  3. data/ext/image_intensities/turbojpeg/cderror.h +137 -0
  4. data/ext/image_intensities/turbojpeg/cdjpeg.h +157 -0
  5. data/ext/image_intensities/turbojpeg/cmyk.h +61 -0
  6. data/ext/image_intensities/turbojpeg/jaricom.c +157 -0
  7. data/ext/image_intensities/turbojpeg/jcapimin.c +295 -0
  8. data/ext/image_intensities/turbojpeg/jcapistd.c +162 -0
  9. data/ext/image_intensities/turbojpeg/jcarith.c +932 -0
  10. data/ext/image_intensities/turbojpeg/jccoefct.c +449 -0
  11. data/ext/image_intensities/turbojpeg/jccolext.c +144 -0
  12. data/ext/image_intensities/turbojpeg/jccolor.c +710 -0
  13. data/ext/image_intensities/turbojpeg/jcdctmgr.c +721 -0
  14. data/ext/image_intensities/turbojpeg/jchuff.c +1096 -0
  15. data/ext/image_intensities/turbojpeg/jchuff.h +42 -0
  16. data/ext/image_intensities/turbojpeg/jcicc.c +105 -0
  17. data/ext/image_intensities/turbojpeg/jcinit.c +77 -0
  18. data/ext/image_intensities/turbojpeg/jcmainct.c +162 -0
  19. data/ext/image_intensities/turbojpeg/jcmarker.c +664 -0
  20. data/ext/image_intensities/turbojpeg/jcmaster.c +640 -0
  21. data/ext/image_intensities/turbojpeg/jcomapi.c +109 -0
  22. data/ext/image_intensities/turbojpeg/jconfig.h +73 -0
  23. data/ext/image_intensities/turbojpeg/jconfigint.h +31 -0
  24. data/ext/image_intensities/turbojpeg/jcparam.c +541 -0
  25. data/ext/image_intensities/turbojpeg/jcphuff.c +1105 -0
  26. data/ext/image_intensities/turbojpeg/jcprepct.c +351 -0
  27. data/ext/image_intensities/turbojpeg/jcsample.c +539 -0
  28. data/ext/image_intensities/turbojpeg/jctrans.c +400 -0
  29. data/ext/image_intensities/turbojpeg/jdapimin.c +407 -0
  30. data/ext/image_intensities/turbojpeg/jdapistd.c +639 -0
  31. data/ext/image_intensities/turbojpeg/jdarith.c +773 -0
  32. data/ext/image_intensities/turbojpeg/jdatadst-tj.c +203 -0
  33. data/ext/image_intensities/turbojpeg/jdatadst.c +293 -0
  34. data/ext/image_intensities/turbojpeg/jdatasrc-tj.c +194 -0
  35. data/ext/image_intensities/turbojpeg/jdatasrc.c +295 -0
  36. data/ext/image_intensities/turbojpeg/jdcoefct.c +692 -0
  37. data/ext/image_intensities/turbojpeg/jdcoefct.h +82 -0
  38. data/ext/image_intensities/turbojpeg/jdcol565.c +384 -0
  39. data/ext/image_intensities/turbojpeg/jdcolext.c +143 -0
  40. data/ext/image_intensities/turbojpeg/jdcolor.c +883 -0
  41. data/ext/image_intensities/turbojpeg/jdct.h +208 -0
  42. data/ext/image_intensities/turbojpeg/jddctmgr.c +352 -0
  43. data/ext/image_intensities/turbojpeg/jdhuff.c +831 -0
  44. data/ext/image_intensities/turbojpeg/jdhuff.h +238 -0
  45. data/ext/image_intensities/turbojpeg/jdicc.c +171 -0
  46. data/ext/image_intensities/turbojpeg/jdinput.c +408 -0
  47. data/ext/image_intensities/turbojpeg/jdmainct.c +460 -0
  48. data/ext/image_intensities/turbojpeg/jdmainct.h +71 -0
  49. data/ext/image_intensities/turbojpeg/jdmarker.c +1377 -0
  50. data/ext/image_intensities/turbojpeg/jdmaster.c +737 -0
  51. data/ext/image_intensities/turbojpeg/jdmaster.h +28 -0
  52. data/ext/image_intensities/turbojpeg/jdmerge.c +617 -0
  53. data/ext/image_intensities/turbojpeg/jdmrg565.c +354 -0
  54. data/ext/image_intensities/turbojpeg/jdmrgext.c +184 -0
  55. data/ext/image_intensities/turbojpeg/jdphuff.c +687 -0
  56. data/ext/image_intensities/turbojpeg/jdpostct.c +294 -0
  57. data/ext/image_intensities/turbojpeg/jdsample.c +518 -0
  58. data/ext/image_intensities/turbojpeg/jdsample.h +50 -0
  59. data/ext/image_intensities/turbojpeg/jdtrans.c +155 -0
  60. data/ext/image_intensities/turbojpeg/jerror.c +251 -0
  61. data/ext/image_intensities/turbojpeg/jfdctflt.c +169 -0
  62. data/ext/image_intensities/turbojpeg/jfdctfst.c +227 -0
  63. data/ext/image_intensities/turbojpeg/jfdctint.c +288 -0
  64. data/ext/image_intensities/turbojpeg/jidctflt.c +240 -0
  65. data/ext/image_intensities/turbojpeg/jidctfst.c +371 -0
  66. data/ext/image_intensities/turbojpeg/jidctint.c +2627 -0
  67. data/ext/image_intensities/turbojpeg/jidctred.c +409 -0
  68. data/ext/image_intensities/turbojpeg/jinclude.h +88 -0
  69. data/ext/image_intensities/turbojpeg/jmemmgr.c +1179 -0
  70. data/ext/image_intensities/turbojpeg/jmemnobs.c +115 -0
  71. data/ext/image_intensities/turbojpeg/jmemsys.h +178 -0
  72. data/ext/image_intensities/turbojpeg/jpeg_nbits_table.h +4098 -0
  73. data/ext/image_intensities/turbojpeg/jpegcomp.h +31 -0
  74. data/ext/image_intensities/turbojpeg/jquant1.c +859 -0
  75. data/ext/image_intensities/turbojpeg/jquant2.c +1285 -0
  76. data/ext/image_intensities/turbojpeg/jsimd.h +117 -0
  77. data/ext/image_intensities/turbojpeg/jsimd_none.c +418 -0
  78. data/ext/image_intensities/turbojpeg/jsimddct.h +70 -0
  79. data/ext/image_intensities/turbojpeg/jstdhuff.c +143 -0
  80. data/ext/image_intensities/turbojpeg/jutils.c +133 -0
  81. data/ext/image_intensities/turbojpeg/jversion.h +52 -0
  82. data/ext/image_intensities/turbojpeg/libturbojpeg.a +0 -0
  83. data/ext/image_intensities/turbojpeg/rdbmp.c +689 -0
  84. data/ext/image_intensities/turbojpeg/rdppm.c +766 -0
  85. data/ext/image_intensities/turbojpeg/tjutil.h +47 -0
  86. data/ext/image_intensities/turbojpeg/transupp.c +1628 -0
  87. data/ext/image_intensities/turbojpeg/transupp.h +210 -0
  88. data/ext/image_intensities/turbojpeg/turbojpeg.c +2150 -0
  89. data/ext/image_intensities/turbojpeg/wrbmp.c +558 -0
  90. data/ext/image_intensities/turbojpeg/wrppm.c +365 -0
  91. data/image_intensities.gemspec +1 -1
  92. data/lib/image_intensities/version.rb +1 -1
  93. metadata +91 -3
@@ -0,0 +1,409 @@
1
+ /*
2
+ * jidctred.c
3
+ *
4
+ * This file was part of the Independent JPEG Group's software.
5
+ * Copyright (C) 1994-1998, Thomas G. Lane.
6
+ * libjpeg-turbo Modifications:
7
+ * Copyright (C) 2015, D. R. Commander.
8
+ * For conditions of distribution and use, see the accompanying README.ijg
9
+ * file.
10
+ *
11
+ * This file contains inverse-DCT routines that produce reduced-size output:
12
+ * either 4x4, 2x2, or 1x1 pixels from an 8x8 DCT block.
13
+ *
14
+ * The implementation is based on the Loeffler, Ligtenberg and Moschytz (LL&M)
15
+ * algorithm used in jidctint.c. We simply replace each 8-to-8 1-D IDCT step
16
+ * with an 8-to-4 step that produces the four averages of two adjacent outputs
17
+ * (or an 8-to-2 step producing two averages of four outputs, for 2x2 output).
18
+ * These steps were derived by computing the corresponding values at the end
19
+ * of the normal LL&M code, then simplifying as much as possible.
20
+ *
21
+ * 1x1 is trivial: just take the DC coefficient divided by 8.
22
+ *
23
+ * See jidctint.c for additional comments.
24
+ */
25
+
26
+ #define JPEG_INTERNALS
27
+ #include "jinclude.h"
28
+ #include "jpeglib.h"
29
+ #include "jdct.h" /* Private declarations for DCT subsystem */
30
+
31
+ #ifdef IDCT_SCALING_SUPPORTED
32
+
33
+
34
+ /*
35
+ * This module is specialized to the case DCTSIZE = 8.
36
+ */
37
+
38
+ #if DCTSIZE != 8
39
+ Sorry, this code only copes with 8x8 DCTs. /* deliberate syntax err */
40
+ #endif
41
+
42
+
43
+ /* Scaling is the same as in jidctint.c. */
44
+
45
+ #if BITS_IN_JSAMPLE == 8
46
+ #define CONST_BITS 13
47
+ #define PASS1_BITS 2
48
+ #else
49
+ #define CONST_BITS 13
50
+ #define PASS1_BITS 1 /* lose a little precision to avoid overflow */
51
+ #endif
52
+
53
+ /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus
54
+ * causing a lot of useless floating-point operations at run time.
55
+ * To get around this we use the following pre-calculated constants.
56
+ * If you change CONST_BITS you may want to add appropriate values.
57
+ * (With a reasonable C compiler, you can just rely on the FIX() macro...)
58
+ */
59
+
60
+ #if CONST_BITS == 13
61
+ #define FIX_0_211164243 ((JLONG)1730) /* FIX(0.211164243) */
62
+ #define FIX_0_509795579 ((JLONG)4176) /* FIX(0.509795579) */
63
+ #define FIX_0_601344887 ((JLONG)4926) /* FIX(0.601344887) */
64
+ #define FIX_0_720959822 ((JLONG)5906) /* FIX(0.720959822) */
65
+ #define FIX_0_765366865 ((JLONG)6270) /* FIX(0.765366865) */
66
+ #define FIX_0_850430095 ((JLONG)6967) /* FIX(0.850430095) */
67
+ #define FIX_0_899976223 ((JLONG)7373) /* FIX(0.899976223) */
68
+ #define FIX_1_061594337 ((JLONG)8697) /* FIX(1.061594337) */
69
+ #define FIX_1_272758580 ((JLONG)10426) /* FIX(1.272758580) */
70
+ #define FIX_1_451774981 ((JLONG)11893) /* FIX(1.451774981) */
71
+ #define FIX_1_847759065 ((JLONG)15137) /* FIX(1.847759065) */
72
+ #define FIX_2_172734803 ((JLONG)17799) /* FIX(2.172734803) */
73
+ #define FIX_2_562915447 ((JLONG)20995) /* FIX(2.562915447) */
74
+ #define FIX_3_624509785 ((JLONG)29692) /* FIX(3.624509785) */
75
+ #else
76
+ #define FIX_0_211164243 FIX(0.211164243)
77
+ #define FIX_0_509795579 FIX(0.509795579)
78
+ #define FIX_0_601344887 FIX(0.601344887)
79
+ #define FIX_0_720959822 FIX(0.720959822)
80
+ #define FIX_0_765366865 FIX(0.765366865)
81
+ #define FIX_0_850430095 FIX(0.850430095)
82
+ #define FIX_0_899976223 FIX(0.899976223)
83
+ #define FIX_1_061594337 FIX(1.061594337)
84
+ #define FIX_1_272758580 FIX(1.272758580)
85
+ #define FIX_1_451774981 FIX(1.451774981)
86
+ #define FIX_1_847759065 FIX(1.847759065)
87
+ #define FIX_2_172734803 FIX(2.172734803)
88
+ #define FIX_2_562915447 FIX(2.562915447)
89
+ #define FIX_3_624509785 FIX(3.624509785)
90
+ #endif
91
+
92
+
93
+ /* Multiply a JLONG variable by a JLONG constant to yield a JLONG result.
94
+ * For 8-bit samples with the recommended scaling, all the variable
95
+ * and constant values involved are no more than 16 bits wide, so a
96
+ * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
97
+ * For 12-bit samples, a full 32-bit multiplication will be needed.
98
+ */
99
+
100
+ #if BITS_IN_JSAMPLE == 8
101
+ #define MULTIPLY(var, const) MULTIPLY16C16(var, const)
102
+ #else
103
+ #define MULTIPLY(var, const) ((var) * (const))
104
+ #endif
105
+
106
+
107
+ /* Dequantize a coefficient by multiplying it by the multiplier-table
108
+ * entry; produce an int result. In this module, both inputs and result
109
+ * are 16 bits or less, so either int or short multiply will work.
110
+ */
111
+
112
+ #define DEQUANTIZE(coef, quantval) (((ISLOW_MULT_TYPE)(coef)) * (quantval))
113
+
114
+
115
+ /*
116
+ * Perform dequantization and inverse DCT on one block of coefficients,
117
+ * producing a reduced-size 4x4 output block.
118
+ */
119
+
120
+ GLOBAL(void)
121
+ jpeg_idct_4x4(j_decompress_ptr cinfo, jpeg_component_info *compptr,
122
+ JCOEFPTR coef_block, JSAMPARRAY output_buf,
123
+ JDIMENSION output_col)
124
+ {
125
+ JLONG tmp0, tmp2, tmp10, tmp12;
126
+ JLONG z1, z2, z3, z4;
127
+ JCOEFPTR inptr;
128
+ ISLOW_MULT_TYPE *quantptr;
129
+ int *wsptr;
130
+ JSAMPROW outptr;
131
+ JSAMPLE *range_limit = IDCT_range_limit(cinfo);
132
+ int ctr;
133
+ int workspace[DCTSIZE * 4]; /* buffers data between passes */
134
+ SHIFT_TEMPS
135
+
136
+ /* Pass 1: process columns from input, store into work array. */
137
+
138
+ inptr = coef_block;
139
+ quantptr = (ISLOW_MULT_TYPE *)compptr->dct_table;
140
+ wsptr = workspace;
141
+ for (ctr = DCTSIZE; ctr > 0; inptr++, quantptr++, wsptr++, ctr--) {
142
+ /* Don't bother to process column 4, because second pass won't use it */
143
+ if (ctr == DCTSIZE - 4)
144
+ continue;
145
+ if (inptr[DCTSIZE * 1] == 0 && inptr[DCTSIZE * 2] == 0 &&
146
+ inptr[DCTSIZE * 3] == 0 && inptr[DCTSIZE * 5] == 0 &&
147
+ inptr[DCTSIZE * 6] == 0 && inptr[DCTSIZE * 7] == 0) {
148
+ /* AC terms all zero; we need not examine term 4 for 4x4 output */
149
+ int dcval = LEFT_SHIFT(DEQUANTIZE(inptr[DCTSIZE * 0],
150
+ quantptr[DCTSIZE * 0]), PASS1_BITS);
151
+
152
+ wsptr[DCTSIZE * 0] = dcval;
153
+ wsptr[DCTSIZE * 1] = dcval;
154
+ wsptr[DCTSIZE * 2] = dcval;
155
+ wsptr[DCTSIZE * 3] = dcval;
156
+
157
+ continue;
158
+ }
159
+
160
+ /* Even part */
161
+
162
+ tmp0 = DEQUANTIZE(inptr[DCTSIZE * 0], quantptr[DCTSIZE * 0]);
163
+ tmp0 = LEFT_SHIFT(tmp0, CONST_BITS + 1);
164
+
165
+ z2 = DEQUANTIZE(inptr[DCTSIZE * 2], quantptr[DCTSIZE * 2]);
166
+ z3 = DEQUANTIZE(inptr[DCTSIZE * 6], quantptr[DCTSIZE * 6]);
167
+
168
+ tmp2 = MULTIPLY(z2, FIX_1_847759065) + MULTIPLY(z3, -FIX_0_765366865);
169
+
170
+ tmp10 = tmp0 + tmp2;
171
+ tmp12 = tmp0 - tmp2;
172
+
173
+ /* Odd part */
174
+
175
+ z1 = DEQUANTIZE(inptr[DCTSIZE * 7], quantptr[DCTSIZE * 7]);
176
+ z2 = DEQUANTIZE(inptr[DCTSIZE * 5], quantptr[DCTSIZE * 5]);
177
+ z3 = DEQUANTIZE(inptr[DCTSIZE * 3], quantptr[DCTSIZE * 3]);
178
+ z4 = DEQUANTIZE(inptr[DCTSIZE * 1], quantptr[DCTSIZE * 1]);
179
+
180
+ tmp0 = MULTIPLY(z1, -FIX_0_211164243) + /* sqrt(2) * ( c3-c1) */
181
+ MULTIPLY(z2, FIX_1_451774981) + /* sqrt(2) * ( c3+c7) */
182
+ MULTIPLY(z3, -FIX_2_172734803) + /* sqrt(2) * (-c1-c5) */
183
+ MULTIPLY(z4, FIX_1_061594337); /* sqrt(2) * ( c5+c7) */
184
+
185
+ tmp2 = MULTIPLY(z1, -FIX_0_509795579) + /* sqrt(2) * (c7-c5) */
186
+ MULTIPLY(z2, -FIX_0_601344887) + /* sqrt(2) * (c5-c1) */
187
+ MULTIPLY(z3, FIX_0_899976223) + /* sqrt(2) * (c3-c7) */
188
+ MULTIPLY(z4, FIX_2_562915447); /* sqrt(2) * (c1+c3) */
189
+
190
+ /* Final output stage */
191
+
192
+ wsptr[DCTSIZE * 0] =
193
+ (int)DESCALE(tmp10 + tmp2, CONST_BITS - PASS1_BITS + 1);
194
+ wsptr[DCTSIZE * 3] =
195
+ (int)DESCALE(tmp10 - tmp2, CONST_BITS - PASS1_BITS + 1);
196
+ wsptr[DCTSIZE * 1] =
197
+ (int)DESCALE(tmp12 + tmp0, CONST_BITS - PASS1_BITS + 1);
198
+ wsptr[DCTSIZE * 2] =
199
+ (int)DESCALE(tmp12 - tmp0, CONST_BITS - PASS1_BITS + 1);
200
+ }
201
+
202
+ /* Pass 2: process 4 rows from work array, store into output array. */
203
+
204
+ wsptr = workspace;
205
+ for (ctr = 0; ctr < 4; ctr++) {
206
+ outptr = output_buf[ctr] + output_col;
207
+ /* It's not clear whether a zero row test is worthwhile here ... */
208
+
209
+ #ifndef NO_ZERO_ROW_TEST
210
+ if (wsptr[1] == 0 && wsptr[2] == 0 && wsptr[3] == 0 &&
211
+ wsptr[5] == 0 && wsptr[6] == 0 && wsptr[7] == 0) {
212
+ /* AC terms all zero */
213
+ JSAMPLE dcval = range_limit[(int)DESCALE((JLONG)wsptr[0],
214
+ PASS1_BITS + 3) & RANGE_MASK];
215
+
216
+ outptr[0] = dcval;
217
+ outptr[1] = dcval;
218
+ outptr[2] = dcval;
219
+ outptr[3] = dcval;
220
+
221
+ wsptr += DCTSIZE; /* advance pointer to next row */
222
+ continue;
223
+ }
224
+ #endif
225
+
226
+ /* Even part */
227
+
228
+ tmp0 = LEFT_SHIFT((JLONG)wsptr[0], CONST_BITS + 1);
229
+
230
+ tmp2 = MULTIPLY((JLONG)wsptr[2], FIX_1_847759065) +
231
+ MULTIPLY((JLONG)wsptr[6], -FIX_0_765366865);
232
+
233
+ tmp10 = tmp0 + tmp2;
234
+ tmp12 = tmp0 - tmp2;
235
+
236
+ /* Odd part */
237
+
238
+ z1 = (JLONG)wsptr[7];
239
+ z2 = (JLONG)wsptr[5];
240
+ z3 = (JLONG)wsptr[3];
241
+ z4 = (JLONG)wsptr[1];
242
+
243
+ tmp0 = MULTIPLY(z1, -FIX_0_211164243) + /* sqrt(2) * ( c3-c1) */
244
+ MULTIPLY(z2, FIX_1_451774981) + /* sqrt(2) * ( c3+c7) */
245
+ MULTIPLY(z3, -FIX_2_172734803) + /* sqrt(2) * (-c1-c5) */
246
+ MULTIPLY(z4, FIX_1_061594337); /* sqrt(2) * ( c5+c7) */
247
+
248
+ tmp2 = MULTIPLY(z1, -FIX_0_509795579) + /* sqrt(2) * (c7-c5) */
249
+ MULTIPLY(z2, -FIX_0_601344887) + /* sqrt(2) * (c5-c1) */
250
+ MULTIPLY(z3, FIX_0_899976223) + /* sqrt(2) * (c3-c7) */
251
+ MULTIPLY(z4, FIX_2_562915447); /* sqrt(2) * (c1+c3) */
252
+
253
+ /* Final output stage */
254
+
255
+ outptr[0] = range_limit[(int)DESCALE(tmp10 + tmp2,
256
+ CONST_BITS + PASS1_BITS + 3 + 1) &
257
+ RANGE_MASK];
258
+ outptr[3] = range_limit[(int)DESCALE(tmp10 - tmp2,
259
+ CONST_BITS + PASS1_BITS + 3 + 1) &
260
+ RANGE_MASK];
261
+ outptr[1] = range_limit[(int)DESCALE(tmp12 + tmp0,
262
+ CONST_BITS + PASS1_BITS + 3 + 1) &
263
+ RANGE_MASK];
264
+ outptr[2] = range_limit[(int)DESCALE(tmp12 - tmp0,
265
+ CONST_BITS + PASS1_BITS + 3 + 1) &
266
+ RANGE_MASK];
267
+
268
+ wsptr += DCTSIZE; /* advance pointer to next row */
269
+ }
270
+ }
271
+
272
+
273
+ /*
274
+ * Perform dequantization and inverse DCT on one block of coefficients,
275
+ * producing a reduced-size 2x2 output block.
276
+ */
277
+
278
+ GLOBAL(void)
279
+ jpeg_idct_2x2(j_decompress_ptr cinfo, jpeg_component_info *compptr,
280
+ JCOEFPTR coef_block, JSAMPARRAY output_buf,
281
+ JDIMENSION output_col)
282
+ {
283
+ JLONG tmp0, tmp10, z1;
284
+ JCOEFPTR inptr;
285
+ ISLOW_MULT_TYPE *quantptr;
286
+ int *wsptr;
287
+ JSAMPROW outptr;
288
+ JSAMPLE *range_limit = IDCT_range_limit(cinfo);
289
+ int ctr;
290
+ int workspace[DCTSIZE * 2]; /* buffers data between passes */
291
+ SHIFT_TEMPS
292
+
293
+ /* Pass 1: process columns from input, store into work array. */
294
+
295
+ inptr = coef_block;
296
+ quantptr = (ISLOW_MULT_TYPE *)compptr->dct_table;
297
+ wsptr = workspace;
298
+ for (ctr = DCTSIZE; ctr > 0; inptr++, quantptr++, wsptr++, ctr--) {
299
+ /* Don't bother to process columns 2,4,6 */
300
+ if (ctr == DCTSIZE - 2 || ctr == DCTSIZE - 4 || ctr == DCTSIZE - 6)
301
+ continue;
302
+ if (inptr[DCTSIZE * 1] == 0 && inptr[DCTSIZE * 3] == 0 &&
303
+ inptr[DCTSIZE * 5] == 0 && inptr[DCTSIZE * 7] == 0) {
304
+ /* AC terms all zero; we need not examine terms 2,4,6 for 2x2 output */
305
+ int dcval = LEFT_SHIFT(DEQUANTIZE(inptr[DCTSIZE * 0],
306
+ quantptr[DCTSIZE * 0]), PASS1_BITS);
307
+
308
+ wsptr[DCTSIZE * 0] = dcval;
309
+ wsptr[DCTSIZE * 1] = dcval;
310
+
311
+ continue;
312
+ }
313
+
314
+ /* Even part */
315
+
316
+ z1 = DEQUANTIZE(inptr[DCTSIZE * 0], quantptr[DCTSIZE * 0]);
317
+ tmp10 = LEFT_SHIFT(z1, CONST_BITS + 2);
318
+
319
+ /* Odd part */
320
+
321
+ z1 = DEQUANTIZE(inptr[DCTSIZE * 7], quantptr[DCTSIZE * 7]);
322
+ tmp0 = MULTIPLY(z1, -FIX_0_720959822); /* sqrt(2) * ( c7-c5+c3-c1) */
323
+ z1 = DEQUANTIZE(inptr[DCTSIZE * 5], quantptr[DCTSIZE * 5]);
324
+ tmp0 += MULTIPLY(z1, FIX_0_850430095); /* sqrt(2) * (-c1+c3+c5+c7) */
325
+ z1 = DEQUANTIZE(inptr[DCTSIZE * 3], quantptr[DCTSIZE * 3]);
326
+ tmp0 += MULTIPLY(z1, -FIX_1_272758580); /* sqrt(2) * (-c1+c3-c5-c7) */
327
+ z1 = DEQUANTIZE(inptr[DCTSIZE * 1], quantptr[DCTSIZE * 1]);
328
+ tmp0 += MULTIPLY(z1, FIX_3_624509785); /* sqrt(2) * ( c1+c3+c5+c7) */
329
+
330
+ /* Final output stage */
331
+
332
+ wsptr[DCTSIZE * 0] =
333
+ (int)DESCALE(tmp10 + tmp0, CONST_BITS - PASS1_BITS + 2);
334
+ wsptr[DCTSIZE * 1] =
335
+ (int)DESCALE(tmp10 - tmp0, CONST_BITS - PASS1_BITS + 2);
336
+ }
337
+
338
+ /* Pass 2: process 2 rows from work array, store into output array. */
339
+
340
+ wsptr = workspace;
341
+ for (ctr = 0; ctr < 2; ctr++) {
342
+ outptr = output_buf[ctr] + output_col;
343
+ /* It's not clear whether a zero row test is worthwhile here ... */
344
+
345
+ #ifndef NO_ZERO_ROW_TEST
346
+ if (wsptr[1] == 0 && wsptr[3] == 0 && wsptr[5] == 0 && wsptr[7] == 0) {
347
+ /* AC terms all zero */
348
+ JSAMPLE dcval = range_limit[(int)DESCALE((JLONG)wsptr[0],
349
+ PASS1_BITS + 3) & RANGE_MASK];
350
+
351
+ outptr[0] = dcval;
352
+ outptr[1] = dcval;
353
+
354
+ wsptr += DCTSIZE; /* advance pointer to next row */
355
+ continue;
356
+ }
357
+ #endif
358
+
359
+ /* Even part */
360
+
361
+ tmp10 = LEFT_SHIFT((JLONG)wsptr[0], CONST_BITS + 2);
362
+
363
+ /* Odd part */
364
+
365
+ tmp0 = MULTIPLY((JLONG)wsptr[7], -FIX_0_720959822) + /* sqrt(2) * ( c7-c5+c3-c1) */
366
+ MULTIPLY((JLONG)wsptr[5], FIX_0_850430095) + /* sqrt(2) * (-c1+c3+c5+c7) */
367
+ MULTIPLY((JLONG)wsptr[3], -FIX_1_272758580) + /* sqrt(2) * (-c1+c3-c5-c7) */
368
+ MULTIPLY((JLONG)wsptr[1], FIX_3_624509785); /* sqrt(2) * ( c1+c3+c5+c7) */
369
+
370
+ /* Final output stage */
371
+
372
+ outptr[0] = range_limit[(int)DESCALE(tmp10 + tmp0,
373
+ CONST_BITS + PASS1_BITS + 3 + 2) &
374
+ RANGE_MASK];
375
+ outptr[1] = range_limit[(int)DESCALE(tmp10 - tmp0,
376
+ CONST_BITS + PASS1_BITS + 3 + 2) &
377
+ RANGE_MASK];
378
+
379
+ wsptr += DCTSIZE; /* advance pointer to next row */
380
+ }
381
+ }
382
+
383
+
384
+ /*
385
+ * Perform dequantization and inverse DCT on one block of coefficients,
386
+ * producing a reduced-size 1x1 output block.
387
+ */
388
+
389
+ GLOBAL(void)
390
+ jpeg_idct_1x1(j_decompress_ptr cinfo, jpeg_component_info *compptr,
391
+ JCOEFPTR coef_block, JSAMPARRAY output_buf,
392
+ JDIMENSION output_col)
393
+ {
394
+ int dcval;
395
+ ISLOW_MULT_TYPE *quantptr;
396
+ JSAMPLE *range_limit = IDCT_range_limit(cinfo);
397
+ SHIFT_TEMPS
398
+
399
+ /* We hardly need an inverse DCT routine for this: just take the
400
+ * average pixel value, which is one-eighth of the DC coefficient.
401
+ */
402
+ quantptr = (ISLOW_MULT_TYPE *)compptr->dct_table;
403
+ dcval = DEQUANTIZE(coef_block[0], quantptr[0]);
404
+ dcval = (int)DESCALE((JLONG)dcval, 3);
405
+
406
+ output_buf[0][output_col] = range_limit[dcval & RANGE_MASK];
407
+ }
408
+
409
+ #endif /* IDCT_SCALING_SUPPORTED */
@@ -0,0 +1,88 @@
1
+ /*
2
+ * jinclude.h
3
+ *
4
+ * This file was part of the Independent JPEG Group's software:
5
+ * Copyright (C) 1991-1994, Thomas G. Lane.
6
+ * It was modified by The libjpeg-turbo Project to include only code relevant
7
+ * to libjpeg-turbo.
8
+ * For conditions of distribution and use, see the accompanying README.ijg
9
+ * file.
10
+ *
11
+ * This file exists to provide a single place to fix any problems with
12
+ * including the wrong system include files. (Common problems are taken
13
+ * care of by the standard jconfig symbols, but on really weird systems
14
+ * you may have to edit this file.)
15
+ *
16
+ * NOTE: this file is NOT intended to be included by applications using the
17
+ * JPEG library. Most applications need only include jpeglib.h.
18
+ */
19
+
20
+
21
+ /* Include auto-config file to find out which system include files we need. */
22
+
23
+ #include "jconfig.h" /* auto configuration options */
24
+ #define JCONFIG_INCLUDED /* so that jpeglib.h doesn't do it again */
25
+
26
+ /*
27
+ * We need the NULL macro and size_t typedef.
28
+ * On an ANSI-conforming system it is sufficient to include <stddef.h>.
29
+ * Otherwise, we get them from <stdlib.h> or <stdio.h>; we may have to
30
+ * pull in <sys/types.h> as well.
31
+ * Note that the core JPEG library does not require <stdio.h>;
32
+ * only the default error handler and data source/destination modules do.
33
+ * But we must pull it in because of the references to FILE in jpeglib.h.
34
+ * You can remove those references if you want to compile without <stdio.h>.
35
+ */
36
+
37
+ #ifdef HAVE_STDDEF_H
38
+ #include <stddef.h>
39
+ #endif
40
+
41
+ #ifdef HAVE_STDLIB_H
42
+ #include <stdlib.h>
43
+ #endif
44
+
45
+ #ifdef NEED_SYS_TYPES_H
46
+ #include <sys/types.h>
47
+ #endif
48
+
49
+ #include <stdio.h>
50
+
51
+ /*
52
+ * We need memory copying and zeroing functions, plus strncpy().
53
+ * ANSI and System V implementations declare these in <string.h>.
54
+ * BSD doesn't have the mem() functions, but it does have bcopy()/bzero().
55
+ * Some systems may declare memset and memcpy in <memory.h>.
56
+ *
57
+ * NOTE: we assume the size parameters to these functions are of type size_t.
58
+ * Change the casts in these macros if not!
59
+ */
60
+
61
+ #ifdef NEED_BSD_STRINGS
62
+
63
+ #include <strings.h>
64
+ #define MEMZERO(target, size) \
65
+ bzero((void *)(target), (size_t)(size))
66
+ #define MEMCOPY(dest, src, size) \
67
+ bcopy((const void *)(src), (void *)(dest), (size_t)(size))
68
+
69
+ #else /* not BSD, assume ANSI/SysV string lib */
70
+
71
+ #include <string.h>
72
+ #define MEMZERO(target, size) \
73
+ memset((void *)(target), 0, (size_t)(size))
74
+ #define MEMCOPY(dest, src, size) \
75
+ memcpy((void *)(dest), (const void *)(src), (size_t)(size))
76
+
77
+ #endif
78
+
79
+ /*
80
+ * The modules that use fread() and fwrite() always invoke them through
81
+ * these macros. On some systems you may need to twiddle the argument casts.
82
+ * CAUTION: argument order is different from underlying functions!
83
+ */
84
+
85
+ #define JFREAD(file, buf, sizeofbuf) \
86
+ ((size_t)fread((void *)(buf), (size_t)1, (size_t)(sizeofbuf), (file)))
87
+ #define JFWRITE(file, buf, sizeofbuf) \
88
+ ((size_t)fwrite((const void *)(buf), (size_t)1, (size_t)(sizeofbuf), (file)))