From: Paul Brossier Date: Fri, 25 Sep 2009 22:38:19 +0000 (+0200) Subject: src/spectral/fft.h: improve fftw types comments X-Git-Tag: bzr2git~291 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7cec7175dccc294d0d2af071c04ec67f76dccbf0;p=aubio.git src/spectral/fft.h: improve fftw types comments --- diff --git a/src/spectral/fft.h b/src/spectral/fft.h index f067b20b..ae63c1c7 100644 --- a/src/spectral/fft.h +++ b/src/spectral/fft.h @@ -32,16 +32,18 @@ #ifdef HAVE_COMPLEX_H #if HAVE_FFTW3F +/** fft data type with complex.h and fftw3f */ #define FFTW_TYPE fftwf_complex #else +/** fft data type with complex.h and fftw3 */ #define FFTW_TYPE fftw_complex #endif #else #if HAVE_FFTW3F -/** fft data type */ +/** fft data type without complex.h and with fftw3f */ #define FFTW_TYPE float #else -/** fft data type */ +/** fft data type without complex.h and with fftw */ #define FFTW_TYPE double #endif #endif