2 ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
3 ** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com
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.
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
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
27 ** detailed changelog at http://svn.mplayerhq.hu/mplayer/trunk/
28 ** local_changes.diff contains the exact changes to this file.
39 # include "../config.h"
42 /* Allow build on Cygwin*/
43 #if defined(__CYGWIN__)
44 #define __STRICT_ANSI__
47 #define INLINE __inline
48 #if 0 //defined(_WIN32) && !defined(_WIN32_WCE)
49 #define ALIGN __declspec(align(16))
55 #define max(a, b) (((a) > (b)) ? (a) : (b))
58 #define min(a, b) (((a) < (b)) ? (a) : (b))
61 /* COMPILE TIME DEFINITIONS */
63 /* use double precision */
64 /* #define USE_DOUBLE_PRECISION */
65 /* use fixed point reals */
67 //#define BIG_IQ_TABLE
69 /* Use if target platform has address generators with autoincrement */
70 //#define PREFER_POINTERS
72 #if defined(_WIN32_WCE) || defined(__arm__) || defined(__avr32__)
77 #define ERROR_RESILIENCE
80 /* Allow decoding of MAIN profile AAC */
82 /* Allow decoding of SSR profile AAC */
84 /* Allow decoding of LTP profile AAC */
86 /* Allow decoding of LD profile AAC */
88 /* Allow decoding of scalable profiles */
89 //#define SCALABLE_DEC
90 /* Allow decoding of Digital Radio Mondiale (DRM) */
94 /* LD can't do without LTP */
96 #ifndef ERROR_RESILIENCE
97 #define ERROR_RESILIENCE
104 #define ALLOW_SMALL_FRAMELENGTH
107 // Define LC_ONLY_DECODER if you want a pure AAC LC decoder (independant of SBR_DEC and PS_DEC)
108 //#define LC_ONLY_DECODER
109 #ifdef LC_ONLY_DECODER
115 #undef ALLOW_SMALL_FRAMELENGTH
116 #undef ERROR_RESILIENCE
120 //#define SBR_LOW_POWER
123 /* FIXED POINT: No MAIN decoding */
131 #endif // FIXED_POINT
134 # ifndef SCALABLE_DEC
135 # define SCALABLE_DEC
141 #define DIV_R(A, B) (((int64_t)A << REAL_BITS)/B)
142 #define DIV_C(A, B) (((int64_t)A << COEF_BITS)/B)
144 #define DIV_R(A, B) ((A)/(B))
145 #define DIV_C(A, B) ((A)/(B))
148 #ifndef SBR_LOW_POWER
149 #define qmf_t complex_t
150 #define QMF_RE(A) RE(A)
151 #define QMF_IM(A) IM(A)
154 #define QMF_RE(A) (A)
159 /* END COMPILE TIME DEFINITIONS */
161 #if defined(_WIN32) && !defined(__MINGW32__)
166 typedef unsigned __int64
uint64_t;
167 typedef unsigned __int32
uint32_t;
168 typedef unsigned __int16
uint16_t;
169 typedef unsigned __int8
uint8_t;
170 typedef __int64
int64_t;
171 typedef __int32
int32_t;
172 typedef __int16
int16_t;
173 typedef __int8
int8_t;
175 #include <inttypes.h>
178 typedef float float32_t
;
185 # include <sys/types.h>
188 # include <sys/stat.h>
199 # if !STDC_HEADERS && HAVE_MEMORY_H
205 # include <strings.h>
208 # include <inttypes.h>
213 /* we need these... */
214 typedef unsigned long long uint64_t;
215 typedef unsigned long uint32_t;
216 typedef unsigned short uint16_t;
217 typedef unsigned char uint8_t;
218 typedef long long int64_t;
219 typedef long int32_t;
220 typedef short int16_t;
228 #ifndef HAVE_FLOAT32_T
229 typedef float float32_t
;
236 # define strchr index
237 # define strrchr rindex
239 char *strchr(), *strrchr();
241 # define memcpy(d, s, n) bcopy((s), (d), (n))
242 # define memmove(d, s, n) bcopy((s), (d), (n))
249 #define ARCH_IS_BIG_ENDIAN
252 /* FIXED_POINT doesn't work with MAIN and SSR yet */
259 #if defined(FIXED_POINT)
263 #elif defined(USE_DOUBLE_PRECISION)
265 typedef double real_t
;
269 #define MUL_R(A,B) ((A)*(B))
270 #define MUL_C(A,B) ((A)*(B))
271 #define MUL_F(A,B) ((A)*(B))
273 /* Complex multiplication */
274 static INLINE
void ComplexMult(real_t
*y1
, real_t
*y2
,
275 real_t x1
, real_t x2
, real_t c1
, real_t c2
)
277 *y1
= MUL_F(x1
, c1
) + MUL_F(x2
, c2
);
278 *y2
= MUL_F(x2
, c1
) - MUL_F(x1
, c2
);
281 #define REAL_CONST(A) ((real_t)(A))
282 #define COEF_CONST(A) ((real_t)(A))
283 #define Q2_CONST(A) ((real_t)(A))
284 #define FRAC_CONST(A) ((real_t)(A)) /* pure fractional part */
286 #else /* Normal floating point operation */
288 typedef float real_t
;
290 #define MUL_R(A,B) ((A)*(B))
291 #define MUL_C(A,B) ((A)*(B))
292 #define MUL_F(A,B) ((A)*(B))
294 #define REAL_CONST(A) ((real_t)(A))
295 #define COEF_CONST(A) ((real_t)(A))
296 #define Q2_CONST(A) ((real_t)(A))
297 #define FRAC_CONST(A) ((real_t)(A)) /* pure fractional part */
299 /* Complex multiplication */
300 static INLINE
void ComplexMult(real_t
*y1
, real_t
*y2
,
301 real_t x1
, real_t x2
, real_t c1
, real_t c2
)
303 *y1
= MUL_F(x1
, c1
) + MUL_F(x2
, c2
);
304 *y2
= MUL_F(x2
, c1
) - MUL_F(x1
, c2
);
308 #if defined(_WIN32) && !defined(__MINGW32__) && !HAVE_LRINTF
310 static INLINE
int lrintf(float f
)
320 #elif (defined(__i386__) && defined(__GNUC__)) && !HAVE_LRINTF
322 // from http://www.stereopsis.com/FPU.html
323 static INLINE
int lrintf(float f
)
326 __asm__
__volatile__ (
336 #ifdef __ICL /* only Intel C compiler has fmath ??? */
353 # define _ISOC9X_SOURCE 1
354 # define _ISOC99_SOURCE 1
355 # define __USE_ISOC9X 1
356 # define __USE_ISOC99 1
373 # define floor floorf
388 #define lrintf(f) ((int32_t)(f))
391 typedef real_t complex_t
[2];
396 /* common functions */
397 uint8_t cpu_has_sse(void);
398 uint32_t random_int(void);
399 uint32_t ones32(uint32_t x
);
400 uint32_t floor_log2(uint32_t x
);
401 uint32_t wl_min_lzc(uint32_t x
);
403 #define LOG2_MIN_INF REAL_CONST(-10000)
404 int32_t log2_int(uint32_t val
);
405 int32_t log2_fix(uint32_t val
);
406 int32_t pow2_int(real_t val
);
407 real_t
pow2_fix(real_t val
);
409 uint8_t get_sr_index(const uint32_t samplerate
);
410 uint8_t max_pred_sfb(const uint8_t sr_index
);
411 uint8_t max_tns_sfb(const uint8_t sr_index
, const uint8_t object_type
,
412 const uint8_t is_short
);
413 uint32_t get_sample_rate(const uint8_t sr_index
);
414 int8_t can_decode_ot(const uint8_t object_type
);
416 void *faad_malloc(size_t size
);
417 void faad_free(void *b
);
421 static int64_t faad_get_ts()
431 #define M_PI 3.14159265358979323846
433 #ifndef M_PI_2 /* PI/2 */
434 #define M_PI_2 1.57079632679489661923