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 IntelCQTexperiment
parent
7139f5aa08
commit
d21aa09771
|
@ -18,4 +18,4 @@
|
||||||
url = https://github.com/shpakovski/MASShortcut.git
|
url = https://github.com/shpakovski/MASShortcut.git
|
||||||
[submodule "Frameworks/libsidplayfp/sidplayfp"]
|
[submodule "Frameworks/libsidplayfp/sidplayfp"]
|
||||||
path = Frameworks/libsidplayfp/sidplayfp
|
path = Frameworks/libsidplayfp/sidplayfp
|
||||||
url = https://github.com/libsidplayfp/libsidplayfp.git
|
url = https://github.com/kode54/libsidplayfp.git
|
||||||
|
|
|
@ -214,3 +214,10 @@
|
||||||
/* # undef WORDS_BIGENDIAN */
|
/* # undef WORDS_BIGENDIAN */
|
||||||
# endif
|
# endif
|
||||||
#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
|
Loading…
Reference in New Issue