From a30378b8f8381b26f09b8a91243d659257f6dbd6 Mon Sep 17 00:00:00 2001 From: deva Date: Fri, 25 Jul 2008 11:28:49 +0000 Subject: removed debug output. --- src/beatmapper.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/beatmapper.cc') diff --git a/src/beatmapper.cc b/src/beatmapper.cc index 6a7e35a..e0a6aaf 100644 --- a/src/beatmapper.cc +++ b/src/beatmapper.cc @@ -52,7 +52,7 @@ Sample *BeatMapper::map(jack_nframes_t nframes) float E = 0.0; for(size_t i = 0; i < HISTORY_SIZE; i++) E += hist[i] / (float)HISTORY_SIZE; - printf("last: %d, E: %f, e: %f - threshold: %f\n", last, E, e, 1.3 * E); + // printf("last: %d, E: %f, e: %f - threshold: %f\n", last, E, e, 1.3 * E); // Shift history and save new value for(size_t i = 0; i < HISTORY_SIZE - 1; i++) hist[i] = hist[i+1]; -- cgit v1.2.3