Changeset 8526102


Ignore:
Timestamp:
Sep 27, 2016, 6:26:02 PM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
Children:
b1c0770
Parents:
7d01fdf
Message:

src/spectral/fft.c: add message about fftw3 being able to do non-power of two sizes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/fft.c

    r7d01fdf r8526102  
    189189#else                         // using OOURA
    190190  if (aubio_is_power_of_two(winsize) != 1) {
    191     AUBIO_ERR("fft: can only create with sizes power of two,"
    192               " requested %d\n", winsize);
     191    AUBIO_ERR("fft: can only create with sizes power of two, requested %d,"
     192        " try recompiling aubio with --enable-fftw3\n", winsize);
    193193    goto beach;
    194194  }
Note: See TracChangeset for help on using the changeset viewer.