Changeset 7cec717 for src/spectral
- Timestamp:
- Sep 26, 2009, 12:38:19 AM (15 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- a250b35
- Parents:
- 9ea88c6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/fft.h
r9ea88c6 r7cec717 33 33 #ifdef HAVE_COMPLEX_H 34 34 #if HAVE_FFTW3F 35 /** fft data type with complex.h and fftw3f */ 35 36 #define FFTW_TYPE fftwf_complex 36 37 #else 38 /** fft data type with complex.h and fftw3 */ 37 39 #define FFTW_TYPE fftw_complex 38 40 #endif 39 41 #else 40 42 #if HAVE_FFTW3F 41 /** fft data type */43 /** fft data type without complex.h and with fftw3f */ 42 44 #define FFTW_TYPE float 43 45 #else 44 /** fft data type */46 /** fft data type without complex.h and with fftw */ 45 47 #define FFTW_TYPE double 46 48 #endif
Note: See TracChangeset
for help on using the changeset viewer.