First commit made while running on Apple Silicon

sidplayfp: Implement ARM NEON accelerated sinc resampler on Apple Silicon, and enable existing MMX accelerated sinc resampler on Intel
CQTexperiment
Christopher Snowhill 2021-03-26 05:56:19 -07:00
parent 7139f5aa08
commit d21aa09771
3 changed files with 9 additions and 2 deletions

2
.gitmodules vendored
View File

@ -18,4 +18,4 @@
url = https://github.com/shpakovski/MASShortcut.git
[submodule "Frameworks/libsidplayfp/sidplayfp"]
path = Frameworks/libsidplayfp/sidplayfp
url = https://github.com/libsidplayfp/libsidplayfp.git
url = https://github.com/kode54/libsidplayfp.git

View File

@ -214,3 +214,10 @@
/* # undef WORDS_BIGENDIAN */
# endif
#endif
#if defined(__x86_64__) \
|| defined(_M_X64)
#define HAVE_MMINTRIN_H 1
#elif (defined(__arm64__) && defined(__APPLE__)) || defined(__aarch64__)
#define HAVE_ARM_NEON_H 1
#endif

@ -1 +1 @@
Subproject commit a6620bdcd5bf9b6f09a6164ea2aea7d6cb34ef25
Subproject commit 28a096273ecd106d90577cc43115e8ec5a5f05f7