13
0
git-svn-id: svn://localhost/ardour2/branches/3.0@5042 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2009-05-04 20:19:29 +00:00
parent 3a6fa245c2
commit c892bc35c8

View File

@ -98,8 +98,6 @@ PeakMeter::reset_max ()
bool bool
PeakMeter::configure_io (ChanCount in, ChanCount out) PeakMeter::configure_io (ChanCount in, ChanCount out)
{ {
cerr << "METER CONFIGURE IO " << in << " -> " << out << endl;
/* we're transparent no matter what. fight the power. */ /* we're transparent no matter what. fight the power. */
if (out != in) { if (out != in) {
return false; return false;
@ -107,8 +105,6 @@ PeakMeter::configure_io (ChanCount in, ChanCount out)
uint32_t limit = in.n_total(); uint32_t limit = in.n_total();
cerr << "METER LIMIT " << limit << endl;
while (_peak_power.size() > limit) { while (_peak_power.size() > limit) {
_peak_power.pop_back(); _peak_power.pop_back();
_visible_peak_power.pop_back(); _visible_peak_power.pop_back();