changeset 50:e64ea86fe781

Remove debug out
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 28 Nov 2013 11:00:33 +0000
parents 0cecb0f8455b
children fe450824850e
files cpp-qm-dsp/ConstantQ.cpp
diffstat 1 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/cpp-qm-dsp/ConstantQ.cpp	Thu Nov 28 10:58:02 2013 +0000
+++ b/cpp-qm-dsp/ConstantQ.cpp	Thu Nov 28 11:00:33 2013 +0000
@@ -292,13 +292,6 @@
     vector<double> ro(m_p.fftSize, 0.0);
     vector<double> io(m_p.fftSize, 0.0);
 
-    cerr << "octave " << octave << " time-domain data, first hop's worth:" << endl;
-    for (int i = 0; i < m_p.fftHop; ++i) {
-	cerr << m_buffers[octave][i] << " ";
-	if (fabs(m_buffers[octave][i]) > 0.01) cerr << "** ";
-    }
-    cerr << endl;
-
     m_fft->forward(m_buffers[octave].data(), ro.data(), io.data());
 
     vector<double> shifted;