From: Paul Brossier Date: Mon, 13 Aug 2018 23:06:18 +0000 (+0200) Subject: src/spectral/dct.h: explicit output names X-Git-Tag: 0.4.7~20^2~7 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=0173e4a9738d34c0293cfb51efc0e6255c8a0194;p=aubio.git src/spectral/dct.h: explicit output names --- diff --git a/src/spectral/dct.h b/src/spectral/dct.h index 1da1a0d5..3bad1747 100644 --- a/src/spectral/dct.h +++ b/src/spectral/dct.h @@ -59,7 +59,7 @@ aubio_dct_t * new_aubio_dct(uint_t size); \param output transformed input array */ -void aubio_dct_do (aubio_dct_t *s, const fvec_t * input, fvec_t * output); +void aubio_dct_do (aubio_dct_t *s, const fvec_t * input, fvec_t * dct_output); /** compute backward DCT @@ -68,7 +68,7 @@ void aubio_dct_do (aubio_dct_t *s, const fvec_t * input, fvec_t * output); \param output transformed input array */ -void aubio_dct_rdo (aubio_dct_t *s, const fvec_t * input, fvec_t * output); +void aubio_dct_rdo (aubio_dct_t *s, const fvec_t * input, fvec_t * idct_output); /** delete DCT object