Mercurial > mplayer.hg
annotate liba52/imdct.c @ 5460:acf7acfa7acc
Fix I420 handling, though still don't know why divx4 codec queries for I420 not YUY2!
author | atmos4 |
---|---|
date | Mon, 01 Apr 2002 18:16:27 +0000 |
parents | d3aedd7db02c |
children | 772d6d27fd66 |
rev | line source |
---|---|
3394 | 1 /* |
2 * imdct.c | |
3 * Copyright (C) 2000-2001 Michel Lespinasse <walken@zoy.org> | |
4 * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca> | |
5 * | |
6 * This file is part of a52dec, a free ATSC A-52 stream decoder. | |
7 * See http://liba52.sourceforge.net/ for updates. | |
8 * | |
9 * a52dec 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 * a52dec 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 | |
3579 | 22 * |
23 * SSE optimizations from Michael Niedermayer (michaelni@gmx.at) | |
3884 | 24 * 3DNOW optimizations from Nick Kurshev <nickols_k@mail.ru> |
25 * michael did port them from libac3 (untested, perhaps totally broken) | |
3394 | 26 */ |
27 | |
28 #include "config.h" | |
29 | |
30 #include <math.h> | |
31 #include <stdio.h> | |
32 #ifndef M_PI | |
33 #define M_PI 3.1415926535897932384626433832795029 | |
34 #endif | |
35 #include <inttypes.h> | |
36 | |
37 #include "a52.h" | |
38 #include "a52_internal.h" | |
39 #include "mm_accel.h" | |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
40 #include "mangle.h" |
3394 | 41 |
3884 | 42 #ifdef RUNTIME_CPUDETECT |
43 #undef HAVE_3DNOWEX | |
44 #endif | |
45 | |
46 #define USE_AC3_C | |
47 | |
3394 | 48 void (* imdct_256) (sample_t data[], sample_t delay[], sample_t bias); |
49 void (* imdct_512) (sample_t data[], sample_t delay[], sample_t bias); | |
50 | |
51 typedef struct complex_s { | |
52 sample_t real; | |
53 sample_t imag; | |
54 } complex_t; | |
55 | |
3884 | 56 static void fft_128p(complex_t *a); |
57 | |
58 static const int pm128[128] __attribute__((aligned(16))) = | |
59 { | |
60 0, 16, 32, 48, 64, 80, 96, 112, 8, 40, 72, 104, 24, 56, 88, 120, | |
61 4, 20, 36, 52, 68, 84, 100, 116, 12, 28, 44, 60, 76, 92, 108, 124, | |
62 2, 18, 34, 50, 66, 82, 98, 114, 10, 42, 74, 106, 26, 58, 90, 122, | |
63 6, 22, 38, 54, 70, 86, 102, 118, 14, 46, 78, 110, 30, 62, 94, 126, | |
64 1, 17, 33, 49, 65, 81, 97, 113, 9, 41, 73, 105, 25, 57, 89, 121, | |
65 5, 21, 37, 53, 69, 85, 101, 117, 13, 29, 45, 61, 77, 93, 109, 125, | |
66 3, 19, 35, 51, 67, 83, 99, 115, 11, 43, 75, 107, 27, 59, 91, 123, | |
67 7, 23, 39, 55, 71, 87, 103, 119, 15, 31, 47, 63, 79, 95, 111, 127 | |
68 }; | |
3394 | 69 |
70 /* 128 point bit-reverse LUT */ | |
71 static uint8_t bit_reverse_512[] = { | |
72 0x00, 0x40, 0x20, 0x60, 0x10, 0x50, 0x30, 0x70, | |
73 0x08, 0x48, 0x28, 0x68, 0x18, 0x58, 0x38, 0x78, | |
74 0x04, 0x44, 0x24, 0x64, 0x14, 0x54, 0x34, 0x74, | |
75 0x0c, 0x4c, 0x2c, 0x6c, 0x1c, 0x5c, 0x3c, 0x7c, | |
76 0x02, 0x42, 0x22, 0x62, 0x12, 0x52, 0x32, 0x72, | |
77 0x0a, 0x4a, 0x2a, 0x6a, 0x1a, 0x5a, 0x3a, 0x7a, | |
78 0x06, 0x46, 0x26, 0x66, 0x16, 0x56, 0x36, 0x76, | |
79 0x0e, 0x4e, 0x2e, 0x6e, 0x1e, 0x5e, 0x3e, 0x7e, | |
80 0x01, 0x41, 0x21, 0x61, 0x11, 0x51, 0x31, 0x71, | |
81 0x09, 0x49, 0x29, 0x69, 0x19, 0x59, 0x39, 0x79, | |
82 0x05, 0x45, 0x25, 0x65, 0x15, 0x55, 0x35, 0x75, | |
83 0x0d, 0x4d, 0x2d, 0x6d, 0x1d, 0x5d, 0x3d, 0x7d, | |
84 0x03, 0x43, 0x23, 0x63, 0x13, 0x53, 0x33, 0x73, | |
85 0x0b, 0x4b, 0x2b, 0x6b, 0x1b, 0x5b, 0x3b, 0x7b, | |
86 0x07, 0x47, 0x27, 0x67, 0x17, 0x57, 0x37, 0x77, | |
87 0x0f, 0x4f, 0x2f, 0x6f, 0x1f, 0x5f, 0x3f, 0x7f}; | |
88 | |
89 static uint8_t bit_reverse_256[] = { | |
90 0x00, 0x20, 0x10, 0x30, 0x08, 0x28, 0x18, 0x38, | |
91 0x04, 0x24, 0x14, 0x34, 0x0c, 0x2c, 0x1c, 0x3c, | |
92 0x02, 0x22, 0x12, 0x32, 0x0a, 0x2a, 0x1a, 0x3a, | |
93 0x06, 0x26, 0x16, 0x36, 0x0e, 0x2e, 0x1e, 0x3e, | |
94 0x01, 0x21, 0x11, 0x31, 0x09, 0x29, 0x19, 0x39, | |
95 0x05, 0x25, 0x15, 0x35, 0x0d, 0x2d, 0x1d, 0x3d, | |
96 0x03, 0x23, 0x13, 0x33, 0x0b, 0x2b, 0x1b, 0x3b, | |
97 0x07, 0x27, 0x17, 0x37, 0x0f, 0x2f, 0x1f, 0x3f}; | |
98 | |
3579 | 99 #ifdef ARCH_X86 |
3508 | 100 // NOTE: SSE needs 16byte alignment or it will segfault |
3581 | 101 // |
3508 | 102 static complex_t __attribute__((aligned(16))) buf[128]; |
3581 | 103 static float __attribute__((aligned(16))) sseSinCos1c[256]; |
104 static float __attribute__((aligned(16))) sseSinCos1d[256]; | |
3512 | 105 static float __attribute__((aligned(16))) ps111_1[4]={1,1,1,-1}; |
3534 | 106 //static float __attribute__((aligned(16))) sseW0[4]; |
107 static float __attribute__((aligned(16))) sseW1[8]; | |
108 static float __attribute__((aligned(16))) sseW2[16]; | |
109 static float __attribute__((aligned(16))) sseW3[32]; | |
110 static float __attribute__((aligned(16))) sseW4[64]; | |
111 static float __attribute__((aligned(16))) sseW5[128]; | |
112 static float __attribute__((aligned(16))) sseW6[256]; | |
113 static float __attribute__((aligned(16))) *sseW[7]= | |
114 {NULL /*sseW0*/,sseW1,sseW2,sseW3,sseW4,sseW5,sseW6}; | |
3553 | 115 static float __attribute__((aligned(16))) sseWindow[512]; |
3508 | 116 #else |
3394 | 117 static complex_t buf[128]; |
3508 | 118 #endif |
3394 | 119 |
120 /* Twiddle factor LUT */ | |
121 static complex_t w_1[1]; | |
122 static complex_t w_2[2]; | |
123 static complex_t w_4[4]; | |
124 static complex_t w_8[8]; | |
125 static complex_t w_16[16]; | |
126 static complex_t w_32[32]; | |
127 static complex_t w_64[64]; | |
128 static complex_t * w[7] = {w_1, w_2, w_4, w_8, w_16, w_32, w_64}; | |
129 | |
130 /* Twiddle factors for IMDCT */ | |
131 static sample_t xcos1[128]; | |
132 static sample_t xsin1[128]; | |
133 static sample_t xcos2[64]; | |
134 static sample_t xsin2[64]; | |
135 | |
136 /* Windowing function for Modified DCT - Thank you acroread */ | |
137 sample_t imdct_window[] = { | |
138 0.00014, 0.00024, 0.00037, 0.00051, 0.00067, 0.00086, 0.00107, 0.00130, | |
139 0.00157, 0.00187, 0.00220, 0.00256, 0.00297, 0.00341, 0.00390, 0.00443, | |
140 0.00501, 0.00564, 0.00632, 0.00706, 0.00785, 0.00871, 0.00962, 0.01061, | |
141 0.01166, 0.01279, 0.01399, 0.01526, 0.01662, 0.01806, 0.01959, 0.02121, | |
142 0.02292, 0.02472, 0.02662, 0.02863, 0.03073, 0.03294, 0.03527, 0.03770, | |
143 0.04025, 0.04292, 0.04571, 0.04862, 0.05165, 0.05481, 0.05810, 0.06153, | |
144 0.06508, 0.06878, 0.07261, 0.07658, 0.08069, 0.08495, 0.08935, 0.09389, | |
145 0.09859, 0.10343, 0.10842, 0.11356, 0.11885, 0.12429, 0.12988, 0.13563, | |
146 0.14152, 0.14757, 0.15376, 0.16011, 0.16661, 0.17325, 0.18005, 0.18699, | |
147 0.19407, 0.20130, 0.20867, 0.21618, 0.22382, 0.23161, 0.23952, 0.24757, | |
148 0.25574, 0.26404, 0.27246, 0.28100, 0.28965, 0.29841, 0.30729, 0.31626, | |
149 0.32533, 0.33450, 0.34376, 0.35311, 0.36253, 0.37204, 0.38161, 0.39126, | |
150 0.40096, 0.41072, 0.42054, 0.43040, 0.44030, 0.45023, 0.46020, 0.47019, | |
151 0.48020, 0.49022, 0.50025, 0.51028, 0.52031, 0.53033, 0.54033, 0.55031, | |
152 0.56026, 0.57019, 0.58007, 0.58991, 0.59970, 0.60944, 0.61912, 0.62873, | |
153 0.63827, 0.64774, 0.65713, 0.66643, 0.67564, 0.68476, 0.69377, 0.70269, | |
154 0.71150, 0.72019, 0.72877, 0.73723, 0.74557, 0.75378, 0.76186, 0.76981, | |
155 0.77762, 0.78530, 0.79283, 0.80022, 0.80747, 0.81457, 0.82151, 0.82831, | |
156 0.83496, 0.84145, 0.84779, 0.85398, 0.86001, 0.86588, 0.87160, 0.87716, | |
157 0.88257, 0.88782, 0.89291, 0.89785, 0.90264, 0.90728, 0.91176, 0.91610, | |
158 0.92028, 0.92432, 0.92822, 0.93197, 0.93558, 0.93906, 0.94240, 0.94560, | |
159 0.94867, 0.95162, 0.95444, 0.95713, 0.95971, 0.96217, 0.96451, 0.96674, | |
160 0.96887, 0.97089, 0.97281, 0.97463, 0.97635, 0.97799, 0.97953, 0.98099, | |
161 0.98236, 0.98366, 0.98488, 0.98602, 0.98710, 0.98811, 0.98905, 0.98994, | |
162 0.99076, 0.99153, 0.99225, 0.99291, 0.99353, 0.99411, 0.99464, 0.99513, | |
163 0.99558, 0.99600, 0.99639, 0.99674, 0.99706, 0.99736, 0.99763, 0.99788, | |
164 0.99811, 0.99831, 0.99850, 0.99867, 0.99882, 0.99895, 0.99908, 0.99919, | |
165 0.99929, 0.99938, 0.99946, 0.99953, 0.99959, 0.99965, 0.99969, 0.99974, | |
166 0.99978, 0.99981, 0.99984, 0.99986, 0.99988, 0.99990, 0.99992, 0.99993, | |
167 0.99994, 0.99995, 0.99996, 0.99997, 0.99998, 0.99998, 0.99998, 0.99999, | |
168 0.99999, 0.99999, 0.99999, 1.00000, 1.00000, 1.00000, 1.00000, 1.00000, | |
169 1.00000, 1.00000, 1.00000, 1.00000, 1.00000, 1.00000, 1.00000, 1.00000 }; | |
170 | |
171 | |
172 static inline void swap_cmplx(complex_t *a, complex_t *b) | |
173 { | |
174 complex_t tmp; | |
175 | |
176 tmp = *a; | |
177 *a = *b; | |
178 *b = tmp; | |
179 } | |
180 | |
181 | |
182 | |
183 static inline complex_t cmplx_mult(complex_t a, complex_t b) | |
184 { | |
185 complex_t ret; | |
186 | |
187 ret.real = a.real * b.real - a.imag * b.imag; | |
188 ret.imag = a.real * b.imag + a.imag * b.real; | |
189 | |
190 return ret; | |
191 } | |
192 | |
193 void | |
194 imdct_do_512(sample_t data[],sample_t delay[], sample_t bias) | |
195 { | |
196 int i,k; | |
197 int p,q; | |
198 int m; | |
199 int two_m; | |
200 int two_m_plus_one; | |
201 | |
202 sample_t tmp_a_i; | |
203 sample_t tmp_a_r; | |
204 sample_t tmp_b_i; | |
205 sample_t tmp_b_r; | |
206 | |
207 sample_t *data_ptr; | |
208 sample_t *delay_ptr; | |
209 sample_t *window_ptr; | |
210 | |
211 /* 512 IMDCT with source and dest data in 'data' */ | |
212 | |
3884 | 213 /* Pre IFFT complex multiply plus IFFT cmplx conjugate & reordering*/ |
3394 | 214 for( i=0; i < 128; i++) { |
215 /* z[i] = (X[256-2*i-1] + j * X[2*i]) * (xcos1[i] + j * xsin1[i]) ; */ | |
3884 | 216 #ifdef USE_AC3_C |
217 int j= pm128[i]; | |
218 #else | |
219 int j= bit_reverse_512[i]; | |
220 #endif | |
221 buf[i].real = (data[256-2*j-1] * xcos1[j]) - (data[2*j] * xsin1[j]); | |
222 buf[i].imag = -1.0 * ((data[2*j] * xcos1[j]) + (data[256-2*j-1] * xsin1[j])); | |
3394 | 223 } |
224 | |
225 /* FFT Merge */ | |
3549 | 226 /* unoptimized variant |
227 for (m=1; m < 7; m++) { | |
228 if(m) | |
229 two_m = (1 << m); | |
230 else | |
231 two_m = 1; | |
232 | |
233 two_m_plus_one = (1 << (m+1)); | |
234 | |
235 for(i = 0; i < 128; i += two_m_plus_one) { | |
236 for(k = 0; k < two_m; k++) { | |
237 p = k + i; | |
238 q = p + two_m; | |
3508 | 239 tmp_a_r = buf[p].real; |
240 tmp_a_i = buf[p].imag; | |
3549 | 241 tmp_b_r = buf[q].real * w[m][k].real - buf[q].imag * w[m][k].imag; |
242 tmp_b_i = buf[q].imag * w[m][k].real + buf[q].real * w[m][k].imag; | |
3508 | 243 buf[p].real = tmp_a_r + tmp_b_r; |
244 buf[p].imag = tmp_a_i + tmp_b_i; | |
245 buf[q].real = tmp_a_r - tmp_b_r; | |
246 buf[q].imag = tmp_a_i - tmp_b_i; | |
3549 | 247 } |
248 } | |
249 } | |
250 */ | |
3884 | 251 #ifdef USE_AC3_C |
252 fft_128p (&buf[0]); | |
253 #else | |
254 | |
3623 | 255 /* 1. iteration */ |
3579 | 256 for(i = 0; i < 128; i += 2) { |
257 tmp_a_r = buf[i].real; | |
258 tmp_a_i = buf[i].imag; | |
259 tmp_b_r = buf[i+1].real; | |
260 tmp_b_i = buf[i+1].imag; | |
261 buf[i].real = tmp_a_r + tmp_b_r; | |
262 buf[i].imag = tmp_a_i + tmp_b_i; | |
263 buf[i+1].real = tmp_a_r - tmp_b_r; | |
264 buf[i+1].imag = tmp_a_i - tmp_b_i; | |
265 } | |
266 | |
3623 | 267 /* 2. iteration */ |
3579 | 268 // Note w[1]={{1,0}, {0,-1}} |
269 for(i = 0; i < 128; i += 4) { | |
270 tmp_a_r = buf[i].real; | |
271 tmp_a_i = buf[i].imag; | |
272 tmp_b_r = buf[i+2].real; | |
273 tmp_b_i = buf[i+2].imag; | |
274 buf[i].real = tmp_a_r + tmp_b_r; | |
275 buf[i].imag = tmp_a_i + tmp_b_i; | |
276 buf[i+2].real = tmp_a_r - tmp_b_r; | |
277 buf[i+2].imag = tmp_a_i - tmp_b_i; | |
278 tmp_a_r = buf[i+1].real; | |
279 tmp_a_i = buf[i+1].imag; | |
280 tmp_b_r = buf[i+3].imag; | |
281 tmp_b_i = buf[i+3].real; | |
282 buf[i+1].real = tmp_a_r + tmp_b_r; | |
283 buf[i+1].imag = tmp_a_i - tmp_b_i; | |
284 buf[i+3].real = tmp_a_r - tmp_b_r; | |
285 buf[i+3].imag = tmp_a_i + tmp_b_i; | |
286 } | |
287 | |
3623 | 288 /* 3. iteration */ |
3579 | 289 for(i = 0; i < 128; i += 8) { |
290 tmp_a_r = buf[i].real; | |
291 tmp_a_i = buf[i].imag; | |
292 tmp_b_r = buf[i+4].real; | |
293 tmp_b_i = buf[i+4].imag; | |
294 buf[i].real = tmp_a_r + tmp_b_r; | |
295 buf[i].imag = tmp_a_i + tmp_b_i; | |
296 buf[i+4].real = tmp_a_r - tmp_b_r; | |
297 buf[i+4].imag = tmp_a_i - tmp_b_i; | |
298 tmp_a_r = buf[1+i].real; | |
299 tmp_a_i = buf[1+i].imag; | |
300 tmp_b_r = (buf[i+5].real + buf[i+5].imag) * w[2][1].real; | |
301 tmp_b_i = (buf[i+5].imag - buf[i+5].real) * w[2][1].real; | |
302 buf[1+i].real = tmp_a_r + tmp_b_r; | |
303 buf[1+i].imag = tmp_a_i + tmp_b_i; | |
304 buf[i+5].real = tmp_a_r - tmp_b_r; | |
305 buf[i+5].imag = tmp_a_i - tmp_b_i; | |
306 tmp_a_r = buf[i+2].real; | |
307 tmp_a_i = buf[i+2].imag; | |
308 tmp_b_r = buf[i+6].imag; | |
309 tmp_b_i = - buf[i+6].real; | |
310 buf[i+2].real = tmp_a_r + tmp_b_r; | |
311 buf[i+2].imag = tmp_a_i + tmp_b_i; | |
312 buf[i+6].real = tmp_a_r - tmp_b_r; | |
313 buf[i+6].imag = tmp_a_i - tmp_b_i; | |
314 tmp_a_r = buf[i+3].real; | |
315 tmp_a_i = buf[i+3].imag; | |
316 tmp_b_r = (buf[i+7].real - buf[i+7].imag) * w[2][3].imag; | |
317 tmp_b_i = (buf[i+7].imag + buf[i+7].real) * w[2][3].imag; | |
318 buf[i+3].real = tmp_a_r + tmp_b_r; | |
319 buf[i+3].imag = tmp_a_i + tmp_b_i; | |
320 buf[i+7].real = tmp_a_r - tmp_b_r; | |
321 buf[i+7].imag = tmp_a_i - tmp_b_i; | |
322 } | |
323 | |
3623 | 324 /* 4-7. iterations */ |
3579 | 325 for (m=3; m < 7; m++) { |
326 two_m = (1 << m); | |
327 | |
328 two_m_plus_one = two_m<<1; | |
329 | |
330 for(i = 0; i < 128; i += two_m_plus_one) { | |
331 for(k = 0; k < two_m; k++) { | |
332 int p = k + i; | |
333 int q = p + two_m; | |
334 tmp_a_r = buf[p].real; | |
335 tmp_a_i = buf[p].imag; | |
336 tmp_b_r = buf[q].real * w[m][k].real - buf[q].imag * w[m][k].imag; | |
337 tmp_b_i = buf[q].imag * w[m][k].real + buf[q].real * w[m][k].imag; | |
338 buf[p].real = tmp_a_r + tmp_b_r; | |
339 buf[p].imag = tmp_a_i + tmp_b_i; | |
340 buf[q].real = tmp_a_r - tmp_b_r; | |
341 buf[q].imag = tmp_a_i - tmp_b_i; | |
342 } | |
343 } | |
344 } | |
3884 | 345 #endif |
3579 | 346 /* Post IFFT complex multiply plus IFFT complex conjugate*/ |
347 for( i=0; i < 128; i++) { | |
348 /* y[n] = z[n] * (xcos1[n] + j * xsin1[n]) ; */ | |
349 tmp_a_r = buf[i].real; | |
350 tmp_a_i = -1.0 * buf[i].imag; | |
351 buf[i].real =(tmp_a_r * xcos1[i]) - (tmp_a_i * xsin1[i]); | |
352 buf[i].imag =(tmp_a_r * xsin1[i]) + (tmp_a_i * xcos1[i]); | |
353 } | |
354 | |
355 data_ptr = data; | |
356 delay_ptr = delay; | |
357 window_ptr = imdct_window; | |
358 | |
359 /* Window and convert to real valued signal */ | |
360 for(i=0; i< 64; i++) { | |
361 *data_ptr++ = -buf[64+i].imag * *window_ptr++ + *delay_ptr++ + bias; | |
362 *data_ptr++ = buf[64-i-1].real * *window_ptr++ + *delay_ptr++ + bias; | |
363 } | |
364 | |
365 for(i=0; i< 64; i++) { | |
366 *data_ptr++ = -buf[i].real * *window_ptr++ + *delay_ptr++ + bias; | |
367 *data_ptr++ = buf[128-i-1].imag * *window_ptr++ + *delay_ptr++ + bias; | |
368 } | |
3884 | 369 |
3579 | 370 /* The trailing edge of the window goes into the delay line */ |
371 delay_ptr = delay; | |
372 | |
373 for(i=0; i< 64; i++) { | |
374 *delay_ptr++ = -buf[64+i].real * *--window_ptr; | |
375 *delay_ptr++ = buf[64-i-1].imag * *--window_ptr; | |
376 } | |
377 | |
378 for(i=0; i<64; i++) { | |
379 *delay_ptr++ = buf[i].imag * *--window_ptr; | |
380 *delay_ptr++ = -buf[128-i-1].real * *--window_ptr; | |
381 } | |
382 } | |
383 | |
4497 | 384 // Stuff below this line is borrowed from libac3 |
385 #include "srfftp.h" | |
3579 | 386 #ifdef ARCH_X86 |
4497 | 387 #ifndef HAVE_3DNOW |
388 #define HAVE_3DNOW 1 | |
389 #endif | |
3884 | 390 #include "srfftp_3dnow.h" |
391 | |
392 const i_cmplx_t x_plus_minus_3dnow __attribute__ ((aligned (8))) = { 0x00000000UL, 0x80000000UL }; | |
393 const i_cmplx_t x_minus_plus_3dnow __attribute__ ((aligned (8))) = { 0x80000000UL, 0x00000000UL }; | |
394 const complex_t HSQRT2_3DNOW __attribute__ ((aligned (8))) = { 0.707106781188, 0.707106781188 }; | |
395 | |
4497 | 396 #undef HAVE_3DNOWEX |
397 #include "imdct_3dnow.h" | |
398 #define HAVE_3DNOWEX | |
399 #include "imdct_3dnow.h" | |
3884 | 400 |
3579 | 401 void |
402 imdct_do_512_sse(sample_t data[],sample_t delay[], sample_t bias) | |
403 { | |
404 int i,k; | |
405 int p,q; | |
406 int m; | |
407 int two_m; | |
408 int two_m_plus_one; | |
409 | |
410 sample_t tmp_a_i; | |
411 sample_t tmp_a_r; | |
412 sample_t tmp_b_i; | |
413 sample_t tmp_b_r; | |
414 | |
415 sample_t *data_ptr; | |
416 sample_t *delay_ptr; | |
417 sample_t *window_ptr; | |
418 | |
419 /* 512 IMDCT with source and dest data in 'data' */ | |
3623 | 420 /* see the c version (dct_do_512()), its allmost identical, just in C */ |
421 | |
3579 | 422 /* Pre IFFT complex multiply plus IFFT cmplx conjugate */ |
423 /* Bit reversed shuffling */ | |
424 asm volatile( | |
425 "xorl %%esi, %%esi \n\t" | |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
426 "leal "MANGLE(bit_reverse_512)", %%eax \n\t" |
3579 | 427 "movl $1008, %%edi \n\t" |
428 "pushl %%ebp \n\t" //use ebp without telling gcc | |
429 ".balign 16 \n\t" | |
430 "1: \n\t" | |
3584 | 431 "movlps (%0, %%esi), %%xmm0 \n\t" // XXXI |
432 "movhps 8(%0, %%edi), %%xmm0 \n\t" // RXXI | |
433 "movlps 8(%0, %%esi), %%xmm1 \n\t" // XXXi | |
434 "movhps (%0, %%edi), %%xmm1 \n\t" // rXXi | |
435 "shufps $0x33, %%xmm1, %%xmm0 \n\t" // irIR | |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
436 "movaps "MANGLE(sseSinCos1c)"(%%esi), %%xmm2\n\t" |
3584 | 437 "mulps %%xmm0, %%xmm2 \n\t" |
438 "shufps $0xB1, %%xmm0, %%xmm0 \n\t" // riRI | |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
439 "mulps "MANGLE(sseSinCos1d)"(%%esi), %%xmm0\n\t" |
3584 | 440 "subps %%xmm0, %%xmm2 \n\t" |
3579 | 441 "movzbl (%%eax), %%edx \n\t" |
442 "movzbl 1(%%eax), %%ebp \n\t" | |
3584 | 443 "movlps %%xmm2, (%1, %%edx,8) \n\t" |
444 "movhps %%xmm2, (%1, %%ebp,8) \n\t" | |
3579 | 445 "addl $16, %%esi \n\t" |
446 "addl $2, %%eax \n\t" // avoid complex addressing for P4 crap | |
447 "subl $16, %%edi \n\t" | |
448 " jnc 1b \n\t" | |
449 "popl %%ebp \n\t"//no we didnt touch ebp *g* | |
450 :: "b" (data), "c" (buf) | |
451 : "%esi", "%edi", "%eax", "%edx" | |
452 ); | |
453 | |
454 | |
455 /* FFT Merge */ | |
456 /* unoptimized variant | |
457 for (m=1; m < 7; m++) { | |
458 if(m) | |
459 two_m = (1 << m); | |
460 else | |
461 two_m = 1; | |
462 | |
463 two_m_plus_one = (1 << (m+1)); | |
464 | |
465 for(i = 0; i < 128; i += two_m_plus_one) { | |
466 for(k = 0; k < two_m; k++) { | |
467 p = k + i; | |
468 q = p + two_m; | |
469 tmp_a_r = buf[p].real; | |
470 tmp_a_i = buf[p].imag; | |
471 tmp_b_r = buf[q].real * w[m][k].real - buf[q].imag * w[m][k].imag; | |
472 tmp_b_i = buf[q].imag * w[m][k].real + buf[q].real * w[m][k].imag; | |
473 buf[p].real = tmp_a_r + tmp_b_r; | |
474 buf[p].imag = tmp_a_i + tmp_b_i; | |
475 buf[q].real = tmp_a_r - tmp_b_r; | |
476 buf[q].imag = tmp_a_i - tmp_b_i; | |
477 } | |
478 } | |
479 } | |
480 */ | |
481 | |
3623 | 482 /* 1. iteration */ |
3549 | 483 // Note w[0][0]={1,0} |
3508 | 484 asm volatile( |
485 "xorps %%xmm1, %%xmm1 \n\t" | |
486 "xorps %%xmm2, %%xmm2 \n\t" | |
487 "movl %0, %%esi \n\t" | |
3529 | 488 ".balign 16 \n\t" |
3508 | 489 "1: \n\t" |
490 "movlps (%%esi), %%xmm0 \n\t" //buf[p] | |
491 "movlps 8(%%esi), %%xmm1\n\t" //buf[q] | |
492 "movhps (%%esi), %%xmm0 \n\t" //buf[p] | |
493 "movhps 8(%%esi), %%xmm2\n\t" //buf[q] | |
494 "addps %%xmm1, %%xmm0 \n\t" | |
495 "subps %%xmm2, %%xmm0 \n\t" | |
496 "movaps %%xmm0, (%%esi) \n\t" | |
497 "addl $16, %%esi \n\t" | |
498 "cmpl %1, %%esi \n\t" | |
499 " jb 1b \n\t" | |
500 :: "g" (buf), "r" (buf + 128) | |
501 : "%esi" | |
502 ); | |
3549 | 503 |
3623 | 504 /* 2. iteration */ |
3512 | 505 // Note w[1]={{1,0}, {0,-1}} |
506 asm volatile( | |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
507 "movaps "MANGLE(ps111_1)", %%xmm7\n\t" // 1,1,1,-1 |
3512 | 508 "movl %0, %%esi \n\t" |
3529 | 509 ".balign 16 \n\t" |
3512 | 510 "1: \n\t" |
511 "movaps 16(%%esi), %%xmm2 \n\t" //r2,i2,r3,i3 | |
512 "shufps $0xB4, %%xmm2, %%xmm2 \n\t" //r2,i2,i3,r3 | |
513 "mulps %%xmm7, %%xmm2 \n\t" //r2,i2,i3,-r3 | |
514 "movaps (%%esi), %%xmm0 \n\t" //r0,i0,r1,i1 | |
515 "movaps (%%esi), %%xmm1 \n\t" //r0,i0,r1,i1 | |
516 "addps %%xmm2, %%xmm0 \n\t" | |
517 "subps %%xmm2, %%xmm1 \n\t" | |
518 "movaps %%xmm0, (%%esi) \n\t" | |
519 "movaps %%xmm1, 16(%%esi) \n\t" | |
520 "addl $32, %%esi \n\t" | |
521 "cmpl %1, %%esi \n\t" | |
522 " jb 1b \n\t" | |
523 :: "g" (buf), "r" (buf + 128) | |
524 : "%esi" | |
525 ); | |
3549 | 526 |
3623 | 527 /* 3. iteration */ |
3534 | 528 /* |
529 Note sseW2+0={1,1,sqrt(2),sqrt(2)) | |
530 Note sseW2+16={0,0,sqrt(2),-sqrt(2)) | |
531 Note sseW2+32={0,0,-sqrt(2),-sqrt(2)) | |
532 Note sseW2+48={1,-1,sqrt(2),-sqrt(2)) | |
533 */ | |
534 asm volatile( | |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
535 "movaps 48+"MANGLE(sseW2)", %%xmm6\n\t" |
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
536 "movaps 16+"MANGLE(sseW2)", %%xmm7\n\t" |
3534 | 537 "xorps %%xmm5, %%xmm5 \n\t" |
538 "xorps %%xmm2, %%xmm2 \n\t" | |
539 "movl %0, %%esi \n\t" | |
540 ".balign 16 \n\t" | |
541 "1: \n\t" | |
3537 | 542 "movaps 32(%%esi), %%xmm2 \n\t" //r4,i4,r5,i5 |
3534 | 543 "movaps 48(%%esi), %%xmm3 \n\t" //r6,i6,r7,i7 |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
544 "movaps "MANGLE(sseW2)", %%xmm4 \n\t" //r4,i4,r5,i5 |
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
545 "movaps 32+"MANGLE(sseW2)", %%xmm5\n\t" //r6,i6,r7,i7 |
3537 | 546 "mulps %%xmm2, %%xmm4 \n\t" |
547 "mulps %%xmm3, %%xmm5 \n\t" | |
3534 | 548 "shufps $0xB1, %%xmm2, %%xmm2 \n\t" //i4,r4,i5,r5 |
549 "shufps $0xB1, %%xmm3, %%xmm3 \n\t" //i6,r6,i7,r7 | |
3537 | 550 "mulps %%xmm6, %%xmm3 \n\t" |
3534 | 551 "mulps %%xmm7, %%xmm2 \n\t" |
552 "movaps (%%esi), %%xmm0 \n\t" //r0,i0,r1,i1 | |
553 "movaps 16(%%esi), %%xmm1 \n\t" //r2,i2,r3,i3 | |
554 "addps %%xmm4, %%xmm2 \n\t" | |
555 "addps %%xmm5, %%xmm3 \n\t" | |
556 "movaps %%xmm2, %%xmm4 \n\t" | |
557 "movaps %%xmm3, %%xmm5 \n\t" | |
558 "addps %%xmm0, %%xmm2 \n\t" | |
559 "addps %%xmm1, %%xmm3 \n\t" | |
560 "subps %%xmm4, %%xmm0 \n\t" | |
561 "subps %%xmm5, %%xmm1 \n\t" | |
562 "movaps %%xmm2, (%%esi) \n\t" | |
563 "movaps %%xmm3, 16(%%esi) \n\t" | |
564 "movaps %%xmm0, 32(%%esi) \n\t" | |
565 "movaps %%xmm1, 48(%%esi) \n\t" | |
566 "addl $64, %%esi \n\t" | |
567 "cmpl %1, %%esi \n\t" | |
568 " jb 1b \n\t" | |
569 :: "g" (buf), "r" (buf + 128) | |
570 : "%esi" | |
571 ); | |
3508 | 572 |
3623 | 573 /* 4-7. iterations */ |
3546 | 574 for (m=3; m < 7; m++) { |
575 two_m = (1 << m); | |
576 two_m_plus_one = two_m<<1; | |
577 asm volatile( | |
578 "movl %0, %%esi \n\t" | |
579 ".balign 16 \n\t" | |
580 "1: \n\t" | |
581 "xorl %%edi, %%edi \n\t" // k | |
582 "leal (%%esi, %3), %%edx \n\t" | |
583 "2: \n\t" | |
584 "movaps (%%edx, %%edi), %%xmm1 \n\t" | |
585 "movaps (%4, %%edi, 2), %%xmm2 \n\t" | |
586 "mulps %%xmm1, %%xmm2 \n\t" | |
587 "shufps $0xB1, %%xmm1, %%xmm1 \n\t" | |
588 "mulps 16(%4, %%edi, 2), %%xmm1 \n\t" | |
589 "movaps (%%esi, %%edi), %%xmm0 \n\t" | |
590 "addps %%xmm2, %%xmm1 \n\t" | |
591 "movaps %%xmm1, %%xmm2 \n\t" | |
592 "addps %%xmm0, %%xmm1 \n\t" | |
593 "subps %%xmm2, %%xmm0 \n\t" | |
594 "movaps %%xmm1, (%%esi, %%edi) \n\t" | |
595 "movaps %%xmm0, (%%edx, %%edi) \n\t" | |
596 "addl $16, %%edi \n\t" | |
597 "cmpl %3, %%edi \n\t" //FIXME (opt) count against 0 | |
598 " jb 2b \n\t" | |
599 "addl %2, %%esi \n\t" | |
600 "cmpl %1, %%esi \n\t" | |
601 " jb 1b \n\t" | |
602 :: "g" (buf), "m" (buf+128), "m" (two_m_plus_one<<3), "r" (two_m<<3), | |
603 "r" (sseW[m]) | |
604 : "%esi", "%edi", "%edx" | |
605 ); | |
606 } | |
607 | |
3623 | 608 /* Post IFFT complex multiply plus IFFT complex conjugate*/ |
3581 | 609 asm volatile( |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
610 "movl $-1024, %%esi \n\t" |
3581 | 611 ".balign 16 \n\t" |
612 "1: \n\t" | |
613 "movaps (%0, %%esi), %%xmm0 \n\t" | |
614 "movaps (%0, %%esi), %%xmm1 \n\t" | |
615 "shufps $0xB1, %%xmm0, %%xmm0 \n\t" | |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
616 "mulps 1024+"MANGLE(sseSinCos1c)"(%%esi), %%xmm1\n\t" |
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
617 "mulps 1024+"MANGLE(sseSinCos1d)"(%%esi), %%xmm0\n\t" |
3581 | 618 "addps %%xmm1, %%xmm0 \n\t" |
619 "movaps %%xmm0, (%0, %%esi) \n\t" | |
620 "addl $16, %%esi \n\t" | |
621 " jnz 1b \n\t" | |
622 :: "r" (buf+128) | |
623 : "%esi" | |
624 ); | |
625 | |
3394 | 626 |
627 data_ptr = data; | |
628 delay_ptr = delay; | |
629 window_ptr = imdct_window; | |
630 | |
631 /* Window and convert to real valued signal */ | |
3552 | 632 asm volatile( |
633 "xorl %%edi, %%edi \n\t" // 0 | |
634 "xorl %%esi, %%esi \n\t" // 0 | |
635 "movss %3, %%xmm2 \n\t" // bias | |
636 "shufps $0x00, %%xmm2, %%xmm2 \n\t" // bias, bias, ... | |
637 ".balign 16 \n\t" | |
638 "1: \n\t" | |
639 "movlps (%0, %%esi), %%xmm0 \n\t" // ? ? A ? | |
640 "movlps 8(%0, %%esi), %%xmm1 \n\t" // ? ? C ? | |
641 "movhps -16(%0, %%edi), %%xmm1 \n\t" // ? D C ? | |
642 "movhps -8(%0, %%edi), %%xmm0 \n\t" // ? B A ? | |
643 "shufps $0x99, %%xmm1, %%xmm0 \n\t" // D C B A | |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
644 "mulps "MANGLE(sseWindow)"(%%esi), %%xmm0\n\t" |
3552 | 645 "addps (%2, %%esi), %%xmm0 \n\t" |
646 "addps %%xmm2, %%xmm0 \n\t" | |
647 "movaps %%xmm0, (%1, %%esi) \n\t" | |
648 "addl $16, %%esi \n\t" | |
649 "subl $16, %%edi \n\t" | |
650 "cmpl $512, %%esi \n\t" | |
651 " jb 1b \n\t" | |
652 :: "r" (buf+64), "r" (data_ptr), "r" (delay_ptr), "m" (bias) | |
653 : "%esi", "%edi" | |
654 ); | |
655 data_ptr+=128; | |
656 delay_ptr+=128; | |
3553 | 657 // window_ptr+=128; |
3579 | 658 |
3552 | 659 asm volatile( |
660 "movl $1024, %%edi \n\t" // 512 | |
661 "xorl %%esi, %%esi \n\t" // 0 | |
662 "movss %3, %%xmm2 \n\t" // bias | |
663 "shufps $0x00, %%xmm2, %%xmm2 \n\t" // bias, bias, ... | |
664 ".balign 16 \n\t" | |
665 "1: \n\t" | |
666 "movlps (%0, %%esi), %%xmm0 \n\t" // ? ? ? A | |
667 "movlps 8(%0, %%esi), %%xmm1 \n\t" // ? ? ? C | |
668 "movhps -16(%0, %%edi), %%xmm1 \n\t" // D ? ? C | |
669 "movhps -8(%0, %%edi), %%xmm0 \n\t" // B ? ? A | |
670 "shufps $0xCC, %%xmm1, %%xmm0 \n\t" // D C B A | |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
671 "mulps 512+"MANGLE(sseWindow)"(%%esi), %%xmm0\n\t" |
3552 | 672 "addps (%2, %%esi), %%xmm0 \n\t" |
673 "addps %%xmm2, %%xmm0 \n\t" | |
674 "movaps %%xmm0, (%1, %%esi) \n\t" | |
675 "addl $16, %%esi \n\t" | |
676 "subl $16, %%edi \n\t" | |
677 "cmpl $512, %%esi \n\t" | |
678 " jb 1b \n\t" | |
679 :: "r" (buf), "r" (data_ptr), "r" (delay_ptr), "m" (bias) | |
680 : "%esi", "%edi" | |
681 ); | |
682 data_ptr+=128; | |
3553 | 683 // window_ptr+=128; |
3394 | 684 |
685 /* The trailing edge of the window goes into the delay line */ | |
686 delay_ptr = delay; | |
687 | |
3553 | 688 asm volatile( |
689 "xorl %%edi, %%edi \n\t" // 0 | |
690 "xorl %%esi, %%esi \n\t" // 0 | |
691 ".balign 16 \n\t" | |
692 "1: \n\t" | |
693 "movlps (%0, %%esi), %%xmm0 \n\t" // ? ? ? A | |
694 "movlps 8(%0, %%esi), %%xmm1 \n\t" // ? ? ? C | |
695 "movhps -16(%0, %%edi), %%xmm1 \n\t" // D ? ? C | |
696 "movhps -8(%0, %%edi), %%xmm0 \n\t" // B ? ? A | |
697 "shufps $0xCC, %%xmm1, %%xmm0 \n\t" // D C B A | |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
698 "mulps 1024+"MANGLE(sseWindow)"(%%esi), %%xmm0\n\t" |
3553 | 699 "movaps %%xmm0, (%1, %%esi) \n\t" |
700 "addl $16, %%esi \n\t" | |
701 "subl $16, %%edi \n\t" | |
702 "cmpl $512, %%esi \n\t" | |
703 " jb 1b \n\t" | |
704 :: "r" (buf+64), "r" (delay_ptr) | |
705 : "%esi", "%edi" | |
706 ); | |
707 delay_ptr+=128; | |
708 // window_ptr-=128; | |
3579 | 709 |
3553 | 710 asm volatile( |
711 "movl $1024, %%edi \n\t" // 1024 | |
712 "xorl %%esi, %%esi \n\t" // 0 | |
713 ".balign 16 \n\t" | |
714 "1: \n\t" | |
715 "movlps (%0, %%esi), %%xmm0 \n\t" // ? ? A ? | |
716 "movlps 8(%0, %%esi), %%xmm1 \n\t" // ? ? C ? | |
717 "movhps -16(%0, %%edi), %%xmm1 \n\t" // ? D C ? | |
718 "movhps -8(%0, %%edi), %%xmm0 \n\t" // ? B A ? | |
719 "shufps $0x99, %%xmm1, %%xmm0 \n\t" // D C B A | |
4247
2dbd637ffe05
mangle for win32 in liba52 (includes dummy mangle.h pointing to the one in main)
atmos4
parents:
3908
diff
changeset
|
720 "mulps 1536+"MANGLE(sseWindow)"(%%esi), %%xmm0\n\t" |
3553 | 721 "movaps %%xmm0, (%1, %%esi) \n\t" |
722 "addl $16, %%esi \n\t" | |
723 "subl $16, %%edi \n\t" | |
724 "cmpl $512, %%esi \n\t" | |
725 " jb 1b \n\t" | |
726 :: "r" (buf), "r" (delay_ptr) | |
727 : "%esi", "%edi" | |
728 ); | |
3394 | 729 } |
3579 | 730 #endif //arch_x86 |
3394 | 731 |
732 void | |
733 imdct_do_256(sample_t data[],sample_t delay[],sample_t bias) | |
734 { | |
735 int i,k; | |
736 int p,q; | |
737 int m; | |
738 int two_m; | |
739 int two_m_plus_one; | |
740 | |
741 sample_t tmp_a_i; | |
742 sample_t tmp_a_r; | |
743 sample_t tmp_b_i; | |
744 sample_t tmp_b_r; | |
745 | |
746 sample_t *data_ptr; | |
747 sample_t *delay_ptr; | |
748 sample_t *window_ptr; | |
749 | |
750 complex_t *buf_1, *buf_2; | |
751 | |
752 buf_1 = &buf[0]; | |
753 buf_2 = &buf[64]; | |
754 | |
755 /* Pre IFFT complex multiply plus IFFT cmplx conjugate */ | |
756 for(k=0; k<64; k++) { | |
757 /* X1[k] = X[2*k] */ | |
758 /* X2[k] = X[2*k+1] */ | |
759 | |
760 p = 2 * (128-2*k-1); | |
761 q = 2 * (2 * k); | |
762 | |
763 /* Z1[k] = (X1[128-2*k-1] + j * X1[2*k]) * (xcos2[k] + j * xsin2[k]); */ | |
764 buf_1[k].real = data[p] * xcos2[k] - data[q] * xsin2[k]; | |
765 buf_1[k].imag = -1.0f * (data[q] * xcos2[k] + data[p] * xsin2[k]); | |
766 /* Z2[k] = (X2[128-2*k-1] + j * X2[2*k]) * (xcos2[k] + j * xsin2[k]); */ | |
767 buf_2[k].real = data[p + 1] * xcos2[k] - data[q + 1] * xsin2[k]; | |
768 buf_2[k].imag = -1.0f * ( data[q + 1] * xcos2[k] + data[p + 1] * xsin2[k]); | |
769 } | |
770 | |
771 /* IFFT Bit reversed shuffling */ | |
772 for(i=0; i<64; i++) { | |
773 k = bit_reverse_256[i]; | |
774 if (k < i) { | |
775 swap_cmplx(&buf_1[i],&buf_1[k]); | |
776 swap_cmplx(&buf_2[i],&buf_2[k]); | |
777 } | |
778 } | |
779 | |
780 /* FFT Merge */ | |
781 for (m=0; m < 6; m++) { | |
782 two_m = (1 << m); | |
783 two_m_plus_one = (1 << (m+1)); | |
784 | |
785 /* FIXME */ | |
786 if(m) | |
787 two_m = (1 << m); | |
788 else | |
789 two_m = 1; | |
790 | |
791 for(k = 0; k < two_m; k++) { | |
792 for(i = 0; i < 64; i += two_m_plus_one) { | |
793 p = k + i; | |
794 q = p + two_m; | |
795 /* Do block 1 */ | |
796 tmp_a_r = buf_1[p].real; | |
797 tmp_a_i = buf_1[p].imag; | |
798 tmp_b_r = buf_1[q].real * w[m][k].real - buf_1[q].imag * w[m][k].imag; | |
799 tmp_b_i = buf_1[q].imag * w[m][k].real + buf_1[q].real * w[m][k].imag; | |
800 buf_1[p].real = tmp_a_r + tmp_b_r; | |
801 buf_1[p].imag = tmp_a_i + tmp_b_i; | |
802 buf_1[q].real = tmp_a_r - tmp_b_r; | |
803 buf_1[q].imag = tmp_a_i - tmp_b_i; | |
804 | |
805 /* Do block 2 */ | |
806 tmp_a_r = buf_2[p].real; | |
807 tmp_a_i = buf_2[p].imag; | |
808 tmp_b_r = buf_2[q].real * w[m][k].real - buf_2[q].imag * w[m][k].imag; | |
809 tmp_b_i = buf_2[q].imag * w[m][k].real + buf_2[q].real * w[m][k].imag; | |
810 buf_2[p].real = tmp_a_r + tmp_b_r; | |
811 buf_2[p].imag = tmp_a_i + tmp_b_i; | |
812 buf_2[q].real = tmp_a_r - tmp_b_r; | |
813 buf_2[q].imag = tmp_a_i - tmp_b_i; | |
814 } | |
815 } | |
816 } | |
817 | |
818 /* Post IFFT complex multiply */ | |
819 for( i=0; i < 64; i++) { | |
820 /* y1[n] = z1[n] * (xcos2[n] + j * xs in2[n]) ; */ | |
821 tmp_a_r = buf_1[i].real; | |
822 tmp_a_i = -buf_1[i].imag; | |
823 buf_1[i].real =(tmp_a_r * xcos2[i]) - (tmp_a_i * xsin2[i]); | |
824 buf_1[i].imag =(tmp_a_r * xsin2[i]) + (tmp_a_i * xcos2[i]); | |
825 /* y2[n] = z2[n] * (xcos2[n] + j * xsin2[n]) ; */ | |
826 tmp_a_r = buf_2[i].real; | |
827 tmp_a_i = -buf_2[i].imag; | |
828 buf_2[i].real =(tmp_a_r * xcos2[i]) - (tmp_a_i * xsin2[i]); | |
829 buf_2[i].imag =(tmp_a_r * xsin2[i]) + (tmp_a_i * xcos2[i]); | |
830 } | |
831 | |
832 data_ptr = data; | |
833 delay_ptr = delay; | |
834 window_ptr = imdct_window; | |
835 | |
836 /* Window and convert to real valued signal */ | |
837 for(i=0; i< 64; i++) { | |
838 *data_ptr++ = -buf_1[i].imag * *window_ptr++ + *delay_ptr++ + bias; | |
839 *data_ptr++ = buf_1[64-i-1].real * *window_ptr++ + *delay_ptr++ + bias; | |
840 } | |
841 | |
842 for(i=0; i< 64; i++) { | |
843 *data_ptr++ = -buf_1[i].real * *window_ptr++ + *delay_ptr++ + bias; | |
844 *data_ptr++ = buf_1[64-i-1].imag * *window_ptr++ + *delay_ptr++ + bias; | |
845 } | |
846 | |
847 delay_ptr = delay; | |
848 | |
849 for(i=0; i< 64; i++) { | |
850 *delay_ptr++ = -buf_2[i].real * *--window_ptr; | |
851 *delay_ptr++ = buf_2[64-i-1].imag * *--window_ptr; | |
852 } | |
853 | |
854 for(i=0; i< 64; i++) { | |
855 *delay_ptr++ = buf_2[i].imag * *--window_ptr; | |
856 *delay_ptr++ = -buf_2[64-i-1].real * *--window_ptr; | |
857 } | |
858 } | |
859 | |
860 void imdct_init (uint32_t mm_accel) | |
861 { | |
862 #ifdef LIBA52_MLIB | |
863 if (mm_accel & MM_ACCEL_MLIB) { | |
864 fprintf (stderr, "Using mlib for IMDCT transform\n"); | |
865 imdct_512 = imdct_do_512_mlib; | |
866 imdct_256 = imdct_do_256_mlib; | |
867 } else | |
868 #endif | |
869 { | |
870 int i, j, k; | |
871 | |
872 /* Twiddle factors to turn IFFT into IMDCT */ | |
873 for (i = 0; i < 128; i++) { | |
874 xcos1[i] = -cos ((M_PI / 2048) * (8 * i + 1)); | |
875 xsin1[i] = -sin ((M_PI / 2048) * (8 * i + 1)); | |
876 } | |
3579 | 877 #ifdef ARCH_X86 |
3527 | 878 for (i = 0; i < 128; i++) { |
3581 | 879 sseSinCos1c[2*i+0]= xcos1[i]; |
880 sseSinCos1c[2*i+1]= -xcos1[i]; | |
881 sseSinCos1d[2*i+0]= xsin1[i]; | |
882 sseSinCos1d[2*i+1]= xsin1[i]; | |
3527 | 883 } |
884 #endif | |
3394 | 885 |
886 /* More twiddle factors to turn IFFT into IMDCT */ | |
887 for (i = 0; i < 64; i++) { | |
888 xcos2[i] = -cos ((M_PI / 1024) * (8 * i + 1)); | |
889 xsin2[i] = -sin ((M_PI / 1024) * (8 * i + 1)); | |
890 } | |
891 | |
892 for (i = 0; i < 7; i++) { | |
893 j = 1 << i; | |
894 for (k = 0; k < j; k++) { | |
895 w[i][k].real = cos (-M_PI * k / j); | |
896 w[i][k].imag = sin (-M_PI * k / j); | |
897 } | |
898 } | |
3579 | 899 #ifdef ARCH_X86 |
3534 | 900 for (i = 1; i < 7; i++) { |
901 j = 1 << i; | |
902 for (k = 0; k < j; k+=2) { | |
903 | |
904 sseW[i][4*k + 0] = w[i][k+0].real; | |
905 sseW[i][4*k + 1] = w[i][k+0].real; | |
906 sseW[i][4*k + 2] = w[i][k+1].real; | |
907 sseW[i][4*k + 3] = w[i][k+1].real; | |
908 | |
909 sseW[i][4*k + 4] = -w[i][k+0].imag; | |
910 sseW[i][4*k + 5] = w[i][k+0].imag; | |
911 sseW[i][4*k + 6] = -w[i][k+1].imag; | |
912 sseW[i][4*k + 7] = w[i][k+1].imag; | |
913 | |
914 //we multiply more or less uninitalized numbers so we need to use exactly 0.0 | |
915 if(k==0) | |
916 { | |
917 // sseW[i][4*k + 0]= sseW[i][4*k + 1]= 1.0; | |
918 sseW[i][4*k + 4]= sseW[i][4*k + 5]= 0.0; | |
919 } | |
920 | |
921 if(2*k == j) | |
922 { | |
923 sseW[i][4*k + 0]= sseW[i][4*k + 1]= 0.0; | |
924 // sseW[i][4*k + 4]= -(sseW[i][4*k + 5]= -1.0); | |
925 } | |
926 } | |
927 } | |
3552 | 928 |
929 for(i=0; i<128; i++) | |
930 { | |
931 sseWindow[2*i+0]= -imdct_window[2*i+0]; | |
3553 | 932 sseWindow[2*i+1]= imdct_window[2*i+1]; |
3552 | 933 } |
3553 | 934 |
935 for(i=0; i<64; i++) | |
936 { | |
937 sseWindow[256 + 2*i+0]= -imdct_window[254 - 2*i+1]; | |
938 sseWindow[256 + 2*i+1]= imdct_window[254 - 2*i+0]; | |
939 sseWindow[384 + 2*i+0]= imdct_window[126 - 2*i+1]; | |
940 sseWindow[384 + 2*i+1]= -imdct_window[126 - 2*i+0]; | |
941 } | |
3579 | 942 #endif // arch_x86 |
943 | |
3720
120ac80f13c2
Fixed #ifdef discrepancy that was breaking compilation on PPC platform
melanson
parents:
3623
diff
changeset
|
944 imdct_512 = imdct_do_512; |
120ac80f13c2
Fixed #ifdef discrepancy that was breaking compilation on PPC platform
melanson
parents:
3623
diff
changeset
|
945 #ifdef ARCH_X86 |
4497 | 946 if(mm_accel & MM_ACCEL_X86_SSE) |
947 { | |
948 fprintf (stderr, "Using SSE optimized IMDCT transform\n"); | |
949 imdct_512 = imdct_do_512_sse; | |
950 } | |
951 else | |
952 if(mm_accel & MM_ACCEL_X86_3DNOWEXT) | |
953 { | |
954 fprintf (stderr, "Using 3DNowEx optimized IMDCT transform\n"); | |
955 imdct_512 = imdct_do_512_3dnowex; | |
956 } | |
957 else | |
958 if(mm_accel & MM_ACCEL_X86_3DNOW) | |
959 { | |
960 fprintf (stderr, "Using 3DNow optimized IMDCT transform\n"); | |
961 imdct_512 = imdct_do_512_3dnow; | |
962 } | |
963 else | |
3720
120ac80f13c2
Fixed #ifdef discrepancy that was breaking compilation on PPC platform
melanson
parents:
3623
diff
changeset
|
964 #endif // arch_x86 |
4497 | 965 fprintf (stderr, "No accelerated IMDCT transform found\n"); |
3394 | 966 imdct_256 = imdct_do_256; |
967 } | |
968 } | |
3884 | 969 |
970 static void fft_asmb(int k, complex_t *x, complex_t *wTB, | |
971 const complex_t *d, const complex_t *d_3) | |
972 { | |
973 register complex_t *x2k, *x3k, *x4k, *wB; | |
974 register float a_r, a_i, a1_r, a1_i, u_r, u_i, v_r, v_i; | |
975 | |
976 x2k = x + 2 * k; | |
977 x3k = x2k + 2 * k; | |
978 x4k = x3k + 2 * k; | |
979 wB = wTB + 2 * k; | |
980 | |
981 TRANSZERO(x[0],x2k[0],x3k[0],x4k[0]); | |
982 TRANS(x[1],x2k[1],x3k[1],x4k[1],wTB[1],wB[1],d[1],d_3[1]); | |
983 | |
984 --k; | |
985 for(;;) { | |
986 TRANS(x[2],x2k[2],x3k[2],x4k[2],wTB[2],wB[2],d[2],d_3[2]); | |
987 TRANS(x[3],x2k[3],x3k[3],x4k[3],wTB[3],wB[3],d[3],d_3[3]); | |
988 if (!--k) break; | |
989 x += 2; | |
990 x2k += 2; | |
991 x3k += 2; | |
992 x4k += 2; | |
993 d += 2; | |
994 d_3 += 2; | |
995 wTB += 2; | |
996 wB += 2; | |
997 } | |
998 | |
999 } | |
1000 | |
1001 static void fft_asmb16(complex_t *x, complex_t *wTB) | |
1002 { | |
1003 register float a_r, a_i, a1_r, a1_i, u_r, u_i, v_r, v_i; | |
1004 int k = 2; | |
1005 | |
1006 /* transform x[0], x[8], x[4], x[12] */ | |
1007 TRANSZERO(x[0],x[4],x[8],x[12]); | |
1008 | |
1009 /* transform x[1], x[9], x[5], x[13] */ | |
1010 TRANS(x[1],x[5],x[9],x[13],wTB[1],wTB[5],delta16[1],delta16_3[1]); | |
1011 | |
1012 /* transform x[2], x[10], x[6], x[14] */ | |
1013 TRANSHALF_16(x[2],x[6],x[10],x[14]); | |
1014 | |
1015 /* transform x[3], x[11], x[7], x[15] */ | |
1016 TRANS(x[3],x[7],x[11],x[15],wTB[3],wTB[7],delta16[3],delta16_3[3]); | |
1017 | |
1018 } | |
1019 | |
1020 static void fft_4(complex_t *x) | |
1021 { | |
1022 /* delta_p = 1 here */ | |
1023 /* x[k] = sum_{i=0..3} x[i] * w^{i*k}, w=e^{-2*pi/4} | |
1024 */ | |
1025 | |
1026 register float yt_r, yt_i, yb_r, yb_i, u_r, u_i, vi_r, vi_i; | |
1027 | |
1028 yt_r = x[0].real; | |
1029 yb_r = yt_r - x[2].real; | |
1030 yt_r += x[2].real; | |
1031 | |
1032 u_r = x[1].real; | |
1033 vi_i = x[3].real - u_r; | |
1034 u_r += x[3].real; | |
1035 | |
1036 u_i = x[1].imag; | |
1037 vi_r = u_i - x[3].imag; | |
1038 u_i += x[3].imag; | |
1039 | |
1040 yt_i = yt_r; | |
1041 yt_i += u_r; | |
1042 x[0].real = yt_i; | |
1043 yt_r -= u_r; | |
1044 x[2].real = yt_r; | |
1045 yt_i = yb_r; | |
1046 yt_i += vi_r; | |
1047 x[1].real = yt_i; | |
1048 yb_r -= vi_r; | |
1049 x[3].real = yb_r; | |
1050 | |
1051 yt_i = x[0].imag; | |
1052 yb_i = yt_i - x[2].imag; | |
1053 yt_i += x[2].imag; | |
1054 | |
1055 yt_r = yt_i; | |
1056 yt_r += u_i; | |
1057 x[0].imag = yt_r; | |
1058 yt_i -= u_i; | |
1059 x[2].imag = yt_i; | |
1060 yt_r = yb_i; | |
1061 yt_r += vi_i; | |
1062 x[1].imag = yt_r; | |
1063 yb_i -= vi_i; | |
1064 x[3].imag = yb_i; | |
1065 } | |
1066 | |
1067 | |
1068 static void fft_8(complex_t *x) | |
1069 { | |
1070 /* delta_p = diag{1, sqrt(i)} here */ | |
1071 /* x[k] = sum_{i=0..7} x[i] * w^{i*k}, w=e^{-2*pi/8} | |
1072 */ | |
1073 register float wT1_r, wT1_i, wB1_r, wB1_i, wT2_r, wT2_i, wB2_r, wB2_i; | |
1074 | |
1075 wT1_r = x[1].real; | |
1076 wT1_i = x[1].imag; | |
1077 wB1_r = x[3].real; | |
1078 wB1_i = x[3].imag; | |
1079 | |
1080 x[1] = x[2]; | |
1081 x[2] = x[4]; | |
1082 x[3] = x[6]; | |
1083 fft_4(&x[0]); | |
1084 | |
1085 | |
1086 /* x[0] x[4] */ | |
1087 wT2_r = x[5].real; | |
1088 wT2_r += x[7].real; | |
1089 wT2_r += wT1_r; | |
1090 wT2_r += wB1_r; | |
1091 wT2_i = wT2_r; | |
1092 wT2_r += x[0].real; | |
1093 wT2_i = x[0].real - wT2_i; | |
1094 x[0].real = wT2_r; | |
1095 x[4].real = wT2_i; | |
1096 | |
1097 wT2_i = x[5].imag; | |
1098 wT2_i += x[7].imag; | |
1099 wT2_i += wT1_i; | |
1100 wT2_i += wB1_i; | |
1101 wT2_r = wT2_i; | |
1102 wT2_r += x[0].imag; | |
1103 wT2_i = x[0].imag - wT2_i; | |
1104 x[0].imag = wT2_r; | |
1105 x[4].imag = wT2_i; | |
1106 | |
1107 /* x[2] x[6] */ | |
1108 wT2_r = x[5].imag; | |
1109 wT2_r -= x[7].imag; | |
1110 wT2_r += wT1_i; | |
1111 wT2_r -= wB1_i; | |
1112 wT2_i = wT2_r; | |
1113 wT2_r += x[2].real; | |
1114 wT2_i = x[2].real - wT2_i; | |
1115 x[2].real = wT2_r; | |
1116 x[6].real = wT2_i; | |
1117 | |
1118 wT2_i = x[5].real; | |
1119 wT2_i -= x[7].real; | |
1120 wT2_i += wT1_r; | |
1121 wT2_i -= wB1_r; | |
1122 wT2_r = wT2_i; | |
1123 wT2_r += x[2].imag; | |
1124 wT2_i = x[2].imag - wT2_i; | |
1125 x[2].imag = wT2_i; | |
1126 x[6].imag = wT2_r; | |
1127 | |
1128 | |
1129 /* x[1] x[5] */ | |
1130 wT2_r = wT1_r; | |
1131 wT2_r += wB1_i; | |
1132 wT2_r -= x[5].real; | |
1133 wT2_r -= x[7].imag; | |
1134 wT2_i = wT1_i; | |
1135 wT2_i -= wB1_r; | |
1136 wT2_i -= x[5].imag; | |
1137 wT2_i += x[7].real; | |
1138 | |
1139 wB2_r = wT2_r; | |
1140 wB2_r += wT2_i; | |
1141 wT2_i -= wT2_r; | |
1142 wB2_r *= HSQRT2; | |
1143 wT2_i *= HSQRT2; | |
1144 wT2_r = wB2_r; | |
1145 wB2_r += x[1].real; | |
1146 wT2_r = x[1].real - wT2_r; | |
1147 | |
1148 wB2_i = x[5].real; | |
1149 x[1].real = wB2_r; | |
1150 x[5].real = wT2_r; | |
1151 | |
1152 wT2_r = wT2_i; | |
1153 wT2_r += x[1].imag; | |
1154 wT2_i = x[1].imag - wT2_i; | |
1155 wB2_r = x[5].imag; | |
1156 x[1].imag = wT2_r; | |
1157 x[5].imag = wT2_i; | |
1158 | |
1159 /* x[3] x[7] */ | |
1160 wT1_r -= wB1_i; | |
1161 wT1_i += wB1_r; | |
1162 wB1_r = wB2_i - x[7].imag; | |
1163 wB1_i = wB2_r + x[7].real; | |
1164 wT1_r -= wB1_r; | |
1165 wT1_i -= wB1_i; | |
1166 wB1_r = wT1_r + wT1_i; | |
1167 wB1_r *= HSQRT2; | |
1168 wT1_i -= wT1_r; | |
1169 wT1_i *= HSQRT2; | |
1170 wB2_r = x[3].real; | |
1171 wB2_i = wB2_r + wT1_i; | |
1172 wB2_r -= wT1_i; | |
1173 x[3].real = wB2_i; | |
1174 x[7].real = wB2_r; | |
1175 wB2_i = x[3].imag; | |
1176 wB2_r = wB2_i + wB1_r; | |
1177 wB2_i -= wB1_r; | |
1178 x[3].imag = wB2_i; | |
1179 x[7].imag = wB2_r; | |
1180 } | |
1181 | |
1182 | |
1183 static void fft_128p(complex_t *a) | |
1184 { | |
1185 fft_8(&a[0]); fft_4(&a[8]); fft_4(&a[12]); | |
1186 fft_asmb16(&a[0], &a[8]); | |
1187 | |
1188 fft_8(&a[16]), fft_8(&a[24]); | |
1189 fft_asmb(4, &a[0], &a[16],&delta32[0], &delta32_3[0]); | |
1190 | |
1191 fft_8(&a[32]); fft_4(&a[40]); fft_4(&a[44]); | |
1192 fft_asmb16(&a[32], &a[40]); | |
1193 | |
1194 fft_8(&a[48]); fft_4(&a[56]); fft_4(&a[60]); | |
1195 fft_asmb16(&a[48], &a[56]); | |
1196 | |
1197 fft_asmb(8, &a[0], &a[32],&delta64[0], &delta64_3[0]); | |
1198 | |
1199 fft_8(&a[64]); fft_4(&a[72]); fft_4(&a[76]); | |
1200 /* fft_16(&a[64]); */ | |
1201 fft_asmb16(&a[64], &a[72]); | |
1202 | |
1203 fft_8(&a[80]); fft_8(&a[88]); | |
1204 | |
1205 /* fft_32(&a[64]); */ | |
1206 fft_asmb(4, &a[64], &a[80],&delta32[0], &delta32_3[0]); | |
1207 | |
1208 fft_8(&a[96]); fft_4(&a[104]), fft_4(&a[108]); | |
1209 /* fft_16(&a[96]); */ | |
1210 fft_asmb16(&a[96], &a[104]); | |
1211 | |
1212 fft_8(&a[112]), fft_8(&a[120]); | |
1213 /* fft_32(&a[96]); */ | |
1214 fft_asmb(4, &a[96], &a[112], &delta32[0], &delta32_3[0]); | |
1215 | |
1216 /* fft_128(&a[0]); */ | |
1217 fft_asmb(16, &a[0], &a[64], &delta128[0], &delta128_3[0]); | |
1218 } | |
1219 | |
1220 | |
1221 |