1
|
1 /*
|
|
2 * idct.c
|
12932
|
3 * Copyright (C) 2000-2003 Michel Lespinasse <walken@zoy.org>
|
9852
|
4 * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
|
1
|
5 *
|
|
6 * This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
|
9852
|
7 * See http://libmpeg2.sourceforge.net/ for updates.
|
1
|
8 *
|
|
9 * mpeg2dec is free software; you can redistribute it and/or modify
|
|
10 * it under the terms of the GNU General Public License as published by
|
|
11 * the Free Software Foundation; either version 2 of the License, or
|
|
12 * (at your option) any later version.
|
|
13 *
|
|
14 * mpeg2dec is distributed in the hope that it will be useful,
|
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 * GNU General Public License for more details.
|
|
18 *
|
|
19 * You should have received a copy of the GNU General Public License
|
|
20 * along with this program; if not, write to the Free Software
|
|
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
22 */
|
|
23
|
|
24 #include "config.h"
|
|
25
|
9852
|
26 #include <stdlib.h>
|
1
|
27 #include <inttypes.h>
|
|
28
|
9852
|
29 #include "mpeg2.h"
|
12932
|
30 #include "attributes.h"
|
1
|
31 #include "mpeg2_internal.h"
|
|
32
|
12932
|
33 #define W1 2841 /* 2048 * sqrt (2) * cos (1 * pi / 16) */
|
|
34 #define W2 2676 /* 2048 * sqrt (2) * cos (2 * pi / 16) */
|
|
35 #define W3 2408 /* 2048 * sqrt (2) * cos (3 * pi / 16) */
|
|
36 #define W5 1609 /* 2048 * sqrt (2) * cos (5 * pi / 16) */
|
|
37 #define W6 1108 /* 2048 * sqrt (2) * cos (6 * pi / 16) */
|
|
38 #define W7 565 /* 2048 * sqrt (2) * cos (7 * pi / 16) */
|
1
|
39
|
36
|
40 /* idct main entry point */
|
9852
|
41 void (* mpeg2_idct_copy) (int16_t * block, uint8_t * dest, int stride);
|
|
42 void (* mpeg2_idct_add) (int last, int16_t * block,
|
|
43 uint8_t * dest, int stride);
|
1
|
44
|
12932
|
45 /*
|
|
46 * In legal streams, the IDCT output should be between -384 and +384.
|
|
47 * In corrupted streams, it is possible to force the IDCT output to go
|
|
48 * to +-3826 - this is the worst case for a column IDCT where the
|
|
49 * column inputs are 16-bit values.
|
|
50 */
|
|
51 uint8_t mpeg2_clip[3840 * 2 + 256];
|
|
52 #define CLIP(i) ((mpeg2_clip + 3840)[i])
|
1
|
53
|
9852
|
54 #if 0
|
|
55 #define BUTTERFLY(t0,t1,W0,W1,d0,d1) \
|
|
56 do { \
|
12932
|
57 t0 = W0 * d0 + W1 * d1; \
|
|
58 t1 = W0 * d1 - W1 * d0; \
|
9852
|
59 } while (0)
|
|
60 #else
|
|
61 #define BUTTERFLY(t0,t1,W0,W1,d0,d1) \
|
|
62 do { \
|
|
63 int tmp = W0 * (d0 + d1); \
|
|
64 t0 = tmp + (W1 - W0) * d1; \
|
|
65 t1 = tmp - (W1 + W0) * d0; \
|
|
66 } while (0)
|
|
67 #endif
|
1
|
68
|
10392
|
69 static inline void idct_row (int16_t * const block)
|
1
|
70 {
|
9852
|
71 int d0, d1, d2, d3;
|
|
72 int a0, a1, a2, a3, b0, b1, b2, b3;
|
|
73 int t0, t1, t2, t3;
|
1
|
74
|
|
75 /* shortcut */
|
9852
|
76 if (likely (!(block[1] | ((int32_t *)block)[1] | ((int32_t *)block)[2] |
|
|
77 ((int32_t *)block)[3]))) {
|
12932
|
78 uint32_t tmp = (uint16_t) (block[0] >> 1);
|
9852
|
79 tmp |= tmp << 16;
|
|
80 ((int32_t *)block)[0] = tmp;
|
|
81 ((int32_t *)block)[1] = tmp;
|
|
82 ((int32_t *)block)[2] = tmp;
|
|
83 ((int32_t *)block)[3] = tmp;
|
1
|
84 return;
|
|
85 }
|
|
86
|
12932
|
87 d0 = (block[0] << 11) + 2048;
|
9852
|
88 d1 = block[1];
|
|
89 d2 = block[2] << 11;
|
|
90 d3 = block[3];
|
|
91 t0 = d0 + d2;
|
|
92 t1 = d0 - d2;
|
|
93 BUTTERFLY (t2, t3, W6, W2, d3, d1);
|
|
94 a0 = t0 + t2;
|
|
95 a1 = t1 + t3;
|
|
96 a2 = t1 - t3;
|
|
97 a3 = t0 - t2;
|
1
|
98
|
9852
|
99 d0 = block[4];
|
|
100 d1 = block[5];
|
|
101 d2 = block[6];
|
|
102 d3 = block[7];
|
|
103 BUTTERFLY (t0, t1, W7, W1, d3, d0);
|
|
104 BUTTERFLY (t2, t3, W3, W5, d1, d2);
|
|
105 b0 = t0 + t2;
|
|
106 b3 = t1 + t3;
|
|
107 t0 -= t2;
|
|
108 t1 -= t3;
|
12932
|
109 b1 = ((t0 + t1) >> 8) * 181;
|
|
110 b2 = ((t0 - t1) >> 8) * 181;
|
9852
|
111
|
12932
|
112 block[0] = (a0 + b0) >> 12;
|
|
113 block[1] = (a1 + b1) >> 12;
|
|
114 block[2] = (a2 + b2) >> 12;
|
|
115 block[3] = (a3 + b3) >> 12;
|
|
116 block[4] = (a3 - b3) >> 12;
|
|
117 block[5] = (a2 - b2) >> 12;
|
|
118 block[6] = (a1 - b1) >> 12;
|
|
119 block[7] = (a0 - b0) >> 12;
|
1
|
120 }
|
|
121
|
10392
|
122 static inline void idct_col (int16_t * const block)
|
1
|
123 {
|
9852
|
124 int d0, d1, d2, d3;
|
|
125 int a0, a1, a2, a3, b0, b1, b2, b3;
|
|
126 int t0, t1, t2, t3;
|
1
|
127
|
9852
|
128 d0 = (block[8*0] << 11) + 65536;
|
|
129 d1 = block[8*1];
|
|
130 d2 = block[8*2] << 11;
|
|
131 d3 = block[8*3];
|
|
132 t0 = d0 + d2;
|
|
133 t1 = d0 - d2;
|
|
134 BUTTERFLY (t2, t3, W6, W2, d3, d1);
|
|
135 a0 = t0 + t2;
|
|
136 a1 = t1 + t3;
|
|
137 a2 = t1 - t3;
|
|
138 a3 = t0 - t2;
|
1
|
139
|
9852
|
140 d0 = block[8*4];
|
|
141 d1 = block[8*5];
|
|
142 d2 = block[8*6];
|
|
143 d3 = block[8*7];
|
|
144 BUTTERFLY (t0, t1, W7, W1, d3, d0);
|
|
145 BUTTERFLY (t2, t3, W3, W5, d1, d2);
|
|
146 b0 = t0 + t2;
|
|
147 b3 = t1 + t3;
|
12932
|
148 t0 -= t2;
|
|
149 t1 -= t3;
|
|
150 b1 = ((t0 + t1) >> 8) * 181;
|
|
151 b2 = ((t0 - t1) >> 8) * 181;
|
9852
|
152
|
|
153 block[8*0] = (a0 + b0) >> 17;
|
|
154 block[8*1] = (a1 + b1) >> 17;
|
|
155 block[8*2] = (a2 + b2) >> 17;
|
|
156 block[8*3] = (a3 + b3) >> 17;
|
|
157 block[8*4] = (a3 - b3) >> 17;
|
|
158 block[8*5] = (a2 - b2) >> 17;
|
|
159 block[8*6] = (a1 - b1) >> 17;
|
|
160 block[8*7] = (a0 - b0) >> 17;
|
1
|
161 }
|
|
162
|
9852
|
163 static void mpeg2_idct_copy_c (int16_t * block, uint8_t * dest,
|
|
164 const int stride)
|
1
|
165 {
|
|
166 int i;
|
|
167
|
|
168 for (i = 0; i < 8; i++)
|
|
169 idct_row (block + 8 * i);
|
|
170 for (i = 0; i < 8; i++)
|
|
171 idct_col (block + i);
|
|
172 do {
|
|
173 dest[0] = CLIP (block[0]);
|
|
174 dest[1] = CLIP (block[1]);
|
|
175 dest[2] = CLIP (block[2]);
|
|
176 dest[3] = CLIP (block[3]);
|
|
177 dest[4] = CLIP (block[4]);
|
|
178 dest[5] = CLIP (block[5]);
|
|
179 dest[6] = CLIP (block[6]);
|
|
180 dest[7] = CLIP (block[7]);
|
|
181
|
12932
|
182 ((int32_t *)block)[0] = 0; ((int32_t *)block)[1] = 0;
|
|
183 ((int32_t *)block)[2] = 0; ((int32_t *)block)[3] = 0;
|
9852
|
184
|
1
|
185 dest += stride;
|
|
186 block += 8;
|
|
187 } while (--i);
|
|
188 }
|
|
189
|
9852
|
190 static void mpeg2_idct_add_c (const int last, int16_t * block,
|
|
191 uint8_t * dest, const int stride)
|
1
|
192 {
|
|
193 int i;
|
|
194
|
12932
|
195 if (last != 129 || (block[0] & (7 << 4)) == (4 << 4)) {
|
9852
|
196 for (i = 0; i < 8; i++)
|
|
197 idct_row (block + 8 * i);
|
|
198 for (i = 0; i < 8; i++)
|
|
199 idct_col (block + i);
|
|
200 do {
|
|
201 dest[0] = CLIP (block[0] + dest[0]);
|
|
202 dest[1] = CLIP (block[1] + dest[1]);
|
|
203 dest[2] = CLIP (block[2] + dest[2]);
|
|
204 dest[3] = CLIP (block[3] + dest[3]);
|
|
205 dest[4] = CLIP (block[4] + dest[4]);
|
|
206 dest[5] = CLIP (block[5] + dest[5]);
|
|
207 dest[6] = CLIP (block[6] + dest[6]);
|
|
208 dest[7] = CLIP (block[7] + dest[7]);
|
|
209
|
12932
|
210 ((int32_t *)block)[0] = 0; ((int32_t *)block)[1] = 0;
|
|
211 ((int32_t *)block)[2] = 0; ((int32_t *)block)[3] = 0;
|
1
|
212
|
9852
|
213 dest += stride;
|
|
214 block += 8;
|
|
215 } while (--i);
|
|
216 } else {
|
|
217 int DC;
|
|
218
|
12932
|
219 DC = (block[0] + 64) >> 7;
|
9852
|
220 block[0] = block[63] = 0;
|
|
221 i = 8;
|
|
222 do {
|
|
223 dest[0] = CLIP (DC + dest[0]);
|
|
224 dest[1] = CLIP (DC + dest[1]);
|
|
225 dest[2] = CLIP (DC + dest[2]);
|
|
226 dest[3] = CLIP (DC + dest[3]);
|
|
227 dest[4] = CLIP (DC + dest[4]);
|
|
228 dest[5] = CLIP (DC + dest[5]);
|
|
229 dest[6] = CLIP (DC + dest[6]);
|
|
230 dest[7] = CLIP (DC + dest[7]);
|
|
231 dest += stride;
|
|
232 } while (--i);
|
|
233 }
|
|
234 }
|
1
|
235
|
9852
|
236 void mpeg2_idct_init (uint32_t accel)
|
|
237 {
|
|
238 #ifdef ARCH_X86
|
|
239 if (accel & MPEG2_ACCEL_X86_MMXEXT) {
|
|
240 mpeg2_idct_copy = mpeg2_idct_copy_mmxext;
|
|
241 mpeg2_idct_add = mpeg2_idct_add_mmxext;
|
|
242 mpeg2_idct_mmx_init ();
|
|
243 } else if (accel & MPEG2_ACCEL_X86_MMX) {
|
|
244 mpeg2_idct_copy = mpeg2_idct_copy_mmx;
|
|
245 mpeg2_idct_add = mpeg2_idct_add_mmx;
|
|
246 mpeg2_idct_mmx_init ();
|
|
247 } else
|
|
248 #endif
|
|
249 #ifdef ARCH_PPC
|
|
250 if (accel & MPEG2_ACCEL_PPC_ALTIVEC) {
|
|
251 mpeg2_idct_copy = mpeg2_idct_copy_altivec;
|
|
252 mpeg2_idct_add = mpeg2_idct_add_altivec;
|
|
253 mpeg2_idct_altivec_init ();
|
|
254 } else
|
|
255 #endif
|
|
256 #ifdef ARCH_ALPHA
|
10488
|
257 #ifdef CAN_COMPILE_ALPHA_MVI
|
9852
|
258 if (accel & MPEG2_ACCEL_ALPHA_MVI) {
|
|
259 mpeg2_idct_copy = mpeg2_idct_copy_mvi;
|
|
260 mpeg2_idct_add = mpeg2_idct_add_mvi;
|
12932
|
261 mpeg2_idct_alpha_init ();
|
10488
|
262 } else
|
|
263 #endif
|
|
264 if (accel & MPEG2_ACCEL_ALPHA) {
|
12932
|
265 int i;
|
|
266
|
9852
|
267 mpeg2_idct_copy = mpeg2_idct_copy_alpha;
|
|
268 mpeg2_idct_add = mpeg2_idct_add_alpha;
|
12932
|
269 mpeg2_idct_alpha_init ();
|
|
270 for (i = -3840; i < 3840 + 256; i++)
|
|
271 CLIP(i) = (i < 0) ? 0 : ((i > 255) ? 255 : i);
|
9852
|
272 } else
|
|
273 #endif
|
|
274 {
|
|
275 extern uint8_t mpeg2_scan_norm[64];
|
|
276 extern uint8_t mpeg2_scan_alt[64];
|
|
277 int i, j;
|
1
|
278
|
9852
|
279 mpeg2_idct_copy = mpeg2_idct_copy_c;
|
|
280 mpeg2_idct_add = mpeg2_idct_add_c;
|
12932
|
281 for (i = -3840; i < 3840 + 256; i++)
|
|
282 CLIP(i) = (i < 0) ? 0 : ((i > 255) ? 255 : i);
|
9852
|
283 for (i = 0; i < 64; i++) {
|
|
284 j = mpeg2_scan_norm[i];
|
|
285 mpeg2_scan_norm[i] = ((j & 0x36) >> 1) | ((j & 0x09) << 2);
|
|
286 j = mpeg2_scan_alt[i];
|
|
287 mpeg2_scan_alt[i] = ((j & 0x36) >> 1) | ((j & 0x09) << 2);
|
|
288 }
|
|
289 }
|
1
|
290 }
|