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
3f138a3555
commit
8724dc84af
@ -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…
x
Reference in New Issue
Block a user