- Timestamp:
- Oct 7, 2009, 10:58:25 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:
- 0ce97483
- Parents:
- cb158ab
- Location:
- src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/onset/onset.c
rcb158ab r01b8fcc 46 46 uint_t wasonset = o->wasonset; 47 47 aubio_pvoc_do (o->pv,input, o->fftgrain); 48 aubio_onsetdetection (o->od,o->fftgrain, o->of);48 aubio_onsetdetection_do (o->od,o->fftgrain, o->of); 49 49 /*if (usedoubled) { 50 aubio_onsetdetection (o2,fftgrain, onset2);50 aubio_onsetdetection_do (o2,fftgrain, onset2); 51 51 onset->data[0][0] *= onset2->data[0][0]; 52 52 }*/ -
src/onset/onsetdetection.c
rcb158ab r01b8fcc 296 296 /* Generic function pointing to the choosen one */ 297 297 void 298 aubio_onsetdetection (aubio_onsetdetection_t *o, cvec_t * fftgrain,298 aubio_onsetdetection_do (aubio_onsetdetection_t *o, cvec_t * fftgrain, 299 299 fvec_t * onset) { 300 300 o->funcpointer(o,fftgrain,onset); -
src/onset/onsetdetection.h
rcb158ab r01b8fcc 62 62 63 63 */ 64 void aubio_onsetdetection (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset);64 void aubio_onsetdetection_do (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); 65 65 /** creation of an onset detection object 66 66 -
src/tempo/tempo.c
rcb158ab r01b8fcc 52 52 uint_t step = o->step; 53 53 aubio_pvoc_do (o->pv, input, o->fftgrain); 54 aubio_onsetdetection (o->od, o->fftgrain, o->of);54 aubio_onsetdetection_do (o->od, o->fftgrain, o->of); 55 55 /*if (usedoubled) { 56 aubio_onsetdetection (o2,fftgrain, onset2);56 aubio_onsetdetection_do(o2,fftgrain, onset2); 57 57 onset->data[0][0] *= onset2->data[0][0]; 58 58 }*/
Note: See TracChangeset
for help on using the changeset viewer.