From: Paul Brossier Date: Fri, 15 Mar 2013 22:49:47 +0000 (-0500) Subject: examples/aubioonset.c: simplify X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=adc47c9c432e386296db329dddd6a8701462ab9b;p=aubio.git examples/aubioonset.c: simplify --- diff --git a/examples/aubioonset.c b/examples/aubioonset.c index d4d14e5d..58db1997 100644 --- a/examples/aubioonset.c +++ b/examples/aubioonset.c @@ -60,12 +60,7 @@ process_print (void) return; smpl_t onset_found = fvec_read_sample (onset, 0); if (onset_found) { - if (frames >= 4) { - outmsg ("%f\n", (frames - frames_delay + onset_found) - * overlap_size / (float) samplerate); - } else if (frames < frames_delay) { - outmsg ("%f\n", 0.); - } + outmsg ("%f\n", aubio_onset_get_last_onset_s (o) ); } }