From c892bc35c8048514a07499871a23eb94cbd101c0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 4 May 2009 20:19:29 +0000 Subject: [PATCH] Shut up. git-svn-id: svn://localhost/ardour2/branches/3.0@5042 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/meter.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libs/ardour/meter.cc b/libs/ardour/meter.cc index ec2a136fb5..30d4d1a1d8 100644 --- a/libs/ardour/meter.cc +++ b/libs/ardour/meter.cc @@ -98,8 +98,6 @@ PeakMeter::reset_max () bool PeakMeter::configure_io (ChanCount in, ChanCount out) { - cerr << "METER CONFIGURE IO " << in << " -> " << out << endl; - /* we're transparent no matter what. fight the power. */ if (out != in) { return false; @@ -107,8 +105,6 @@ PeakMeter::configure_io (ChanCount in, ChanCount out) uint32_t limit = in.n_total(); - cerr << "METER LIMIT " << limit << endl; - while (_peak_power.size() > limit) { _peak_power.pop_back(); _visible_peak_power.pop_back();