Mercurial > hg > sonic-annotator
changeset 131:0b431a9c5498
Remove some debug out
author | Chris Cannam |
---|---|
date | Fri, 10 Oct 2014 15:33:45 +0100 |
parents | 65dabaebe604 |
children | 2b357fab3f51 |
files | runner/FeatureExtractionManager.cpp |
diffstat | 1 files changed, 2 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/runner/FeatureExtractionManager.cpp Fri Oct 10 15:24:28 2014 +0100 +++ b/runner/FeatureExtractionManager.cpp Fri Oct 10 15:33:45 2014 +0100 @@ -674,12 +674,12 @@ if (!haveExtents || startFrame + duration > latestEndFrame) { latestEndFrame = startFrame + duration; } - +/* cerr << "startFrame for transform " << startFrame << endl; cerr << "duration for transform " << duration << endl; cerr << "earliestStartFrame becomes " << earliestStartFrame << endl; cerr << "latestEndFrame becomes " << latestEndFrame << endl; - +*/ haveExtents = true; string outputId = transform.getOutput().toStdString(); @@ -799,14 +799,12 @@ ti != pi->second.end(); ++ti) { int startFrame = RealTime::realTime2Frame (ti->first.getStartTime(), m_sampleRate); - cerr << "plugin " << plugin << " transform " << &(ti->first) << " start frame " << startFrame << " my frame " << i << endl; if (i >= startFrame || i + m_blockSize > startFrame) { inRange = true; break; } } if (!inRange) { - cerr << "not in range! plugging on" << endl; continue; }