Changeset 714380d
- Timestamp:
- Jul 13, 2006, 5:01:11 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:
- c621415
- Parents:
- bf8e134
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mathutils.c
rbf8e134 r714380d 23 23 #include "sample.h" 24 24 #include "mathutils.h" 25 #include "config.h" 25 26 26 27 void aubio_window(smpl_t *w, uint_t size, aubio_window_type wintype) { … … 454 455 } 455 456 457 void aubio_cleanup(void) 458 { 459 #if FFTW3_SUPPORT 460 fftw_cleanup(); 461 #else 462 #if FFTW3F_SUPPORT 463 fftwf_cleanup(); 464 #endif 465 #endif 466 } -
src/mathutils.h
rbf8e134 r714380d 246 246 */ 247 247 void aubio_autocorr(fvec_t * input, fvec_t * output); 248 /** 249 * clean up cached memory at the end of program 250 * 251 * use this function at the end of programs to purge all 252 * cached memory. so far this function is only used to clean 253 * fftw cache. 254 */ 255 void aubio_cleanup(void); 248 256 249 257 #ifdef __cplusplus
Note: See TracChangeset
for help on using the changeset viewer.