From: Paul Brossier Date: Wed, 13 Nov 2013 12:27:57 +0000 (+0100) Subject: tests/src/tempo/test-beattracking.c: print bpm X-Git-Tag: 0.4.0-beta1~95 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=988345f8275ddf91d02daef58b175f63004de716;p=aubio.git tests/src/tempo/test-beattracking.c: print bpm --- diff --git a/tests/src/tempo/test-beattracking.c b/tests/src/tempo/test-beattracking.c index d72756ea..92550907 100644 --- a/tests/src/tempo/test-beattracking.c +++ b/tests/src/tempo/test-beattracking.c @@ -1,6 +1,7 @@ #define AUBIO_UNSTABLE 1 #include +#include int main () { @@ -24,6 +25,7 @@ int main () // get bpm and confidence bpm = aubio_beattracking_get_bpm(tempo); + fprintf(stderr, "found bpm %f\n", bpm); confidence = aubio_beattracking_get_confidence(tempo); i++; };