Changeset 7cec717 for src/spectral/fft.h


Ignore:
Timestamp:
Sep 26, 2009, 12:38:19 AM (15 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, pitchshift, sampler, timestretch, yinfft+
Children:
a250b35
Parents:
9ea88c6
Message:

src/spectral/fft.h: improve fftw types comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/fft.h

    r9ea88c6 r7cec717  
    3333#ifdef HAVE_COMPLEX_H
    3434#if HAVE_FFTW3F
     35/** fft data type with complex.h and fftw3f */
    3536#define FFTW_TYPE fftwf_complex
    3637#else
     38/** fft data type with complex.h and fftw3 */
    3739#define FFTW_TYPE fftw_complex
    3840#endif
    3941#else
    4042#if HAVE_FFTW3F
    41 /** fft data type */
     43/** fft data type without complex.h and with fftw3f */
    4244#define FFTW_TYPE float
    4345#else
    44 /** fft data type */
     46/** fft data type without complex.h and with fftw */
    4547#define FFTW_TYPE double
    4648#endif
Note: See TracChangeset for help on using the changeset viewer.