Changes in src/pitch/pitchspecacf.c [40898b4:c21acb9]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitch/pitchspecacf.c
r40898b4 rc21acb9 57 57 aubio_pitchspecacf_do (aubio_pitchspecacf_t * p, fvec_t * input, fvec_t * output) 58 58 { 59 uint_t l ;59 uint_t l, tau; 60 60 fvec_t *fftout = p->fftout; 61 61 // window the input … … 75 75 } 76 76 // get the minimum 77 uint_ttau = fvec_min_elem (p->acf);77 tau = fvec_min_elem (p->acf); 78 78 // get the interpolated minimum 79 79 output->data[0] = fvec_quadratic_peak_pos (p->acf, tau) * 2.;
Note: See TracChangeset
for help on using the changeset viewer.