Changeset 66834b6
- Timestamp:
- Aug 21, 2005, 6:51:28 PM (19 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:
- 162fd27
- Parents:
- e06e478
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/aubio_priv.h
re06e478 r66834b6 45 45 #endif 46 46 47 /* must be included before fftw3.h */ 47 48 #if HAVE_COMPLEX_H 48 49 #include <complex.h> 49 50 #endif 50 /* 51 #include <complex.h> 52 #include <fftw3.h> 53 #define FFTW_TYPE fftwf_complex 54 */ 51 55 52 #if HAVE_FFTW3_H 56 53 #include <fftw3.h> 57 //#define FFTW_TYPE fftwf_complex58 54 #endif 59 55 -
src/fft.c
re06e478 r66834b6 35 35 #if FFTW3F_SUPPORT 36 36 #define real_t smpl_t 37 #else 37 #else 38 38 #define real_t lsmp_t 39 39 #endif -
src/fft.h
re06e478 r66834b6 24 24 #ifndef FFT_H_ 25 25 #define FFT_H_ 26 /* 27 // complex before fftw3 28 #include <complex.h> 29 */ 26 27 /* <complex.h> is not included here but only in aubio_priv.h, so that c++ 28 * projects can still use their own complex definition. */ 30 29 #include <fftw3.h> 31 30
Note: See TracChangeset
for help on using the changeset viewer.