summaryrefslogtreecommitdiff
path: root/src/beatmapper.cc
diff options
context:
space:
mode:
authordeva <deva>2008-07-25 11:28:49 +0000
committerdeva <deva>2008-07-25 11:28:49 +0000
commita30378b8f8381b26f09b8a91243d659257f6dbd6 (patch)
treea0f6171ac778a62094da01a125bec5997f21583c /src/beatmapper.cc
parentef523065eb5e9535d0bd4b3ede820a231e547930 (diff)
removed debug output.
Diffstat (limited to 'src/beatmapper.cc')
-rw-r--r--src/beatmapper.cc2
1 files changed, 1 insertions, 1 deletions
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];