Mercurial > hg > match-vamp
changeset 5:a02321c31884
...
author | cannam |
---|---|
date | Tue, 02 Dec 2008 13:13:25 +0000 |
parents | ca29b0ef78ce |
children | 80fae79c9472 |
files | MatchFeeder.cpp Matcher.cpp Matcher.h README |
diffstat | 4 files changed, 1 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/MatchFeeder.cpp Tue Dec 02 13:03:44 2008 +0000 +++ b/MatchFeeder.cpp Tue Dec 02 13:13:25 2008 +0000 @@ -27,8 +27,6 @@ MatchFeeder::~MatchFeeder() { - std::cerr << "MatchFeeder(" << this << ")::~MatchFeeder()" << std::endl; - delete[] imBuffer; delete[] reBuffer; while (!q1.empty()) {
--- a/Matcher.cpp Tue Dec 02 13:03:44 2008 +0000 +++ b/Matcher.cpp Tue Dec 02 13:13:25 2008 +0000 @@ -121,8 +121,6 @@ { if (initialised) return; - std::cerr << "Matcher::init() - initialising" << std::endl; - initialised = true; makeFreqMap(fftSize, sampleRate);
--- a/Matcher.h Tue Dec 02 13:03:44 2008 +0000 +++ b/Matcher.h Tue Dec 02 13:13:25 2008 +0000 @@ -254,8 +254,6 @@ protected: template <typename T> void initVector(vector<T> &vec, int sz, T dflt = 0) { - std::cerr << "initVector: " << sz << " * " << sizeof(T) << " = " - << sz * sizeof(T) << std::endl; vec.clear(); while ((int)vec.size() < sz) vec.push_back(dflt); } @@ -263,9 +261,6 @@ template <typename T> void initMatrix(vector<vector<T> > &mat, int hsz, int vsz, T dflt = 0, int fillTo = -1) { - std::cerr << "initMatrix: " << hsz << " * " << vsz << " * " - << sizeof(T) << " = " - << hsz * vsz * sizeof(T) << std::endl; mat.clear(); if (fillTo < 0) fillTo = hsz; for (int i = 0; i < hsz; ++i) {
--- a/README Tue Dec 02 13:03:44 2008 +0000 +++ b/README Tue Dec 02 13:13:25 2008 +0000 @@ -7,7 +7,7 @@ http://www.elec.qmul.ac.uk/people/simond/match/index.html -This plugin is Copyright (c) 2007 Simon Dixon and Chris Cannam, +This plugin is Copyright (c) 2007-2008 Simon Dixon and Chris Cannam, distributed under the GNU General Public License. See the file COPYING for details.