mirror of https://github.com/mstorsjo/fdk-aac.git
Fix building with MSVC for ARM
cmnintrin.h only existed for Windows CE, and doesn't seem to actually be necessary for building this.
This commit is contained in:
parent
45915b67e4
commit
72037da0ba
|
@ -154,7 +154,6 @@ amm-info@iis.fraunhofer.de
|
|||
#endif
|
||||
|
||||
#ifdef _M_ARM
|
||||
#include "cmnintrin.h"
|
||||
#include "armintr.h"
|
||||
#endif
|
||||
|
||||
|
|
|
@ -97,7 +97,10 @@ amm-info@iis.fraunhofer.de
|
|||
#ifdef FUNCTION_LPPTRANSPOSER_func1
|
||||
|
||||
/* Note: This code requires only 43 cycles per iteration instead of 61 on ARM926EJ-S */
|
||||
__attribute__ ((noinline)) static void lppTransposer_func1(
|
||||
#ifdef __GNUC__
|
||||
__attribute__ ((noinline))
|
||||
#endif
|
||||
static void lppTransposer_func1(
|
||||
FIXP_DBL *lowBandReal,
|
||||
FIXP_DBL *lowBandImag,
|
||||
FIXP_DBL **qmfBufferReal,
|
||||
|
|
Loading…
Reference in New Issue