ref: 47e067b8c5d4e822b9df92c97105aeac7097ed8c
parent: c0fe2a97b0421ede6410a79894278d13e47a4f39
author: Paul Brossier <piem@piem.org>
date: Tue Oct 15 18:37:14 EDT 2013
src/tempo/tempo.c, src/onset/onset.c: fix _get_last_ms
--- a/src/onset/onset.c
+++ b/src/onset/onset.c
@@ -92,7 +92,7 @@
smpl_t aubio_onset_get_last_ms (aubio_onset_t *o)
{
- return aubio_onset_get_last_s (o) / 1000.;
+ return aubio_onset_get_last_s (o) * 1000.;
}
uint_t aubio_onset_set_silence(aubio_onset_t * o, smpl_t silence) {
--- a/src/tempo/tempo.c
+++ b/src/tempo/tempo.c
@@ -112,7 +112,7 @@
smpl_t aubio_tempo_get_last_ms (aubio_tempo_t *o)
{
- return aubio_tempo_get_last_s (o) / 1000.;
+ return aubio_tempo_get_last_s (o) * 1000.;
}
uint_t aubio_tempo_set_delay(aubio_tempo_t * o, uint_t delay) {