13
0

libardour: initialize some uninitialized vars..

This commit is contained in:
Robin Gareus 2015-09-06 21:55:12 +02:00
parent fc079a0ea3
commit 1e404da10d
2 changed files with 2 additions and 0 deletions

View File

@ -46,6 +46,7 @@ PeakMeter::PeakMeter (Session& s, const std::string& name)
_meter_type = MeterPeak;
_reset_dpm = true;
_reset_max = true;
_bufcnt = 0;
}
PeakMeter::~PeakMeter ()

View File

@ -88,6 +88,7 @@ Route::Route (Session& sess, string name, Flag flg, DataType default_type)
, _initial_delay (0)
, _roll_delay (0)
, _pending_process_reorder (0)
, _pending_signals (0)
, _flags (flg)
, _pending_declick (true)
, _meter_point (MeterPostFader)