Mercurial > mplayer.hg
annotate libfaad2/common.h @ 22375:8092494fc92c
Add missing registers to asm code in mp3lib
author | reimar |
---|---|
date | Thu, 01 Mar 2007 12:45:00 +0000 |
parents | 0783dd397f74 |
children | bc29871be2fd |
rev | line source |
---|---|
10725 | 1 /* |
2 ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding | |
12527 | 3 ** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com |
4 ** | |
10725 | 5 ** This program is free software; you can redistribute it and/or modify |
6 ** it under the terms of the GNU General Public License as published by | |
7 ** the Free Software Foundation; either version 2 of the License, or | |
8 ** (at your option) any later version. | |
12527 | 9 ** |
10725 | 10 ** This program is distributed in the hope that it will be useful, |
11 ** but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 ** GNU General Public License for more details. | |
12527 | 14 ** |
10725 | 15 ** You should have received a copy of the GNU General Public License |
12527 | 16 ** along with this program; if not, write to the Free Software |
10725 | 17 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 ** | |
19 ** Any non-GPL usage of this software or parts of this software is strictly | |
20 ** forbidden. | |
21 ** | |
22 ** Commercial non-GPL licensing of this software is possible. | |
23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com. | |
24 ** | |
12625
d81145997036
More information about modifications to comply more closely with GPL 2a.
diego
parents:
12527
diff
changeset
|
25 ** Initially modified for use with MPlayer by Arpad Gereöffy on 2003/08/30 |
10725 | 26 ** $Id$ |
18783 | 27 ** detailed changelog at http://svn.mplayerhq.hu/mplayer/trunk/ |
14731 | 28 ** local_changes.diff contains the exact changes to this file. |
10725 | 29 **/ |
30 | |
31 #ifndef __COMMON_H__ | |
32 #define __COMMON_H__ | |
33 | |
34 #ifdef __cplusplus | |
35 extern "C" { | |
36 #endif | |
37 | |
14729
b4378a6f87a6
Sync missing cosmetics from the 2004-07-12 CVS snapshot.
diego
parents:
13685
diff
changeset
|
38 /* Allow build on Cygwin*/ |
12527 | 39 #if defined(__CYGWIN__) |
40 #define __STRICT_ANSI__ | |
41 #endif | |
10725 | 42 |
13685 | 43 #include "../config.h" |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
44 |
10725 | 45 #define INLINE __inline |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
46 #if 0 //defined(_WIN32) && !defined(_WIN32_WCE) |
12527 | 47 #define ALIGN __declspec(align(16)) |
48 #else | |
49 #define ALIGN | |
50 #endif | |
10725 | 51 |
52 #ifndef max | |
53 #define max(a, b) (((a) > (b)) ? (a) : (b)) | |
54 #endif | |
55 #ifndef min | |
56 #define min(a, b) (((a) < (b)) ? (a) : (b)) | |
57 #endif | |
58 | |
59 /* COMPILE TIME DEFINITIONS */ | |
60 | |
61 /* use double precision */ | |
62 /* #define USE_DOUBLE_PRECISION */ | |
63 /* use fixed point reals */ | |
64 //#define FIXED_POINT | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
65 //#define BIG_IQ_TABLE |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
66 |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
67 /* Use if target platform has address generators with autoincrement */ |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
68 //#define PREFER_POINTERS |
10725 | 69 |
16230
ba7a79482bec
prefer FIXED_POINT for ARM - patch by AGAWA Koji <i at atty.sakura.ne.jp>
alex
parents:
15593
diff
changeset
|
70 #if defined(_WIN32_WCE) || defined(__arm__) |
12527 | 71 #define FIXED_POINT |
72 #endif | |
73 | |
74 | |
10725 | 75 #define ERROR_RESILIENCE |
76 | |
77 | |
78 /* Allow decoding of MAIN profile AAC */ | |
79 #define MAIN_DEC | |
80 /* Allow decoding of SSR profile AAC */ | |
81 //#define SSR_DEC | |
82 /* Allow decoding of LTP profile AAC */ | |
83 #define LTP_DEC | |
84 /* Allow decoding of LD profile AAC */ | |
85 #define LD_DEC | |
12527 | 86 /* Allow decoding of scalable profiles */ |
87 //#define SCALABLE_DEC | |
88 /* Allow decoding of Digital Radio Mondiale (DRM) */ | |
89 //#define DRM | |
90 //#define DRM_PS | |
10725 | 91 |
92 /* LD can't do without LTP */ | |
93 #ifdef LD_DEC | |
94 #ifndef ERROR_RESILIENCE | |
95 #define ERROR_RESILIENCE | |
96 #endif | |
97 #ifndef LTP_DEC | |
98 #define LTP_DEC | |
99 #endif | |
100 #endif | |
101 | |
12527 | 102 #define ALLOW_SMALL_FRAMELENGTH |
103 | |
104 | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
105 // Define LC_ONLY_DECODER if you want a pure AAC LC decoder (independant of SBR_DEC and PS_DEC) |
12527 | 106 //#define LC_ONLY_DECODER |
107 #ifdef LC_ONLY_DECODER | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
108 #undef LD_DEC |
12527 | 109 #undef LTP_DEC |
110 #undef MAIN_DEC | |
111 #undef SSR_DEC | |
112 #undef DRM | |
113 #undef ALLOW_SMALL_FRAMELENGTH | |
114 #undef ERROR_RESILIENCE | |
115 #endif | |
10725 | 116 |
117 #define SBR_DEC | |
118 //#define SBR_LOW_POWER | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
119 #define PS_DEC |
10725 | 120 |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
121 /* FIXED POINT: No MAIN decoding */ |
10725 | 122 #ifdef FIXED_POINT |
12527 | 123 # ifdef MAIN_DEC |
124 # undef MAIN_DEC | |
125 # endif | |
13485
93a84777a6b5
SBR code does NOT work with fixed point (uses floats, slow as hell)
rfelker
parents:
13453
diff
changeset
|
126 # ifdef SBR_DEC |
93a84777a6b5
SBR code does NOT work with fixed point (uses floats, slow as hell)
rfelker
parents:
13453
diff
changeset
|
127 # undef SBR_DEC |
93a84777a6b5
SBR code does NOT work with fixed point (uses floats, slow as hell)
rfelker
parents:
13453
diff
changeset
|
128 # endif |
12527 | 129 #endif // FIXED_POINT |
130 | |
131 #ifdef DRM | |
132 # ifndef SCALABLE_DEC | |
133 # define SCALABLE_DEC | |
134 # endif | |
135 #endif | |
136 | |
10725 | 137 |
138 #ifdef FIXED_POINT | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
139 #define DIV_R(A, B) (((int64_t)A << REAL_BITS)/B) |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
140 #define DIV_C(A, B) (((int64_t)A << COEF_BITS)/B) |
10725 | 141 #else |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
142 #define DIV_R(A, B) ((A)/(B)) |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
143 #define DIV_C(A, B) ((A)/(B)) |
10725 | 144 #endif |
145 | |
146 #ifndef SBR_LOW_POWER | |
147 #define qmf_t complex_t | |
148 #define QMF_RE(A) RE(A) | |
149 #define QMF_IM(A) IM(A) | |
150 #else | |
151 #define qmf_t real_t | |
152 #define QMF_RE(A) (A) | |
12527 | 153 #define QMF_IM(A) |
10725 | 154 #endif |
155 | |
156 | |
157 /* END COMPILE TIME DEFINITIONS */ | |
158 | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
159 #if defined(_WIN32) && !defined(__MINGW32__) |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
160 |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
161 #include <stdlib.h> |
10725 | 162 |
10805
125a35fc47a5
fixed win32 compile problems and broken bigendian support
alex
parents:
10725
diff
changeset
|
163 #if 0 |
10725 | 164 typedef unsigned __int64 uint64_t; |
165 typedef unsigned __int32 uint32_t; | |
166 typedef unsigned __int16 uint16_t; | |
167 typedef unsigned __int8 uint8_t; | |
168 typedef __int64 int64_t; | |
169 typedef __int32 int32_t; | |
170 typedef __int16 int16_t; | |
171 typedef __int8 int8_t; | |
10805
125a35fc47a5
fixed win32 compile problems and broken bigendian support
alex
parents:
10725
diff
changeset
|
172 #else |
125a35fc47a5
fixed win32 compile problems and broken bigendian support
alex
parents:
10725
diff
changeset
|
173 #include <inttypes.h> |
125a35fc47a5
fixed win32 compile problems and broken bigendian support
alex
parents:
10725
diff
changeset
|
174 #endif |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
175 |
10725 | 176 typedef float float32_t; |
177 | |
178 | |
179 #else | |
180 | |
181 /* #undef HAVE_FLOAT32_T */ | |
182 /* Define if you have the <inttypes.h> header file. */ | |
183 #define HAVE_INTTYPES_H 1 | |
184 | |
185 /* Define if you have the `memcpy' function. */ | |
186 #define HAVE_MEMCPY 1 | |
187 | |
188 /* Define if you have the <stdint.h> header file. */ | |
189 #define HAVE_STDINT_H 1 | |
190 | |
191 /* Define if you have the `strchr' function. */ | |
192 #define HAVE_STRCHR 1 | |
193 | |
194 /* Define if you have the ANSI C header files. */ | |
195 #define STDC_HEADERS 1 | |
196 | |
197 #include <stdio.h> | |
198 #if HAVE_SYS_TYPES_H | |
199 # include <sys/types.h> | |
200 #endif | |
201 #if HAVE_SYS_STAT_H | |
202 # include <sys/stat.h> | |
203 #endif | |
204 #if STDC_HEADERS | |
205 # include <stdlib.h> | |
206 # include <stddef.h> | |
207 #else | |
208 # if HAVE_STDLIB_H | |
209 # include <stdlib.h> | |
210 # endif | |
211 #endif | |
212 #if HAVE_STRING_H | |
213 # if !STDC_HEADERS && HAVE_MEMORY_H | |
214 # include <memory.h> | |
215 # endif | |
216 # include <string.h> | |
217 #endif | |
218 #if HAVE_STRINGS_H | |
219 # include <strings.h> | |
220 #endif | |
221 #if HAVE_INTTYPES_H | |
222 # include <inttypes.h> | |
223 #else | |
224 # if HAVE_STDINT_H | |
225 # include <stdint.h> | |
226 # else | |
227 /* we need these... */ | |
228 typedef unsigned long long uint64_t; | |
229 typedef unsigned long uint32_t; | |
230 typedef unsigned short uint16_t; | |
231 typedef unsigned char uint8_t; | |
232 typedef long long int64_t; | |
233 typedef long int32_t; | |
234 typedef short int16_t; | |
235 typedef char int8_t; | |
236 # endif | |
237 #endif | |
238 #if HAVE_UNISTD_H | |
239 # include <unistd.h> | |
240 #endif | |
241 | |
242 #ifndef HAVE_FLOAT32_T | |
243 typedef float float32_t; | |
244 #endif | |
245 | |
246 #if STDC_HEADERS | |
247 # include <string.h> | |
248 #else | |
249 # if !HAVE_STRCHR | |
250 # define strchr index | |
251 # define strrchr rindex | |
252 # endif | |
253 char *strchr(), *strrchr(); | |
254 # if !HAVE_MEMCPY | |
255 # define memcpy(d, s, n) bcopy((s), (d), (n)) | |
256 # define memmove(d, s, n) bcopy((s), (d), (n)) | |
257 # endif | |
258 #endif | |
259 | |
260 #endif | |
261 | |
262 #ifdef WORDS_BIGENDIAN | |
263 #define ARCH_IS_BIG_ENDIAN | |
264 #endif | |
265 | |
266 /* FIXED_POINT doesn't work with MAIN and SSR yet */ | |
267 #ifdef FIXED_POINT | |
268 #undef MAIN_DEC | |
269 #undef SSR_DEC | |
270 #endif | |
271 | |
272 | |
273 #if defined(FIXED_POINT) | |
274 | |
275 #include "fixed.h" | |
276 | |
277 #elif defined(USE_DOUBLE_PRECISION) | |
278 | |
279 typedef double real_t; | |
280 | |
281 #include <math.h> | |
282 | |
12527 | 283 #define MUL_R(A,B) ((A)*(B)) |
284 #define MUL_C(A,B) ((A)*(B)) | |
285 #define MUL_F(A,B) ((A)*(B)) | |
286 | |
287 /* Complex multiplication */ | |
288 static INLINE void ComplexMult(real_t *y1, real_t *y2, | |
289 real_t x1, real_t x2, real_t c1, real_t c2) | |
290 { | |
291 *y1 = MUL_F(x1, c1) + MUL_F(x2, c2); | |
292 *y2 = MUL_F(x2, c1) - MUL_F(x1, c2); | |
293 } | |
10725 | 294 |
10989 | 295 #define REAL_CONST(A) ((real_t)(A)) |
296 #define COEF_CONST(A) ((real_t)(A)) | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
297 #define Q2_CONST(A) ((real_t)(A)) |
12527 | 298 #define FRAC_CONST(A) ((real_t)(A)) /* pure fractional part */ |
10725 | 299 |
300 #else /* Normal floating point operation */ | |
301 | |
302 typedef float real_t; | |
303 | |
12527 | 304 #define MUL_R(A,B) ((A)*(B)) |
305 #define MUL_C(A,B) ((A)*(B)) | |
306 #define MUL_F(A,B) ((A)*(B)) | |
10725 | 307 |
10989 | 308 #define REAL_CONST(A) ((real_t)(A)) |
309 #define COEF_CONST(A) ((real_t)(A)) | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
310 #define Q2_CONST(A) ((real_t)(A)) |
12527 | 311 #define FRAC_CONST(A) ((real_t)(A)) /* pure fractional part */ |
312 | |
313 /* Complex multiplication */ | |
314 static INLINE void ComplexMult(real_t *y1, real_t *y2, | |
315 real_t x1, real_t x2, real_t c1, real_t c2) | |
316 { | |
317 *y1 = MUL_F(x1, c1) + MUL_F(x2, c2); | |
318 *y2 = MUL_F(x2, c1) - MUL_F(x1, c2); | |
319 } | |
320 | |
321 | |
15593 | 322 #if defined(_WIN32) && !defined(__MINGW32__) && !defined(HAVE_LRINTF) |
12527 | 323 #define HAS_LRINTF |
324 static INLINE int lrintf(float f) | |
325 { | |
326 int i; | |
327 __asm | |
328 { | |
329 fld f | |
330 fistp i | |
331 } | |
332 return i; | |
333 } | |
18141 | 334 #elif (defined(__i386__) && defined(__GNUC__)) && !defined(HAVE_LRINTF) |
12527 | 335 #define HAS_LRINTF |
336 // from http://www.stereopsis.com/FPU.html | |
337 static INLINE int lrintf(float f) | |
338 { | |
339 int i; | |
340 __asm__ __volatile__ ( | |
341 "flds %1 \n\t" | |
342 "fistpl %0 \n\t" | |
343 : "=m" (i) | |
344 : "m" (f)); | |
345 return i; | |
346 } | |
347 #endif | |
348 | |
10725 | 349 |
350 #ifdef __ICL /* only Intel C compiler has fmath ??? */ | |
351 | |
352 #include <mathf.h> | |
353 | |
354 #define sin sinf | |
355 #define cos cosf | |
356 #define log logf | |
357 #define floor floorf | |
358 #define ceil ceilf | |
359 #define sqrt sqrtf | |
360 | |
361 #else | |
362 | |
13685 | 363 #include <math.h> |
364 | |
12527 | 365 #ifdef HAVE_LRINTF |
366 # define HAS_LRINTF | |
367 # define _ISOC9X_SOURCE 1 | |
368 # define _ISOC99_SOURCE 1 | |
369 # define __USE_ISOC9X 1 | |
370 # define __USE_ISOC99 1 | |
371 #endif | |
372 | |
10725 | 373 #ifdef HAVE_SINF |
374 # define sin sinf | |
375 #error | |
376 #endif | |
377 #ifdef HAVE_COSF | |
378 # define cos cosf | |
379 #endif | |
380 #ifdef HAVE_LOGF | |
381 # define log logf | |
382 #endif | |
383 #ifdef HAVE_EXPF | |
384 # define exp expf | |
385 #endif | |
386 #ifdef HAVE_FLOORF | |
387 # define floor floorf | |
388 #endif | |
389 #ifdef HAVE_CEILF | |
390 # define ceil ceilf | |
391 #endif | |
392 #ifdef HAVE_SQRTF | |
393 # define sqrt sqrtf | |
394 #endif | |
395 | |
396 #endif | |
397 | |
398 #endif | |
399 | |
12527 | 400 #ifndef HAS_LRINTF |
401 /* standard cast */ | |
402 #define lrintf(f) ((int32_t)(f)) | |
403 #endif | |
404 | |
10725 | 405 typedef real_t complex_t[2]; |
406 #define RE(A) A[0] | |
407 #define IM(A) A[1] | |
408 | |
409 | |
410 /* common functions */ | |
12527 | 411 uint8_t cpu_has_sse(void); |
10725 | 412 uint32_t random_int(void); |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
413 uint32_t ones32(uint32_t x); |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
414 uint32_t floor_log2(uint32_t x); |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
415 uint32_t wl_min_lzc(uint32_t x); |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
416 #ifdef FIXED_POINT |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
417 #define LOG2_MIN_INF REAL_CONST(-10000) |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
418 int32_t log2_int(uint32_t val); |
18141 | 419 int32_t log2_fix(uint32_t val); |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
420 int32_t pow2_int(real_t val); |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
421 real_t pow2_fix(real_t val); |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
422 #endif |
12527 | 423 uint8_t get_sr_index(const uint32_t samplerate); |
424 uint8_t max_pred_sfb(const uint8_t sr_index); | |
425 uint8_t max_tns_sfb(const uint8_t sr_index, const uint8_t object_type, | |
426 const uint8_t is_short); | |
427 uint32_t get_sample_rate(const uint8_t sr_index); | |
428 int8_t can_decode_ot(const uint8_t object_type); | |
429 | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
430 void *faad_malloc(size_t size); |
12527 | 431 void faad_free(void *b); |
432 | |
433 //#define PROFILE | |
434 #ifdef PROFILE | |
435 static int64_t faad_get_ts() | |
436 { | |
437 __asm | |
438 { | |
439 rdtsc | |
440 } | |
441 } | |
442 #endif | |
10725 | 443 |
444 #ifndef M_PI | |
12527 | 445 #define M_PI 3.14159265358979323846 |
10725 | 446 #endif |
447 #ifndef M_PI_2 /* PI/2 */ | |
448 #define M_PI_2 1.57079632679489661923 | |
449 #endif | |
450 | |
451 | |
452 #ifdef __cplusplus | |
453 } | |
454 #endif | |
455 #endif |