X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fio.cc;h=87c03c6b70fafe56440cc694af29a188dcc697ea;hb=481f7c39655afec832ac10430dd61a3bb464aa58;hp=fa30463bd465cac887d38b23cb1266b4016e5fd1;hpb=9fdc36bac5fa1c004751c0dd42f9ff62b9d60814;p=ardour.git diff --git a/libs/ardour/io.cc b/libs/ardour/io.cc index fa30463bd4..87c03c6b70 100644 --- a/libs/ardour/io.cc +++ b/libs/ardour/io.cc @@ -55,7 +55,8 @@ extern "C" int isinf (double); using namespace std; using namespace ARDOUR; -//using namespace sigc; +using namespace PBD; + static float current_automation_version_number = 1.0; @@ -2443,12 +2444,6 @@ IO::state_factory (std::string why) const return state; } -void -IO::send_state_changed () -{ - return; -} - /** Update the peak meters. @@ -2493,7 +2488,7 @@ IO::meter () } else { // do falloff new_peak = _visible_peak_power[n] - _session.meter_falloff(); - _visible_peak_power[n] = max (new_peak, -200.0f); + _visible_peak_power[n] = max (new_peak, -INFINITY); } } }