kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit 977138801d80d23713692e13bbc1572c484574df
parent e3903215063c7458c461da1091d4e870ca10a423
Author: [email protected] <[email protected]>
Date:   Mon, 25 Nov 2019 06:59:12 +0000

Disable dr_mp3 SSE2 if not available

Diffstat:
Minclude/kfr/cident.h | 5+++++
Minclude/kfr/io/audiofile.hpp | 5+++++
2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/include/kfr/cident.h b/include/kfr/cident.h @@ -178,6 +178,11 @@ extern char* gets(char* __s); #endif +#if defined CMT_ARCH_ARM && defined CMT_ARCH_X64 +#define CMT_ARCH_ARM64 1 +#define CMT_ARCH_AARCH64 1 +#endif + #ifndef CMT_ARCH_NAME #define CMT_ARCH_NAME generic #endif diff --git a/include/kfr/io/audiofile.hpp b/include/kfr/io/audiofile.hpp @@ -32,6 +32,11 @@ #include "../simd/vec.hpp" #include "file.hpp" +#if !defined CMT_ARCH_SSE2 && !defined CMT_ARCH_ARM64 +#define DR_MP3_NO_SIMD 1 +#define DR_FLAC_NO_SIMD 1 +#endif + #ifndef KFR_DISABLE_WAV #define DR_WAV_NO_STDIO #define DR_WAV_NO_CONVERSION_API