- 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
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/aubio_priv.h
r2062e48 rb511fa9 33 33 */ 34 34 35 #if HAVE_CONFIG_H35 #if 1 //HAVE_CONFIG_H 36 36 #include "config.h" 37 37 #endif … … 58 58 #endif 59 59 60 #if HAVE_STRING S_H60 #if HAVE_STRING_H 61 61 #include <string.h> 62 62 #endif -
src/mathutils.c
r2062e48 rb511fa9 419 419 420 420 void aubio_cleanup(void) { 421 #if FFTW3_SUPPORT421 #if HAVE_FFTW3 422 422 fftw_cleanup(); 423 423 #else 424 #if FFTW3F_SUPPORT424 #if HAVE_FFTW3F 425 425 fftwf_cleanup(); 426 426 #endif -
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" -
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.