shithub: aubio

Download patch

ref: 810f975dc2c202476c66e4f5c920caada8c4b69f
parent: 3c5ee41bb71f7999413be79cf2ab8b31ede10657
author: Paul Brossier <piem@piem.org>
date: Fri Aug 22 06:17:46 EDT 2014

examples/: use outmsg to print notes (fixes #8)

--- a/examples/utils.c
+++ b/examples/utils.c
@@ -196,9 +196,9 @@
   } else
 #endif
   if (velo == 0) {
-    verbmsg ("%f\n", blocks * hop_size / (float) samplerate);
+    outmsg ("%f\n", blocks * hop_size / (float) samplerate);
   } else {
-    verbmsg ("%f\t%f\t", mpitch, blocks * hop_size / (float) samplerate);
+    outmsg ("%f\t%f\t", mpitch, blocks * hop_size / (float) samplerate);
   }
 }
 
--