- Timestamp:
- Oct 25, 2007, 4:02:06 AM (17 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:
- 7873363
- Parents:
- 14aebce (diff), 97525e4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- examples/tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/tests/test-beattracking.c
r14aebce rc1656cf 13 13 uint_t i = 0; 14 14 15 smpl_t curtempo ;15 smpl_t curtempo, curtempoconf; 16 16 17 17 while (i < 10) { … … 19 19 curtempo = aubio_beattracking_get_bpm(tempo); 20 20 if (curtempo != 0.) { 21 fprintf(stdout,"%f\n",curtempo); 22 return 1; 23 } 24 curtempoconf = aubio_beattracking_get_confidence(tempo); 25 if (curtempoconf != 0.) { 21 26 fprintf(stdout,"%f\n",curtempo); 22 27 return 1; -
examples/tests/test-tempo.c
r14aebce rc1656cf 10 10 uint_t i = 0; 11 11 12 smpl_t curtempo ;12 smpl_t curtempo, curtempoconf; 13 13 14 14 while (i < 1000) { … … 17 17 if (curtempo != 0.) { 18 18 fprintf(stdout,"%f\n",curtempo); 19 return 1; 20 } 21 curtempoconf = aubio_beattracking_get_confidence(o); 22 if (curtempoconf != 0.) { 23 fprintf(stdout,"%f\n",curtempo); 24 return 1; 19 25 } 20 26 i++;
Note: See TracChangeset
for help on using the changeset viewer.