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,227 @@
1
+ /*
2
+ * jfdctfst.c
3
+ *
4
+ * This file was part of the Independent JPEG Group's software:
5
+ * Copyright (C) 1994-1996, 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 a fast, not so accurate integer implementation of the
12
+ * forward DCT (Discrete Cosine Transform).
13
+ *
14
+ * A 2-D DCT can be done by 1-D DCT on each row followed by 1-D DCT
15
+ * on each column. Direct algorithms are also available, but they are
16
+ * much more complex and seem not to be any faster when reduced to code.
17
+ *
18
+ * This implementation is based on Arai, Agui, and Nakajima's algorithm for
19
+ * scaled DCT. Their original paper (Trans. IEICE E-71(11):1095) is in
20
+ * Japanese, but the algorithm is described in the Pennebaker & Mitchell
21
+ * JPEG textbook (see REFERENCES section in file README.ijg). The following
22
+ * code is based directly on figure 4-8 in P&M.
23
+ * While an 8-point DCT cannot be done in less than 11 multiplies, it is
24
+ * possible to arrange the computation so that many of the multiplies are
25
+ * simple scalings of the final outputs. These multiplies can then be
26
+ * folded into the multiplications or divisions by the JPEG quantization
27
+ * table entries. The AA&N method leaves only 5 multiplies and 29 adds
28
+ * to be done in the DCT itself.
29
+ * The primary disadvantage of this method is that with fixed-point math,
30
+ * accuracy is lost due to imprecise representation of the scaled
31
+ * quantization values. The smaller the quantization table entry, the less
32
+ * precise the scaled value, so this implementation does worse with high-
33
+ * quality-setting files than with low-quality ones.
34
+ */
35
+
36
+ #define JPEG_INTERNALS
37
+ #include "jinclude.h"
38
+ #include "jpeglib.h"
39
+ #include "jdct.h" /* Private declarations for DCT subsystem */
40
+
41
+ #ifdef DCT_IFAST_SUPPORTED
42
+
43
+
44
+ /*
45
+ * This module is specialized to the case DCTSIZE = 8.
46
+ */
47
+
48
+ #if DCTSIZE != 8
49
+ Sorry, this code only copes with 8x8 DCTs. /* deliberate syntax err */
50
+ #endif
51
+
52
+
53
+ /* Scaling decisions are generally the same as in the LL&M algorithm;
54
+ * see jfdctint.c for more details. However, we choose to descale
55
+ * (right shift) multiplication products as soon as they are formed,
56
+ * rather than carrying additional fractional bits into subsequent additions.
57
+ * This compromises accuracy slightly, but it lets us save a few shifts.
58
+ * More importantly, 16-bit arithmetic is then adequate (for 8-bit samples)
59
+ * everywhere except in the multiplications proper; this saves a good deal
60
+ * of work on 16-bit-int machines.
61
+ *
62
+ * Again to save a few shifts, the intermediate results between pass 1 and
63
+ * pass 2 are not upscaled, but are represented only to integral precision.
64
+ *
65
+ * A final compromise is to represent the multiplicative constants to only
66
+ * 8 fractional bits, rather than 13. This saves some shifting work on some
67
+ * machines, and may also reduce the cost of multiplication (since there
68
+ * are fewer one-bits in the constants).
69
+ */
70
+
71
+ #define CONST_BITS 8
72
+
73
+
74
+ /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus
75
+ * causing a lot of useless floating-point operations at run time.
76
+ * To get around this we use the following pre-calculated constants.
77
+ * If you change CONST_BITS you may want to add appropriate values.
78
+ * (With a reasonable C compiler, you can just rely on the FIX() macro...)
79
+ */
80
+
81
+ #if CONST_BITS == 8
82
+ #define FIX_0_382683433 ((JLONG)98) /* FIX(0.382683433) */
83
+ #define FIX_0_541196100 ((JLONG)139) /* FIX(0.541196100) */
84
+ #define FIX_0_707106781 ((JLONG)181) /* FIX(0.707106781) */
85
+ #define FIX_1_306562965 ((JLONG)334) /* FIX(1.306562965) */
86
+ #else
87
+ #define FIX_0_382683433 FIX(0.382683433)
88
+ #define FIX_0_541196100 FIX(0.541196100)
89
+ #define FIX_0_707106781 FIX(0.707106781)
90
+ #define FIX_1_306562965 FIX(1.306562965)
91
+ #endif
92
+
93
+
94
+ /* We can gain a little more speed, with a further compromise in accuracy,
95
+ * by omitting the addition in a descaling shift. This yields an incorrectly
96
+ * rounded result half the time...
97
+ */
98
+
99
+ #ifndef USE_ACCURATE_ROUNDING
100
+ #undef DESCALE
101
+ #define DESCALE(x, n) RIGHT_SHIFT(x, n)
102
+ #endif
103
+
104
+
105
+ /* Multiply a DCTELEM variable by an JLONG constant, and immediately
106
+ * descale to yield a DCTELEM result.
107
+ */
108
+
109
+ #define MULTIPLY(var, const) ((DCTELEM)DESCALE((var) * (const), CONST_BITS))
110
+
111
+
112
+ /*
113
+ * Perform the forward DCT on one block of samples.
114
+ */
115
+
116
+ GLOBAL(void)
117
+ jpeg_fdct_ifast(DCTELEM *data)
118
+ {
119
+ DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
120
+ DCTELEM tmp10, tmp11, tmp12, tmp13;
121
+ DCTELEM z1, z2, z3, z4, z5, z11, z13;
122
+ DCTELEM *dataptr;
123
+ int ctr;
124
+ SHIFT_TEMPS
125
+
126
+ /* Pass 1: process rows. */
127
+
128
+ dataptr = data;
129
+ for (ctr = DCTSIZE - 1; ctr >= 0; ctr--) {
130
+ tmp0 = dataptr[0] + dataptr[7];
131
+ tmp7 = dataptr[0] - dataptr[7];
132
+ tmp1 = dataptr[1] + dataptr[6];
133
+ tmp6 = dataptr[1] - dataptr[6];
134
+ tmp2 = dataptr[2] + dataptr[5];
135
+ tmp5 = dataptr[2] - dataptr[5];
136
+ tmp3 = dataptr[3] + dataptr[4];
137
+ tmp4 = dataptr[3] - dataptr[4];
138
+
139
+ /* Even part */
140
+
141
+ tmp10 = tmp0 + tmp3; /* phase 2 */
142
+ tmp13 = tmp0 - tmp3;
143
+ tmp11 = tmp1 + tmp2;
144
+ tmp12 = tmp1 - tmp2;
145
+
146
+ dataptr[0] = tmp10 + tmp11; /* phase 3 */
147
+ dataptr[4] = tmp10 - tmp11;
148
+
149
+ z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
150
+ dataptr[2] = tmp13 + z1; /* phase 5 */
151
+ dataptr[6] = tmp13 - z1;
152
+
153
+ /* Odd part */
154
+
155
+ tmp10 = tmp4 + tmp5; /* phase 2 */
156
+ tmp11 = tmp5 + tmp6;
157
+ tmp12 = tmp6 + tmp7;
158
+
159
+ /* The rotator is modified from fig 4-8 to avoid extra negations. */
160
+ z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
161
+ z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
162
+ z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
163
+ z3 = MULTIPLY(tmp11, FIX_0_707106781); /* c4 */
164
+
165
+ z11 = tmp7 + z3; /* phase 5 */
166
+ z13 = tmp7 - z3;
167
+
168
+ dataptr[5] = z13 + z2; /* phase 6 */
169
+ dataptr[3] = z13 - z2;
170
+ dataptr[1] = z11 + z4;
171
+ dataptr[7] = z11 - z4;
172
+
173
+ dataptr += DCTSIZE; /* advance pointer to next row */
174
+ }
175
+
176
+ /* Pass 2: process columns. */
177
+
178
+ dataptr = data;
179
+ for (ctr = DCTSIZE - 1; ctr >= 0; ctr--) {
180
+ tmp0 = dataptr[DCTSIZE * 0] + dataptr[DCTSIZE * 7];
181
+ tmp7 = dataptr[DCTSIZE * 0] - dataptr[DCTSIZE * 7];
182
+ tmp1 = dataptr[DCTSIZE * 1] + dataptr[DCTSIZE * 6];
183
+ tmp6 = dataptr[DCTSIZE * 1] - dataptr[DCTSIZE * 6];
184
+ tmp2 = dataptr[DCTSIZE * 2] + dataptr[DCTSIZE * 5];
185
+ tmp5 = dataptr[DCTSIZE * 2] - dataptr[DCTSIZE * 5];
186
+ tmp3 = dataptr[DCTSIZE * 3] + dataptr[DCTSIZE * 4];
187
+ tmp4 = dataptr[DCTSIZE * 3] - dataptr[DCTSIZE * 4];
188
+
189
+ /* Even part */
190
+
191
+ tmp10 = tmp0 + tmp3; /* phase 2 */
192
+ tmp13 = tmp0 - tmp3;
193
+ tmp11 = tmp1 + tmp2;
194
+ tmp12 = tmp1 - tmp2;
195
+
196
+ dataptr[DCTSIZE * 0] = tmp10 + tmp11; /* phase 3 */
197
+ dataptr[DCTSIZE * 4] = tmp10 - tmp11;
198
+
199
+ z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
200
+ dataptr[DCTSIZE * 2] = tmp13 + z1; /* phase 5 */
201
+ dataptr[DCTSIZE * 6] = tmp13 - z1;
202
+
203
+ /* Odd part */
204
+
205
+ tmp10 = tmp4 + tmp5; /* phase 2 */
206
+ tmp11 = tmp5 + tmp6;
207
+ tmp12 = tmp6 + tmp7;
208
+
209
+ /* The rotator is modified from fig 4-8 to avoid extra negations. */
210
+ z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
211
+ z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
212
+ z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
213
+ z3 = MULTIPLY(tmp11, FIX_0_707106781); /* c4 */
214
+
215
+ z11 = tmp7 + z3; /* phase 5 */
216
+ z13 = tmp7 - z3;
217
+
218
+ dataptr[DCTSIZE * 5] = z13 + z2; /* phase 6 */
219
+ dataptr[DCTSIZE * 3] = z13 - z2;
220
+ dataptr[DCTSIZE * 1] = z11 + z4;
221
+ dataptr[DCTSIZE * 7] = z11 - z4;
222
+
223
+ dataptr++; /* advance pointer to next column */
224
+ }
225
+ }
226
+
227
+ #endif /* DCT_IFAST_SUPPORTED */
@@ -0,0 +1,288 @@
1
+ /*
2
+ * jfdctint.c
3
+ *
4
+ * This file was part of the Independent JPEG Group's software.
5
+ * Copyright (C) 1991-1996, 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 a slow-but-accurate integer implementation of the
12
+ * forward DCT (Discrete Cosine Transform).
13
+ *
14
+ * A 2-D DCT can be done by 1-D DCT on each row followed by 1-D DCT
15
+ * on each column. Direct algorithms are also available, but they are
16
+ * much more complex and seem not to be any faster when reduced to code.
17
+ *
18
+ * This implementation is based on an algorithm described in
19
+ * C. Loeffler, A. Ligtenberg and G. Moschytz, "Practical Fast 1-D DCT
20
+ * Algorithms with 11 Multiplications", Proc. Int'l. Conf. on Acoustics,
21
+ * Speech, and Signal Processing 1989 (ICASSP '89), pp. 988-991.
22
+ * The primary algorithm described there uses 11 multiplies and 29 adds.
23
+ * We use their alternate method with 12 multiplies and 32 adds.
24
+ * The advantage of this method is that no data path contains more than one
25
+ * multiplication; this allows a very simple and accurate implementation in
26
+ * scaled fixed-point arithmetic, with a minimal number of shifts.
27
+ */
28
+
29
+ #define JPEG_INTERNALS
30
+ #include "jinclude.h"
31
+ #include "jpeglib.h"
32
+ #include "jdct.h" /* Private declarations for DCT subsystem */
33
+
34
+ #ifdef DCT_ISLOW_SUPPORTED
35
+
36
+
37
+ /*
38
+ * This module is specialized to the case DCTSIZE = 8.
39
+ */
40
+
41
+ #if DCTSIZE != 8
42
+ Sorry, this code only copes with 8x8 DCTs. /* deliberate syntax err */
43
+ #endif
44
+
45
+
46
+ /*
47
+ * The poop on this scaling stuff is as follows:
48
+ *
49
+ * Each 1-D DCT step produces outputs which are a factor of sqrt(N)
50
+ * larger than the true DCT outputs. The final outputs are therefore
51
+ * a factor of N larger than desired; since N=8 this can be cured by
52
+ * a simple right shift at the end of the algorithm. The advantage of
53
+ * this arrangement is that we save two multiplications per 1-D DCT,
54
+ * because the y0 and y4 outputs need not be divided by sqrt(N).
55
+ * In the IJG code, this factor of 8 is removed by the quantization step
56
+ * (in jcdctmgr.c), NOT in this module.
57
+ *
58
+ * We have to do addition and subtraction of the integer inputs, which
59
+ * is no problem, and multiplication by fractional constants, which is
60
+ * a problem to do in integer arithmetic. We multiply all the constants
61
+ * by CONST_SCALE and convert them to integer constants (thus retaining
62
+ * CONST_BITS bits of precision in the constants). After doing a
63
+ * multiplication we have to divide the product by CONST_SCALE, with proper
64
+ * rounding, to produce the correct output. This division can be done
65
+ * cheaply as a right shift of CONST_BITS bits. We postpone shifting
66
+ * as long as possible so that partial sums can be added together with
67
+ * full fractional precision.
68
+ *
69
+ * The outputs of the first pass are scaled up by PASS1_BITS bits so that
70
+ * they are represented to better-than-integral precision. These outputs
71
+ * require BITS_IN_JSAMPLE + PASS1_BITS + 3 bits; this fits in a 16-bit word
72
+ * with the recommended scaling. (For 12-bit sample data, the intermediate
73
+ * array is JLONG anyway.)
74
+ *
75
+ * To avoid overflow of the 32-bit intermediate results in pass 2, we must
76
+ * have BITS_IN_JSAMPLE + CONST_BITS + PASS1_BITS <= 26. Error analysis
77
+ * shows that the values given below are the most effective.
78
+ */
79
+
80
+ #if BITS_IN_JSAMPLE == 8
81
+ #define CONST_BITS 13
82
+ #define PASS1_BITS 2
83
+ #else
84
+ #define CONST_BITS 13
85
+ #define PASS1_BITS 1 /* lose a little precision to avoid overflow */
86
+ #endif
87
+
88
+ /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus
89
+ * causing a lot of useless floating-point operations at run time.
90
+ * To get around this we use the following pre-calculated constants.
91
+ * If you change CONST_BITS you may want to add appropriate values.
92
+ * (With a reasonable C compiler, you can just rely on the FIX() macro...)
93
+ */
94
+
95
+ #if CONST_BITS == 13
96
+ #define FIX_0_298631336 ((JLONG)2446) /* FIX(0.298631336) */
97
+ #define FIX_0_390180644 ((JLONG)3196) /* FIX(0.390180644) */
98
+ #define FIX_0_541196100 ((JLONG)4433) /* FIX(0.541196100) */
99
+ #define FIX_0_765366865 ((JLONG)6270) /* FIX(0.765366865) */
100
+ #define FIX_0_899976223 ((JLONG)7373) /* FIX(0.899976223) */
101
+ #define FIX_1_175875602 ((JLONG)9633) /* FIX(1.175875602) */
102
+ #define FIX_1_501321110 ((JLONG)12299) /* FIX(1.501321110) */
103
+ #define FIX_1_847759065 ((JLONG)15137) /* FIX(1.847759065) */
104
+ #define FIX_1_961570560 ((JLONG)16069) /* FIX(1.961570560) */
105
+ #define FIX_2_053119869 ((JLONG)16819) /* FIX(2.053119869) */
106
+ #define FIX_2_562915447 ((JLONG)20995) /* FIX(2.562915447) */
107
+ #define FIX_3_072711026 ((JLONG)25172) /* FIX(3.072711026) */
108
+ #else
109
+ #define FIX_0_298631336 FIX(0.298631336)
110
+ #define FIX_0_390180644 FIX(0.390180644)
111
+ #define FIX_0_541196100 FIX(0.541196100)
112
+ #define FIX_0_765366865 FIX(0.765366865)
113
+ #define FIX_0_899976223 FIX(0.899976223)
114
+ #define FIX_1_175875602 FIX(1.175875602)
115
+ #define FIX_1_501321110 FIX(1.501321110)
116
+ #define FIX_1_847759065 FIX(1.847759065)
117
+ #define FIX_1_961570560 FIX(1.961570560)
118
+ #define FIX_2_053119869 FIX(2.053119869)
119
+ #define FIX_2_562915447 FIX(2.562915447)
120
+ #define FIX_3_072711026 FIX(3.072711026)
121
+ #endif
122
+
123
+
124
+ /* Multiply an JLONG variable by an JLONG constant to yield an JLONG result.
125
+ * For 8-bit samples with the recommended scaling, all the variable
126
+ * and constant values involved are no more than 16 bits wide, so a
127
+ * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
128
+ * For 12-bit samples, a full 32-bit multiplication will be needed.
129
+ */
130
+
131
+ #if BITS_IN_JSAMPLE == 8
132
+ #define MULTIPLY(var, const) MULTIPLY16C16(var, const)
133
+ #else
134
+ #define MULTIPLY(var, const) ((var) * (const))
135
+ #endif
136
+
137
+
138
+ /*
139
+ * Perform the forward DCT on one block of samples.
140
+ */
141
+
142
+ GLOBAL(void)
143
+ jpeg_fdct_islow(DCTELEM *data)
144
+ {
145
+ JLONG tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
146
+ JLONG tmp10, tmp11, tmp12, tmp13;
147
+ JLONG z1, z2, z3, z4, z5;
148
+ DCTELEM *dataptr;
149
+ int ctr;
150
+ SHIFT_TEMPS
151
+
152
+ /* Pass 1: process rows. */
153
+ /* Note results are scaled up by sqrt(8) compared to a true DCT; */
154
+ /* furthermore, we scale the results by 2**PASS1_BITS. */
155
+
156
+ dataptr = data;
157
+ for (ctr = DCTSIZE - 1; ctr >= 0; ctr--) {
158
+ tmp0 = dataptr[0] + dataptr[7];
159
+ tmp7 = dataptr[0] - dataptr[7];
160
+ tmp1 = dataptr[1] + dataptr[6];
161
+ tmp6 = dataptr[1] - dataptr[6];
162
+ tmp2 = dataptr[2] + dataptr[5];
163
+ tmp5 = dataptr[2] - dataptr[5];
164
+ tmp3 = dataptr[3] + dataptr[4];
165
+ tmp4 = dataptr[3] - dataptr[4];
166
+
167
+ /* Even part per LL&M figure 1 --- note that published figure is faulty;
168
+ * rotator "sqrt(2)*c1" should be "sqrt(2)*c6".
169
+ */
170
+
171
+ tmp10 = tmp0 + tmp3;
172
+ tmp13 = tmp0 - tmp3;
173
+ tmp11 = tmp1 + tmp2;
174
+ tmp12 = tmp1 - tmp2;
175
+
176
+ dataptr[0] = (DCTELEM)LEFT_SHIFT(tmp10 + tmp11, PASS1_BITS);
177
+ dataptr[4] = (DCTELEM)LEFT_SHIFT(tmp10 - tmp11, PASS1_BITS);
178
+
179
+ z1 = MULTIPLY(tmp12 + tmp13, FIX_0_541196100);
180
+ dataptr[2] = (DCTELEM)DESCALE(z1 + MULTIPLY(tmp13, FIX_0_765366865),
181
+ CONST_BITS - PASS1_BITS);
182
+ dataptr[6] = (DCTELEM)DESCALE(z1 + MULTIPLY(tmp12, -FIX_1_847759065),
183
+ CONST_BITS - PASS1_BITS);
184
+
185
+ /* Odd part per figure 8 --- note paper omits factor of sqrt(2).
186
+ * cK represents cos(K*pi/16).
187
+ * i0..i3 in the paper are tmp4..tmp7 here.
188
+ */
189
+
190
+ z1 = tmp4 + tmp7;
191
+ z2 = tmp5 + tmp6;
192
+ z3 = tmp4 + tmp6;
193
+ z4 = tmp5 + tmp7;
194
+ z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 */
195
+
196
+ tmp4 = MULTIPLY(tmp4, FIX_0_298631336); /* sqrt(2) * (-c1+c3+c5-c7) */
197
+ tmp5 = MULTIPLY(tmp5, FIX_2_053119869); /* sqrt(2) * ( c1+c3-c5+c7) */
198
+ tmp6 = MULTIPLY(tmp6, FIX_3_072711026); /* sqrt(2) * ( c1+c3+c5-c7) */
199
+ tmp7 = MULTIPLY(tmp7, FIX_1_501321110); /* sqrt(2) * ( c1+c3-c5-c7) */
200
+ z1 = MULTIPLY(z1, -FIX_0_899976223); /* sqrt(2) * ( c7-c3) */
201
+ z2 = MULTIPLY(z2, -FIX_2_562915447); /* sqrt(2) * (-c1-c3) */
202
+ z3 = MULTIPLY(z3, -FIX_1_961570560); /* sqrt(2) * (-c3-c5) */
203
+ z4 = MULTIPLY(z4, -FIX_0_390180644); /* sqrt(2) * ( c5-c3) */
204
+
205
+ z3 += z5;
206
+ z4 += z5;
207
+
208
+ dataptr[7] = (DCTELEM)DESCALE(tmp4 + z1 + z3, CONST_BITS - PASS1_BITS);
209
+ dataptr[5] = (DCTELEM)DESCALE(tmp5 + z2 + z4, CONST_BITS - PASS1_BITS);
210
+ dataptr[3] = (DCTELEM)DESCALE(tmp6 + z2 + z3, CONST_BITS - PASS1_BITS);
211
+ dataptr[1] = (DCTELEM)DESCALE(tmp7 + z1 + z4, CONST_BITS - PASS1_BITS);
212
+
213
+ dataptr += DCTSIZE; /* advance pointer to next row */
214
+ }
215
+
216
+ /* Pass 2: process columns.
217
+ * We remove the PASS1_BITS scaling, but leave the results scaled up
218
+ * by an overall factor of 8.
219
+ */
220
+
221
+ dataptr = data;
222
+ for (ctr = DCTSIZE - 1; ctr >= 0; ctr--) {
223
+ tmp0 = dataptr[DCTSIZE * 0] + dataptr[DCTSIZE * 7];
224
+ tmp7 = dataptr[DCTSIZE * 0] - dataptr[DCTSIZE * 7];
225
+ tmp1 = dataptr[DCTSIZE * 1] + dataptr[DCTSIZE * 6];
226
+ tmp6 = dataptr[DCTSIZE * 1] - dataptr[DCTSIZE * 6];
227
+ tmp2 = dataptr[DCTSIZE * 2] + dataptr[DCTSIZE * 5];
228
+ tmp5 = dataptr[DCTSIZE * 2] - dataptr[DCTSIZE * 5];
229
+ tmp3 = dataptr[DCTSIZE * 3] + dataptr[DCTSIZE * 4];
230
+ tmp4 = dataptr[DCTSIZE * 3] - dataptr[DCTSIZE * 4];
231
+
232
+ /* Even part per LL&M figure 1 --- note that published figure is faulty;
233
+ * rotator "sqrt(2)*c1" should be "sqrt(2)*c6".
234
+ */
235
+
236
+ tmp10 = tmp0 + tmp3;
237
+ tmp13 = tmp0 - tmp3;
238
+ tmp11 = tmp1 + tmp2;
239
+ tmp12 = tmp1 - tmp2;
240
+
241
+ dataptr[DCTSIZE * 0] = (DCTELEM)DESCALE(tmp10 + tmp11, PASS1_BITS);
242
+ dataptr[DCTSIZE * 4] = (DCTELEM)DESCALE(tmp10 - tmp11, PASS1_BITS);
243
+
244
+ z1 = MULTIPLY(tmp12 + tmp13, FIX_0_541196100);
245
+ dataptr[DCTSIZE * 2] =
246
+ (DCTELEM)DESCALE(z1 + MULTIPLY(tmp13, FIX_0_765366865),
247
+ CONST_BITS + PASS1_BITS);
248
+ dataptr[DCTSIZE * 6] =
249
+ (DCTELEM)DESCALE(z1 + MULTIPLY(tmp12, -FIX_1_847759065),
250
+ CONST_BITS + PASS1_BITS);
251
+
252
+ /* Odd part per figure 8 --- note paper omits factor of sqrt(2).
253
+ * cK represents cos(K*pi/16).
254
+ * i0..i3 in the paper are tmp4..tmp7 here.
255
+ */
256
+
257
+ z1 = tmp4 + tmp7;
258
+ z2 = tmp5 + tmp6;
259
+ z3 = tmp4 + tmp6;
260
+ z4 = tmp5 + tmp7;
261
+ z5 = MULTIPLY(z3 + z4, FIX_1_175875602); /* sqrt(2) * c3 */
262
+
263
+ tmp4 = MULTIPLY(tmp4, FIX_0_298631336); /* sqrt(2) * (-c1+c3+c5-c7) */
264
+ tmp5 = MULTIPLY(tmp5, FIX_2_053119869); /* sqrt(2) * ( c1+c3-c5+c7) */
265
+ tmp6 = MULTIPLY(tmp6, FIX_3_072711026); /* sqrt(2) * ( c1+c3+c5-c7) */
266
+ tmp7 = MULTIPLY(tmp7, FIX_1_501321110); /* sqrt(2) * ( c1+c3-c5-c7) */
267
+ z1 = MULTIPLY(z1, -FIX_0_899976223); /* sqrt(2) * ( c7-c3) */
268
+ z2 = MULTIPLY(z2, -FIX_2_562915447); /* sqrt(2) * (-c1-c3) */
269
+ z3 = MULTIPLY(z3, -FIX_1_961570560); /* sqrt(2) * (-c3-c5) */
270
+ z4 = MULTIPLY(z4, -FIX_0_390180644); /* sqrt(2) * ( c5-c3) */
271
+
272
+ z3 += z5;
273
+ z4 += z5;
274
+
275
+ dataptr[DCTSIZE * 7] = (DCTELEM)DESCALE(tmp4 + z1 + z3,
276
+ CONST_BITS + PASS1_BITS);
277
+ dataptr[DCTSIZE * 5] = (DCTELEM)DESCALE(tmp5 + z2 + z4,
278
+ CONST_BITS + PASS1_BITS);
279
+ dataptr[DCTSIZE * 3] = (DCTELEM)DESCALE(tmp6 + z2 + z3,
280
+ CONST_BITS + PASS1_BITS);
281
+ dataptr[DCTSIZE * 1] = (DCTELEM)DESCALE(tmp7 + z1 + z4,
282
+ CONST_BITS + PASS1_BITS);
283
+
284
+ dataptr++; /* advance pointer to next column */
285
+ }
286
+ }
287
+
288
+ #endif /* DCT_ISLOW_SUPPORTED */