Changes in src/pitch/pitchyinfft.c [c9e3a4e:e391790]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitch/pitchyinfft.c
rc9e3a4e re391790 108 108 smpl_t tmp = 0., sum = 0.; 109 109 // window the input 110 fvec_weighted_copy(input, p->win, p->winput); 110 for (l = 0; l < input->length; l++) { 111 p->winput->data[l] = p->win->data[l] * input->data[l]; 112 } 111 113 // get the real / imag parts of its fft 112 114 aubio_fft_do_complex (p->fft, p->winput, fftout);
Note: See TracChangeset
for help on using the changeset viewer.