examples/aubioonset.c: simplify
authorPaul Brossier <piem@piem.org>
Fri, 15 Mar 2013 22:49:47 +0000 (17:49 -0500)
committerPaul Brossier <piem@piem.org>
Fri, 15 Mar 2013 22:49:47 +0000 (17:49 -0500)
examples/aubioonset.c

index d4d14e5..58db199 100644 (file)
@@ -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) );
   }
 }