From 0fbbb067ad8251e7e1565f90bdbc8ffeb5d02e8b Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 15 Sep 2018 16:41:19 +0200 Subject: [PATCH] src/spectral/dct.c: update prototypes --- src/spectral/dct.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spectral/dct.c b/src/spectral/dct.c index e40fe8be..1920a54c 100644 --- a/src/spectral/dct.c +++ b/src/spectral/dct.c @@ -40,13 +40,13 @@ typedef void (*aubio_dct_rdo_t)(aubio_dct_t * s, const fvec_t * input, fvec_t * typedef void (*del_aubio_dct_t)(aubio_dct_t * s); #if defined(HAVE_ACCELERATE) -typedef struct _aubio_dct_opt_t aubio_dct_accelerate_t; +typedef struct _aubio_dct_accelerate_t aubio_dct_accelerate_t; extern aubio_dct_accelerate_t * new_aubio_dct_accelerate (uint_t size); extern void aubio_dct_accelerate_do(aubio_dct_accelerate_t *s, const fvec_t *input, fvec_t *output); extern void aubio_dct_accelerate_rdo(aubio_dct_accelerate_t *s, const fvec_t *input, fvec_t *output); extern void del_aubio_dct_accelerate (aubio_dct_accelerate_t *s); #elif defined(HAVE_FFTW3) -typedef struct _aubio_dct_opt_t aubio_dct_fftw_t; +typedef struct _aubio_dct_fftw_t aubio_dct_fftw_t; extern aubio_dct_fftw_t * new_aubio_dct_fftw (uint_t size); extern void aubio_dct_fftw_do(aubio_dct_fftw_t *s, const fvec_t *input, fvec_t *output); extern void aubio_dct_fftw_rdo(aubio_dct_fftw_t *s, const fvec_t *input, fvec_t *output); -- 2.11.0