Skip to content

Commit

Permalink
Fix building with MSVC for ARM
Browse files Browse the repository at this point in the history
cmnintrin.h only existed for Windows CE, and doesn't seem to actually
be necessary for building this.
  • Loading branch information
mstorsjo committed Sep 11, 2016
1 parent 45915b6 commit 72037da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion libFDK/include/FDK_archdef.h
Expand Up @@ -154,7 +154,6 @@ amm-info@iis.fraunhofer.de
#endif

#ifdef _M_ARM
#include "cmnintrin.h"
#include "armintr.h"
#endif

Expand Down
5 changes: 4 additions & 1 deletion libSBRdec/src/arm/lpp_tran_arm.cpp
Expand Up @@ -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,
Expand Down

0 comments on commit 72037da

Please sign in to comment.