Changeset b5d32cb
- Timestamp:
- Sep 5, 2015, 2:00:43 AM (9 years ago)
- 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:
- 39c4721
- Parents:
- 152ed05
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/fft.c
r152ed05 rb5d32cb 231 231 void aubio_fft_do_complex(aubio_fft_t * s, fvec_t * input, fvec_t * compspec) { 232 232 uint_t i; 233 #ifndef HAVE_MEMCPY_HACKS 233 234 for (i=0; i < s->winsize; i++) { 234 235 s->in[i] = input->data[i]; 235 236 } 237 #else 238 memcpy(s->in, input->data, s->winsize * sizeof(smpl_t)); 239 #endif /* HAVE_MEMCPY_HACKS */ 236 240 #ifdef HAVE_FFTW3 // using FFTW3 237 241 fftw_execute(s->pfw);
Note: See TracChangeset
for help on using the changeset viewer.