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 5dc69bd commit e23bd3a
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
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ [email protected]
#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
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ [email protected]
#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 e23bd3a

Please sign in to comment.