tremor uses integer types
[mplayer/glamo.git] / libfaad2 / common.h
blobd378680e6dd8194de1a9436248c1f633187b0de7
1 /*
2 ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
3 ** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com
4 **
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.
9 **
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.
15 ** You should have received a copy of the GNU General Public License
16 ** along with this program; if not, write to the Free Software
17 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 ** Any non-GPL usage of this software or parts of this software is strictly
20 ** forbidden.
22 ** Commercial non-GPL licensing of this software is possible.
23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
25 ** Initially modified for use with MPlayer by Arpad Gereöffy on 2003/08/30
26 ** $Id$
27 ** detailed CVS changelog at http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
28 ** local_changes.diff contains the exact changes to this file.
29 **/
31 #ifndef __COMMON_H__
32 #define __COMMON_H__
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
38 /* Allow build on Cygwin*/
39 #if defined(__CYGWIN__)
40 #define __STRICT_ANSI__
41 #endif
43 #include "../config.h"
45 #define INLINE __inline
46 #if 0 //defined(_WIN32) && !defined(_WIN32_WCE)
47 #define ALIGN __declspec(align(16))
48 #else
49 #define ALIGN
50 #endif
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
59 /* COMPILE TIME DEFINITIONS */
61 /* use double precision */
62 /* #define USE_DOUBLE_PRECISION */
63 /* use fixed point reals */
64 //#define FIXED_POINT
65 //#define BIG_IQ_TABLE
67 /* Use if target platform has address generators with autoincrement */
68 //#define PREFER_POINTERS
70 #ifdef _WIN32_WCE
71 #define FIXED_POINT
72 #endif
75 #define ERROR_RESILIENCE
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
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
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
102 #define ALLOW_SMALL_FRAMELENGTH
105 // Define LC_ONLY_DECODER if you want a pure AAC LC decoder (independant of SBR_DEC and PS_DEC)
106 //#define LC_ONLY_DECODER
107 #ifdef LC_ONLY_DECODER
108 #undef LD_DEC
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
117 #define SBR_DEC
118 //#define SBR_LOW_POWER
119 #define PS_DEC
121 /* FIXED POINT: No MAIN decoding */
122 #ifdef FIXED_POINT
123 # ifdef MAIN_DEC
124 # undef MAIN_DEC
125 # endif
126 # ifdef SBR_DEC
127 # undef SBR_DEC
128 # endif
129 #endif // FIXED_POINT
131 #ifdef DRM
132 # ifndef SCALABLE_DEC
133 # define SCALABLE_DEC
134 # endif
135 #endif
137 #if ((defined(_WIN32) && !defined(_WIN32_WCE)) /* || ((__GNUC__ >= 3) && defined(__i386__)) */ )
138 #ifndef FIXED_POINT
139 /* includes <xmmintrin.h> to enable SSE intrinsics */
140 //#define USE_SSE
141 #endif
142 #endif
144 #ifdef FIXED_POINT
145 #define DIV_R(A, B) (((int64_t)A << REAL_BITS)/B)
146 #define DIV_C(A, B) (((int64_t)A << COEF_BITS)/B)
147 #else
148 #define DIV_R(A, B) ((A)/(B))
149 #define DIV_C(A, B) ((A)/(B))
150 #endif
152 #ifndef SBR_LOW_POWER
153 #define qmf_t complex_t
154 #define QMF_RE(A) RE(A)
155 #define QMF_IM(A) IM(A)
156 #else
157 #define qmf_t real_t
158 #define QMF_RE(A) (A)
159 #define QMF_IM(A)
160 #endif
163 /* END COMPILE TIME DEFINITIONS */
165 #if defined(_WIN32) && !defined(__MINGW32__)
167 #include <stdlib.h>
169 #if 0
170 typedef unsigned __int64 uint64_t;
171 typedef unsigned __int32 uint32_t;
172 typedef unsigned __int16 uint16_t;
173 typedef unsigned __int8 uint8_t;
174 typedef __int64 int64_t;
175 typedef __int32 int32_t;
176 typedef __int16 int16_t;
177 typedef __int8 int8_t;
178 #else
179 #include <inttypes.h>
180 #endif
182 typedef float float32_t;
185 #else
187 /* #undef HAVE_FLOAT32_T */
188 /* Define if you have the <inttypes.h> header file. */
189 #define HAVE_INTTYPES_H 1
191 /* Define if you have the `memcpy' function. */
192 #define HAVE_MEMCPY 1
194 /* Define if you have the <stdint.h> header file. */
195 #define HAVE_STDINT_H 1
197 /* Define if you have the `strchr' function. */
198 #define HAVE_STRCHR 1
200 /* Define if you have the ANSI C header files. */
201 #define STDC_HEADERS 1
203 #include <stdio.h>
204 #if HAVE_SYS_TYPES_H
205 # include <sys/types.h>
206 #endif
207 #if HAVE_SYS_STAT_H
208 # include <sys/stat.h>
209 #endif
210 #if STDC_HEADERS
211 # include <stdlib.h>
212 # include <stddef.h>
213 #else
214 # if HAVE_STDLIB_H
215 # include <stdlib.h>
216 # endif
217 #endif
218 #if HAVE_STRING_H
219 # if !STDC_HEADERS && HAVE_MEMORY_H
220 # include <memory.h>
221 # endif
222 # include <string.h>
223 #endif
224 #if HAVE_STRINGS_H
225 # include <strings.h>
226 #endif
227 #if HAVE_INTTYPES_H
228 # include <inttypes.h>
229 #else
230 # if HAVE_STDINT_H
231 # include <stdint.h>
232 # else
233 /* we need these... */
234 typedef unsigned long long uint64_t;
235 typedef unsigned long uint32_t;
236 typedef unsigned short uint16_t;
237 typedef unsigned char uint8_t;
238 typedef long long int64_t;
239 typedef long int32_t;
240 typedef short int16_t;
241 typedef char int8_t;
242 # endif
243 #endif
244 #if HAVE_UNISTD_H
245 # include <unistd.h>
246 #endif
248 #ifndef HAVE_FLOAT32_T
249 typedef float float32_t;
250 #endif
252 #if STDC_HEADERS
253 # include <string.h>
254 #else
255 # if !HAVE_STRCHR
256 # define strchr index
257 # define strrchr rindex
258 # endif
259 char *strchr(), *strrchr();
260 # if !HAVE_MEMCPY
261 # define memcpy(d, s, n) bcopy((s), (d), (n))
262 # define memmove(d, s, n) bcopy((s), (d), (n))
263 # endif
264 #endif
266 #endif
268 #ifdef WORDS_BIGENDIAN
269 #define ARCH_IS_BIG_ENDIAN
270 #endif
272 /* FIXED_POINT doesn't work with MAIN and SSR yet */
273 #ifdef FIXED_POINT
274 #undef MAIN_DEC
275 #undef SSR_DEC
276 #endif
279 #if defined(FIXED_POINT)
281 #include "fixed.h"
283 #elif defined(USE_DOUBLE_PRECISION)
285 typedef double real_t;
287 #include <math.h>
289 #define MUL_R(A,B) ((A)*(B))
290 #define MUL_C(A,B) ((A)*(B))
291 #define MUL_F(A,B) ((A)*(B))
293 /* Complex multiplication */
294 static INLINE void ComplexMult(real_t *y1, real_t *y2,
295 real_t x1, real_t x2, real_t c1, real_t c2)
297 *y1 = MUL_F(x1, c1) + MUL_F(x2, c2);
298 *y2 = MUL_F(x2, c1) - MUL_F(x1, c2);
301 #define REAL_CONST(A) ((real_t)(A))
302 #define COEF_CONST(A) ((real_t)(A))
303 #define Q2_CONST(A) ((real_t)(A))
304 #define FRAC_CONST(A) ((real_t)(A)) /* pure fractional part */
306 #else /* Normal floating point operation */
308 typedef float real_t;
310 #ifdef USE_SSE
311 # include <xmmintrin.h>
312 #endif
314 #define MUL_R(A,B) ((A)*(B))
315 #define MUL_C(A,B) ((A)*(B))
316 #define MUL_F(A,B) ((A)*(B))
318 #define REAL_CONST(A) ((real_t)(A))
319 #define COEF_CONST(A) ((real_t)(A))
320 #define Q2_CONST(A) ((real_t)(A))
321 #define FRAC_CONST(A) ((real_t)(A)) /* pure fractional part */
323 /* Complex multiplication */
324 static INLINE void ComplexMult(real_t *y1, real_t *y2,
325 real_t x1, real_t x2, real_t c1, real_t c2)
327 *y1 = MUL_F(x1, c1) + MUL_F(x2, c2);
328 *y2 = MUL_F(x2, c1) - MUL_F(x1, c2);
332 #if defined(_WIN32) && !defined(__MINGW32__) && !defined(HAVE_LRINTF)
333 #define HAS_LRINTF
334 static INLINE int lrintf(float f)
336 int i;
337 __asm
339 fld f
340 fistp i
342 return i;
344 #elif (defined(__i386__) && defined(__GNUC__)) && !defined(__MINGW32__) && !defined(HAVE_LRINTF)
345 #define HAS_LRINTF
346 // from http://www.stereopsis.com/FPU.html
347 static INLINE int lrintf(float f)
349 int i;
350 __asm__ __volatile__ (
351 "flds %1 \n\t"
352 "fistpl %0 \n\t"
353 : "=m" (i)
354 : "m" (f));
355 return i;
357 #endif
360 #ifdef __ICL /* only Intel C compiler has fmath ??? */
362 #include <mathf.h>
364 #define sin sinf
365 #define cos cosf
366 #define log logf
367 #define floor floorf
368 #define ceil ceilf
369 #define sqrt sqrtf
371 #else
373 #include <math.h>
375 #ifdef HAVE_LRINTF
376 # define HAS_LRINTF
377 # define _ISOC9X_SOURCE 1
378 # define _ISOC99_SOURCE 1
379 # define __USE_ISOC9X 1
380 # define __USE_ISOC99 1
381 #endif
383 #ifdef HAVE_SINF
384 # define sin sinf
385 #error
386 #endif
387 #ifdef HAVE_COSF
388 # define cos cosf
389 #endif
390 #ifdef HAVE_LOGF
391 # define log logf
392 #endif
393 #ifdef HAVE_EXPF
394 # define exp expf
395 #endif
396 #ifdef HAVE_FLOORF
397 # define floor floorf
398 #endif
399 #ifdef HAVE_CEILF
400 # define ceil ceilf
401 #endif
402 #ifdef HAVE_SQRTF
403 # define sqrt sqrtf
404 #endif
406 #endif
408 #endif
410 #ifndef HAS_LRINTF
411 /* standard cast */
412 #define lrintf(f) ((int32_t)(f))
413 #endif
415 typedef real_t complex_t[2];
416 #define RE(A) A[0]
417 #define IM(A) A[1]
420 /* common functions */
421 uint8_t cpu_has_sse(void);
422 uint32_t random_int(void);
423 uint32_t ones32(uint32_t x);
424 uint32_t floor_log2(uint32_t x);
425 uint32_t wl_min_lzc(uint32_t x);
426 #ifdef FIXED_POINT
427 #define LOG2_MIN_INF REAL_CONST(-10000)
428 int32_t log2_int(uint32_t val);
429 int32_t pow2_int(real_t val);
430 real_t pow2_fix(real_t val);
431 #endif
432 uint8_t get_sr_index(const uint32_t samplerate);
433 uint8_t max_pred_sfb(const uint8_t sr_index);
434 uint8_t max_tns_sfb(const uint8_t sr_index, const uint8_t object_type,
435 const uint8_t is_short);
436 uint32_t get_sample_rate(const uint8_t sr_index);
437 int8_t can_decode_ot(const uint8_t object_type);
439 void *faad_malloc(size_t size);
440 void faad_free(void *b);
442 //#define PROFILE
443 #ifdef PROFILE
444 static int64_t faad_get_ts()
446 __asm
448 rdtsc
451 #endif
453 #ifndef M_PI
454 #define M_PI 3.14159265358979323846
455 #endif
456 #ifndef M_PI_2 /* PI/2 */
457 #define M_PI_2 1.57079632679489661923
458 #endif
461 #ifdef __cplusplus
463 #endif
464 #endif