mirror of
https://github.com/azahar-emu/soundtouch
synced 2025-11-06 23:20:03 +01:00
Tuning to enable ARM NEON SIMD performance improvements: - NEON detection in configure file - Remove manual loop unrolling, gcc autovectorization does better job without manually unrolled loops. - Avoid unaligned pointer accesses when using NEON
9 lines
188 B
C
9 lines
188 B
C
/* Use Float as Sample type */
|
|
#undef SOUNDTOUCH_FLOAT_SAMPLES
|
|
|
|
/* Use Integer as Sample type */
|
|
#undef SOUNDTOUCH_INTEGER_SAMPLES
|
|
|
|
/* Use ARM NEON extension */
|
|
#undef SOUNDTOUCH_USE_NEON
|