Changeset 714380d for src/mathutils.c


Ignore:
Timestamp:
Jul 13, 2006, 5:01:11 PM (18 years ago)
Author:
Paul Brossier <piem@altern.org>
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
Message:

add aubio_cleanup to clean fftw cached memory
add aubio_cleanup to clean fftw cached memory

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mathutils.c

    rbf8e134 r714380d  
    2323#include "sample.h"
    2424#include "mathutils.h"
     25#include "config.h"
    2526
    2627void aubio_window(smpl_t *w, uint_t size, aubio_window_type wintype) {
     
    454455}
    455456
     457void 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}
Note: See TracChangeset for help on using the changeset viewer.