- Timestamp:
- Sep 15, 2018, 4:54:03 PM (6 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
- Children:
- 8b69453
- Parents:
- 95e3cba
- git-author:
- Paul Brossier <piem@piem.org> (09/15/18 16:41:19)
- git-committer:
- Paul Brossier <piem@piem.org> (09/15/18 16:54:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/dct.c
r95e3cba r0fbbb067 41 41 42 42 #if defined(HAVE_ACCELERATE) 43 typedef struct _aubio_dct_ opt_t aubio_dct_accelerate_t;43 typedef struct _aubio_dct_accelerate_t aubio_dct_accelerate_t; 44 44 extern aubio_dct_accelerate_t * new_aubio_dct_accelerate (uint_t size); 45 45 extern void aubio_dct_accelerate_do(aubio_dct_accelerate_t *s, const fvec_t *input, fvec_t *output); … … 47 47 extern void del_aubio_dct_accelerate (aubio_dct_accelerate_t *s); 48 48 #elif defined(HAVE_FFTW3) 49 typedef struct _aubio_dct_ opt_t aubio_dct_fftw_t;49 typedef struct _aubio_dct_fftw_t aubio_dct_fftw_t; 50 50 extern aubio_dct_fftw_t * new_aubio_dct_fftw (uint_t size); 51 51 extern void aubio_dct_fftw_do(aubio_dct_fftw_t *s, const fvec_t *input, fvec_t *output);
Note: See TracChangeset
for help on using the changeset viewer.