forked from VictorQueiroz/speexdsp-cmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h.cmake
59 lines (40 loc) · 1.16 KB
/
config.h.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Use C99 variable-size arrays
#cmakedefine VAR_ARRAYS
// Make use of alloca
#cmakedefine USE_ALLOCA
// Symbol visibility prefix
#cmakedefine EXPORT
// Enable valgrind extra checks
#cmakedefine ENABLE_VALGRIND
// Compile as fixed-point
#cmakedefine FIXED_POINT
// Compile as floating-point
#cmakedefine FLOATING_POINT
// Enable SSE support
#cmakedefine USE_SSE
// Enable NEON support
#cmakedefine USE_NEON
// Enable SSE2 support
#cmakedefine USE_SSE2
// Disable all parts of the API that are using floats
#cmakedefine DISABLE_FLOAT_API
// Make use of ARM4 assembly optimizations
#cmakedefine ARM4_ASM
// Make use of ARM5E assembly optimizations
#cmakedefine ARM5E_ASM
// Make use of Blackfin assembly optimizations
#cmakedefine BFIN_ASM
// Debug fixed-point implementation
#cmakedefine FIXED_DEBUG
// Resample with full SINC table (no interpolation)
#cmakedefine RESAMPLE_FULL_SINC_TABLE
// Enable support for TI C55X DSP
#cmakedefine TI_C55X
// Use KISS Fast Fourier Transform
#cmakedefine USE_KISS_FFT
// Use FFT from OggVorbis
#cmakedefine USE_SMALLFT
// Use FFTW3 for FFT
#cmakedefine USE_GPL_FFTW3
// Use Intel Math Kernel Library for FFT
#cmakedefine USE_INTEL_MKL