From: Paul Brossier Date: Fri, 22 Aug 2014 15:17:46 +0000 (-0500) Subject: examples/: use outmsg to print notes (fixes #8) X-Git-Tag: 0.4.2~75 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=36c302af99a4028f92b327dac4346de2e9d70148;p=aubio.git examples/: use outmsg to print notes (fixes #8) --- diff --git a/examples/utils.c b/examples/utils.c index eba664b9..378cffab 100644 --- a/examples/utils.c +++ b/examples/utils.c @@ -196,9 +196,9 @@ send_noteon (int pitch, int velo) } 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); } }