Changeset 1b57274


Ignore:
Timestamp:
Sep 28, 2016, 1:53:46 AM (7 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:
0cf2b44, 68586d4
Parents:
f50c9503
git-author:
Paul Brossier <piem@piem.org> (09/27/16 18:26:02)
git-committer:
Paul Brossier <piem@piem.org> (09/28/16 01:53:46)
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

    rf50c9503 r1b57274  
    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.