- Timestamp:
- Oct 15, 2009, 5:09:34 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:
- cd77c15
- Parents:
- 27fa522
- Location:
- plugins/puredata
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/puredata/aubioonset~.c
r27fa522 rb4f5967 88 88 x->hopsize = x->bufsize / 2; 89 89 90 x->o = new_aubio_onsetdetection( aubio_onset_complex, x->bufsize, 1);90 x->o = new_aubio_onsetdetection("complex", x->bufsize, 1); 91 91 x->vec = (fvec_t *)new_fvec(x->hopsize,1); 92 92 x->pv = (aubio_pvoc_t *)new_aubio_pvoc(x->bufsize, x->hopsize, 1); -
plugins/puredata/aubiotempo~.c
r27fa522 rb4f5967 83 83 x->hopsize = x->bufsize / 2; 84 84 85 x->t = new_aubio_tempo ( aubio_onset_complex, x->bufsize, x->hopsize, 1);85 x->t = new_aubio_tempo ("complex", x->bufsize, x->hopsize, 1); 86 86 aubio_tempo_set_silence(x->t,x->silence); 87 87 aubio_tempo_set_threshold(x->t,x->threshold);
Note: See TracChangeset
for help on using the changeset viewer.