ofxPDSP
flags.h
1 
2 // flags.h
3 // ofxPDSP
4 // Nicola Pisanti, MIT License, 2016
5 
6 #ifndef PDSP_FLAGS_H_INCLUDED
7 #define PDSP_FLAGS_H_INCLUDED
8 
9 //if you are on osx/ios, you can add the accelerate framework and decomment this for faster FFT
10 //#define AUDIOFFT_APPLE_ACCELERATE
11 
12 //if you can use FFTW for your project, link it and decomment this for faster FFT
13 //#define AUDIOFFT_FFTW3
14 
15 
16 // some internally used values
17 #define PDSP_NODE_POINTERS_RESERVE 16
18 #define PDSP_PATTERN_MESSAGE_RESERVE_DEFAULT 32
19 #define PDSP_SCORESECTIONMESSAGERESERVE 32
20 
21 #define PDSP_BUFFERS_EXTRA_DIM 5
22 
23 #define PDSP_MIN_ENVSTAGE_MS 0.000001f
24 
25 #define PDSP_MAX_OUTPUT_CHANNELS 32
26 
27 #endif // PDSP_FLAGS_H_INCLUDED