Changeset 5bf23f7
- Timestamp:
- Oct 7, 2009, 10:34:07 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:
- d0dca26
- Parents:
- a808d05
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/aubiotrack.c
ra808d05 r5bf23f7 42 42 if (pos == overlap_size-1) { 43 43 /* block loop */ 44 aubio_tempo (bt,ibuf,out);44 aubio_tempo_do (bt,ibuf,out); 45 45 if (out->data[0][0]>=1) 46 46 istactus = out->data[0][0]; -
plugins/puredata/aubiotempo~.c
ra808d05 r5bf23f7 44 44 if (x->pos == x->hopsize-1) { 45 45 /* block loop */ 46 aubio_tempo (x->t, x->vec, x->output);46 aubio_tempo_do (x->t, x->vec, x->output); 47 47 if (x->output->data[0][0]) { 48 48 outlet_bang(x->tempobang); -
src/tempo/tempo.c
ra808d05 r5bf23f7 46 46 47 47 /* execute tempo detection function on iput buffer */ 48 void aubio_tempo (aubio_tempo_t *o, fvec_t * input, fvec_t * tempo)48 void aubio_tempo_do(aubio_tempo_t *o, fvec_t * input, fvec_t * tempo) 49 49 { 50 50 uint_t i; -
src/tempo/tempo.h
ra808d05 r5bf23f7 42 42 43 43 /** execute tempo detection */ 44 void aubio_tempo (aubio_tempo_t *o, fvec_t * input, fvec_t * tempo);44 void aubio_tempo_do (aubio_tempo_t *o, fvec_t * input, fvec_t * tempo); 45 45 46 46 /** set tempo detection silence threshold */ -
tests/src/test-tempo.c
ra808d05 r5bf23f7 14 14 15 15 while (i < 1000) { 16 aubio_tempo (o,in,out);16 aubio_tempo_do(o,in,out); 17 17 curtempo = aubio_tempo_get_bpm(o); 18 18 if (curtempo != 0.) {
Note: See TracChangeset
for help on using the changeset viewer.