Changeset 0fbbb067


Ignore:
Timestamp:
Sep 15, 2018, 4:54:03 PM (6 years ago)
Author:
Paul Brossier <piem@piem.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
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)
Message:

src/spectral/dct.c: update prototypes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/dct.c

    r95e3cba r0fbbb067  
    4141
    4242#if defined(HAVE_ACCELERATE)
    43 typedef struct _aubio_dct_opt_t aubio_dct_accelerate_t;
     43typedef struct _aubio_dct_accelerate_t aubio_dct_accelerate_t;
    4444extern aubio_dct_accelerate_t * new_aubio_dct_accelerate (uint_t size);
    4545extern void aubio_dct_accelerate_do(aubio_dct_accelerate_t *s, const fvec_t *input, fvec_t *output);
     
    4747extern void del_aubio_dct_accelerate (aubio_dct_accelerate_t *s);
    4848#elif defined(HAVE_FFTW3)
    49 typedef struct _aubio_dct_opt_t aubio_dct_fftw_t;
     49typedef struct _aubio_dct_fftw_t aubio_dct_fftw_t;
    5050extern aubio_dct_fftw_t * new_aubio_dct_fftw (uint_t size);
    5151extern 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.