This commit is contained in:
Chris Cannam
2010-03-24 12:35:21 +00:00
parent 87dc720243
commit b9d2bbdf49
2 changed files with 1 additions and 5 deletions

View File

@@ -32,9 +32,6 @@ CompoundAudioCurve::CompoundAudioCurve(Parameters parameters) :
m_lastResult(0.0), m_lastResult(0.0),
m_risingCount(0) m_risingCount(0)
{ {
std::cerr << "CompoundAudioCurve::CompoundAudioCurve: window "
<< parameters.windowSize << ", rate " << parameters.sampleRate
<< std::endl;
} }
CompoundAudioCurve::~CompoundAudioCurve() CompoundAudioCurve::~CompoundAudioCurve()
@@ -46,7 +43,6 @@ CompoundAudioCurve::~CompoundAudioCurve()
void void
CompoundAudioCurve::setType(Type type) CompoundAudioCurve::setType(Type type)
{ {
std::cerr << "CompoundAudioCurve::setType to " << type << std::endl;
m_type = type; m_type = type;
} }

View File

@@ -247,7 +247,7 @@ public:
if (!home) return; if (!home) return;
char fn[256]; char fn[256];
snprintf(fn, 256, "%s/%s.%c", home, ".turbot.wisdom", type); snprintf(fn, 256, "%s/%s.%c", home, ".rubberband.wisdom", type);
FILE *f = fopen(fn, save ? "wb" : "rb"); FILE *f = fopen(fn, save ? "wb" : "rb");
if (!f) return; if (!f) return;