13
0

cleanup more dangling members of AudioEngine

This commit is contained in:
Paul Davis 2013-08-03 17:49:19 -04:00
parent a64908af7f
commit 333a3c9d02
2 changed files with 0 additions and 7 deletions

View File

@ -212,8 +212,6 @@ public:
gain_t session_removal_gain;
gain_t session_removal_gain_step;
bool _running;
bool _has_run;
std::map<DataType,size_t> _raw_buffer_sizes;
/// number of frames between each check for changes in monitor input
framecnt_t monitor_check_interval;
/// time of the last monitor check in frames
@ -222,8 +220,6 @@ public:
framecnt_t _processed_frames;
bool _freewheeling;
bool _pre_freewheel_mmc_enabled;
int _usecs_per_cycle;
bool port_remove_in_progress;
Glib::Threads::Thread* m_meter_thread;
ProcessThread* _main_thread;

View File

@ -71,8 +71,6 @@ AudioEngine::AudioEngine ()
, _processed_frames (0)
, _freewheeling (false)
, _pre_freewheel_mmc_enabled (false)
, _usecs_per_cycle (0)
, port_remove_in_progress (false)
, m_meter_thread (0)
, _main_thread (0)
{
@ -621,7 +619,6 @@ AudioEngine::start ()
if (_backend->start() == 0) {
_running = true;
_has_run = true;
last_monitor_check = 0;
if (_session && _session->config.get_jack_time_master()) {