FDK_archdef.h revision 2228e360595641dd906bf1773307f43d304f5b2e
1
2/* -----------------------------------------------------------------------------------------------------------
3Software License for The Fraunhofer FDK AAC Codec Library for Android
4
5� Copyright  1995 - 2012 Fraunhofer-Gesellschaft zur F�rderung der angewandten Forschung e.V.
6  All rights reserved.
7
8 1.    INTRODUCTION
9The Fraunhofer FDK AAC Codec Library for Android ("FDK AAC Codec") is software that implements
10the MPEG Advanced Audio Coding ("AAC") encoding and decoding scheme for digital audio.
11This FDK AAC Codec software is intended to be used on a wide variety of Android devices.
12
13AAC's HE-AAC and HE-AAC v2 versions are regarded as today's most efficient general perceptual
14audio codecs. AAC-ELD is considered the best-performing full-bandwidth communications codec by
15independent studies and is widely deployed. AAC has been standardized by ISO and IEC as part
16of the MPEG specifications.
17
18Patent licenses for necessary patent claims for the FDK AAC Codec (including those of Fraunhofer)
19may be obtained through Via Licensing (www.vialicensing.com) or through the respective patent owners
20individually for the purpose of encoding or decoding bit streams in products that are compliant with
21the ISO/IEC MPEG audio standards. Please note that most manufacturers of Android devices already license
22these patent claims through Via Licensing or directly from the patent owners, and therefore FDK AAC Codec
23software may already be covered under those patent licenses when it is used for those licensed purposes only.
24
25Commercially-licensed AAC software libraries, including floating-point versions with enhanced sound quality,
26are also available from Fraunhofer. Users are encouraged to check the Fraunhofer website for additional
27applications information and documentation.
28
292.    COPYRIGHT LICENSE
30
31Redistribution and use in source and binary forms, with or without modification, are permitted without
32payment of copyright license fees provided that you satisfy the following conditions:
33
34You must retain the complete text of this software license in redistributions of the FDK AAC Codec or
35your modifications thereto in source code form.
36
37You must retain the complete text of this software license in the documentation and/or other materials
38provided with redistributions of the FDK AAC Codec or your modifications thereto in binary form.
39You must make available free of charge copies of the complete source code of the FDK AAC Codec and your
40modifications thereto to recipients of copies in binary form.
41
42The name of Fraunhofer may not be used to endorse or promote products derived from this library without
43prior written permission.
44
45You may not charge copyright license fees for anyone to use, copy or distribute the FDK AAC Codec
46software or your modifications thereto.
47
48Your modified versions of the FDK AAC Codec must carry prominent notices stating that you changed the software
49and the date of any change. For modified versions of the FDK AAC Codec, the term
50"Fraunhofer FDK AAC Codec Library for Android" must be replaced by the term
51"Third-Party Modified Version of the Fraunhofer FDK AAC Codec Library for Android."
52
533.    NO PATENT LICENSE
54
55NO EXPRESS OR IMPLIED LICENSES TO ANY PATENT CLAIMS, including without limitation the patents of Fraunhofer,
56ARE GRANTED BY THIS SOFTWARE LICENSE. Fraunhofer provides no warranty of patent non-infringement with
57respect to this software.
58
59You may use this FDK AAC Codec software or modifications thereto only for purposes that are authorized
60by appropriate patent licenses.
61
624.    DISCLAIMER
63
64This FDK AAC Codec software is provided by Fraunhofer on behalf of the copyright holders and contributors
65"AS IS" and WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, including but not limited to the implied warranties
66of merchantability and fitness for a particular purpose. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
67CONTRIBUTORS BE LIABLE for any direct, indirect, incidental, special, exemplary, or consequential damages,
68including but not limited to procurement of substitute goods or services; loss of use, data, or profits,
69or business interruption, however caused and on any theory of liability, whether in contract, strict
70liability, or tort (including negligence), arising in any way out of the use of this software, even if
71advised of the possibility of such damage.
72
735.    CONTACT INFORMATION
74
75Fraunhofer Institute for Integrated Circuits IIS
76Attention: Audio and Multimedia Departments - FDK AAC LL
77Am Wolfsmantel 33
7891058 Erlangen, Germany
79
80www.iis.fraunhofer.de/amm
81amm-info@iis.fraunhofer.de
82----------------------------------------------------------------------------------------------------------- */
83
84/***************************  Fraunhofer IIS FDK Tools  ***********************
85
86   Author(s):
87   Description:
88
89******************************************************************************/
90
91#ifndef __ARCH_H__
92#define __ARCH_H__
93
94/* Performance / Quality profile selector */
95  #define FDK_HIGH_PERFORMANCE
96
97/* Unify some few toolchain specific defines to avoid having large "or" macro contraptions all over the source code. */
98
99/* Take action against VisualStudio 2005 crosscompile problems. */
100
101/* Use single macro (the GCC built in macro) for architecture identification independent of the particular toolchain */
102#if defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || (defined(_MSC_VER) && defined(_M_IX86)) || defined (__x86_64__)
103#define __x86__
104#endif
105
106#if (defined(_M_ARM) || defined(__CC_ARM)) && !defined(__arm__) || defined(__TI_TMS470_V5__) && !defined(__arm__)
107#define __arm__
108#endif
109
110
111
112/* Define __ARM_ARCH_5TE__ if armv5te features are supported  */
113#if (__TARGET_ARCH_ARM == 5) || defined(__TARGET_FEATURE_DSPMUL) || (_M_ARM == 5) || defined(__ARM_ARCH_5TEJ__) || defined(__TI_TMS470_V5__) || defined(__ARM_ARCH_7EM__)
114#define __ARM_ARCH_5TE__
115#endif
116
117/* Define __ARM_ARCH_6__ if the armv6 intructions are being supported. */
118#if (__TARGET_ARCH_ARM == 6) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6ZK__)
119#define __ARM_ARCH_5TE__
120#define __ARM_ARCH_6__
121#endif
122
123/* Define __ARM_ARCH_7_A__ if the armv7 intructions are being supported. */
124#if defined(__TARGET_ARCH_7_R) || defined(__ARM_ARCH_7R__)
125#define __ARM_ARCH_5TE__
126#define __ARM_ARCH_6__
127#define __ARM_ARCH_7_R__
128#endif
129
130/* Define __ARM_ARCH_7_A__ if the armv7 intructions are being supported. */
131#if defined(__TARGET_ARCH_7_A) || defined(__ARM_ARCH_7A__)
132#define __ARM_ARCH_5TE__
133#define __ARM_ARCH_6__
134#define __ARM_ARCH_7_A__
135#endif
136
137/* Define __ARM_ARCH_7M__ if the ARMv7-M instructions are being supported, e.g. Cortex-M3. */
138#if defined(__TARGET_ARCH_7_M) || defined(__ARM_ARCH_7_M__)
139#define __ARM_ARCH_7M__
140#endif
141
142/* Define __ARM_ARCH_7EM__ if the ARMv7-ME instructions are being supported, e.g. Cortex-M4. */
143#if defined(__TARGET_ARCH_7E_M) || defined(__ARM_ARCH_7E_M__)
144#define __ARM_ARCH_7EM__
145#endif
146
147/* Detect and unify macros for neon feature. */
148#if defined(__TARGET_FEATURE_NEON) && !defined(__ARM_NEON__)
149#define __ARM_NEON__
150#endif
151
152#ifdef _M_ARM
153#include "cmnintrin.h"
154#include "armintr.h"
155#endif
156
157
158
159/* Define preferred Multiplication type */
160#if defined(FDK_HIGH_PERFORMANCE) && !defined(FDK_HIGH_QUALITY) /* FDK_HIGH_PERFORMANCE */
161
162#if defined(__mips__) || defined(__powerpc__) || defined(__sh__)
163#define ARCH_PREFER_MULT_16x16
164#undef SINETABLE_16BIT
165#undef POW2COEFF_16BIT
166#undef LDCOEFF_16BIT
167#undef WINDOWTABLE_16BIT
168
169#elif defined(__arm__) && defined(__ARM_ARCH_5TE__)	/* cppp replaced: elif */	/* cppp replaced: elif */
170#define ARCH_PREFER_MULT_32x16
171#define SINETABLE_16BIT
172#define POW2COEFF_16BIT
173#define LDCOEFF_16BIT
174#define WINDOWTABLE_16BIT
175
176#elif defined(__arm__) && defined(__ARM_ARCH_7M__)
177#define ARCH_PREFER_MULT_32x16
178#define SINETABLE_16BIT
179#define POW2COEFF_16BIT
180#define LDCOEFF_16BIT
181#define WINDOWTABLE_16BIT
182
183#elif defined(__arm__) && defined(__ARM_ARCH_7EM__)
184#define ARCH_PREFER_MULT_32x32
185#define ARCH_PREFER_MULT_32x16
186#define SINETABLE_16BIT
187#define POW2COEFF_16BIT
188#define LDCOEFF_16BIT
189#define WINDOWTABLE_16BIT
190
191#elif defined(__arm__) && !defined(__ARM_ARCH_5TE__)
192#define ARCH_PREFER_MULT_16x16
193#undef SINETABLE_16BIT
194#undef WINDOWTABLE_16BIT
195#undef POW2COEFF_16BIT
196#undef LDCOEFF_16BIT
197
198#elif defined(__x86__)	/* cppp replaced: elif */
199#define ARCH_PREFER_MULT_32x16
200#define SINETABLE_16BIT
201#define WINDOWTABLE_16BIT
202#define POW2COEFF_16BIT
203#define LDCOEFF_16BIT
204
205#else
206
207  #error  >>>> Please set architecture characterization defines for your platform (FDK_HIGH_PERFORMANCE)! <<<<
208
209#endif /* Architecture switches */
210
211#else /* neither FDK_HIGH_QUALITY or FDK_HIGH_PERFORMANCE */
212
213#error Either set FDK_HIGH_QUALITY or FDK_HIGH_PERFORMANCE, but not both nor none of them.
214
215#endif /* End of quality/complexity tradeoff */
216
217#define FDKTOOLS_PACKED_TABLES
218
219
220#ifdef SINETABLE_16BIT
221  #define FIXP_STB FIXP_SGL     /* STB sinus Tab used in transformation */
222  #define FIXP_STP FIXP_SPK
223  #define STC(a) (FX_DBL2FXCONST_SGL(a))
224#else
225  #define FIXP_STB FIXP_DBL
226  #define FIXP_STP FIXP_DPK
227  #define STC(a) ((FIXP_DBL)(LONG)(a))
228#endif /* defined(SINETABLE_16BIT) */
229
230#define STCP(cos,sin) { { STC(cos), STC(sin) } }
231
232
233#ifdef WINDOWTABLE_16BIT
234  #define FIXP_WTB FIXP_SGL /* single FIXP_SGL values */
235  #define FIXP_WTP FIXP_SPK /* packed FIXP_SGL values */
236  #define WTC(a) FX_DBL2FXCONST_SGL(a)
237#else /* SINETABLE_16BIT */
238  #define FIXP_WTB FIXP_DBL
239  #define FIXP_WTP FIXP_DPK
240  #define WTC(a) (FIXP_DBL)(a)
241#endif /* SINETABLE_16BIT */
242
243#define WTCP(a,b) { { WTC(a), WTC(b) } }
244
245
246#endif /* __ARCH_H__ */
247