Changeset f61c88a for src/spectral


Ignore:
Timestamp:
Jul 10, 2012, 4:53:56 AM (12 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:
46ba93b
Parents:
bb7a42a
Message:

src/spectral/fft.c: fix in and out sizes for ooura

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/fft.c

    rbb7a42a rf61c88a  
    134134  s->fft_size = winsize / 2 + 1;
    135135  s->compspec = new_fvec(winsize);
    136   s->in    = AUBIO_ARRAY(double, s->fft_size);
    137   s->out   = AUBIO_ARRAY(double, s->fft_size);
     136  s->in    = AUBIO_ARRAY(double, s->winsize);
     137  s->out   = AUBIO_ARRAY(double, s->winsize);
    138138  s->ip    = AUBIO_ARRAY(int   , s->fft_size);
    139139  s->w     = AUBIO_ARRAY(double, s->fft_size);
Note: See TracChangeset for help on using the changeset viewer.