Changeset 1294862 for src/pitch/pitchdetection.c
- Timestamp:
- Oct 7, 2009, 7:33:51 PM (15 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:
- e5e693e
- Parents:
- 1b88289
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitch/pitchdetection.c
r1b88289 r1294862 196 196 } 197 197 198 smpl_t aubio_pitchdetection (aubio_pitchdetection_t *p, fvec_t * ibuf) {198 smpl_t aubio_pitchdetection_do (aubio_pitchdetection_t *p, fvec_t * ibuf) { 199 199 return p->freqconv(p->callback(p,ibuf),p->srate,p->bufsize); 200 200 } … … 204 204 aubio_filter_do(p->filter,ibuf); 205 205 aubio_pvoc_do(p->pv,ibuf,p->fftgrain); 206 pitch = aubio_pitchmcomb_d etect(p->mcomb,p->fftgrain);206 pitch = aubio_pitchmcomb_do(p->mcomb,p->fftgrain); 207 207 /** \bug should move the >0 check within aubio_bintofreq */ 208 208 if (pitch>0.) { … … 230 230 smpl_t pitch = 0.; 231 231 aubio_pitchdetection_slideblock(p,ibuf); 232 pitch = aubio_pitchyinfft_d etect(p->yinfft,p->buf,p->yinthres);232 pitch = aubio_pitchyinfft_do(p->yinfft,p->buf,p->yinthres); 233 233 if (pitch>0) { 234 234 pitch = p->srate/(pitch+0.); … … 241 241 smpl_t aubio_pitchdetection_fcomb(aubio_pitchdetection_t *p, fvec_t *ibuf){ 242 242 aubio_pitchdetection_slideblock(p,ibuf); 243 return aubio_pitchfcomb_d etect(p->fcomb,p->buf);243 return aubio_pitchfcomb_do(p->fcomb,p->buf); 244 244 } 245 245 246 246 smpl_t aubio_pitchdetection_schmitt(aubio_pitchdetection_t *p, fvec_t *ibuf){ 247 247 aubio_pitchdetection_slideblock(p,ibuf); 248 return aubio_pitchschmitt_d etect(p->schmitt,p->buf);249 } 248 return aubio_pitchschmitt_do(p->schmitt,p->buf); 249 }
Note: See TracChangeset
for help on using the changeset viewer.