Changeset fd6b90f


Ignore:
Timestamp:
Sep 28, 2009, 9:17:53 PM (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:
d37400c
Parents:
d2d862b
Message:

src/spectral/fft.c: add a warning if using fftw3 with aubio single

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/fft.c

    rd2d862b rfd6b90f  
    3838#if HAVE_AUBIO_DOUBLE
    3939#warning "Using aubio in double precision with fftw3 in single precision"
    40 #endif
     40#endif /* HAVE_AUBIO_DOUBLE */
    4141#define real_t float
    42 #else
     42#else /* HAVE_FFTW3F */
     43#if !HAVE_AUBIO_DOUBLE
     44#warning "Using aubio in single precision with fftw3 in double precision"
     45#endif /* HAVE_AUBIO_DOUBLE */
    4346#define real_t double
    44 #endif
     47#endif /* HAVE_FFTW3F */
    4548
    4649struct _aubio_fft_t {
Note: See TracChangeset for help on using the changeset viewer.