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:
Martin Storsjo 2016-09-09 11:53:34 +03:00
parent 45915b67e4
commit 72037da0ba
2 changed files with 4 additions and 2 deletions

View File

@ -154,7 +154,6 @@ amm-info@iis.fraunhofer.de
#endif
#ifdef _M_ARM
#include "cmnintrin.h"
#include "armintr.h"
#endif

View File

@ -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,