-
-
Notifications
You must be signed in to change notification settings - Fork 394
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmnintrin.h only existed for Windows CE, and doesn't seem to actually be necessary for building this.
- Loading branch information
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -154,7 +154,6 @@ [email protected] | |
#endif | ||
|
||
#ifdef _M_ARM | ||
#include "cmnintrin.h" | ||
#include "armintr.h" | ||
#endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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, | ||
|