Changeset 47e067b
- Timestamp:
- Oct 15, 2013, 10:37:14 PM (11 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:
- f69e3bd
- Parents:
- c0fe2a9
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/onset/onset.c
rc0fe2a9 r47e067b 93 93 smpl_t aubio_onset_get_last_ms (aubio_onset_t *o) 94 94 { 95 return aubio_onset_get_last_s (o) /1000.;95 return aubio_onset_get_last_s (o) * 1000.; 96 96 } 97 97 -
src/tempo/tempo.c
rc0fe2a9 r47e067b 113 113 smpl_t aubio_tempo_get_last_ms (aubio_tempo_t *o) 114 114 { 115 return aubio_tempo_get_last_s (o) /1000.;115 return aubio_tempo_get_last_s (o) * 1000.; 116 116 } 117 117
Note: See TracChangeset
for help on using the changeset viewer.