Changeset b511fa9 for src/spectral
- Timestamp:
- Sep 23, 2009, 7:40:14 PM (16 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:
- 000b090
- Parents:
- 2062e48
- Location:
- src/spectral
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/spectral/fft.c ¶
r2062e48 rb511fa9 24 24 #include "spectral/fft.h" 25 25 26 #if FFTW3F_SUPPORT26 #if HAVE_FFTW3F 27 27 #define fftw_malloc fftwf_malloc 28 28 #define fftw_free fftwf_free … … 35 35 #endif 36 36 37 #if FFTW3F_SUPPORT37 #if HAVE_FFTW3F 38 38 #if !AUBIO_SINGLE_PRECISION 39 39 #warning "Using aubio in double precision with fftw3 in single precision" -
TabularUnified src/spectral/fft.h ¶
r2062e48 rb511fa9 32 32 33 33 #ifdef HAVE_COMPLEX_H 34 #if FFTW3F_SUPPORT34 #if HAVE_FFTW3F 35 35 #define FFTW_TYPE fftwf_complex 36 36 #else … … 38 38 #endif 39 39 #else 40 #if FFTW3F_SUPPORT40 #if HAVE_FFTW3F 41 41 /** fft data type */ 42 42 #define FFTW_TYPE float
Note: See TracChangeset
for help on using the changeset viewer.