remove unused member

Note: there is no global state for "the" transport master, since we have several at all times now
This commit is contained in:
Paul Davis 2019-12-27 10:50:56 -07:00
parent c35a28acfe
commit 7b1a875f9c
3 changed files with 0 additions and 3 deletions

View File

@ -1349,7 +1349,6 @@ private:
Running /* lock achieved, master is generating meaningful speed & position */
};
TransportMasterState transport_master_tracking_state;
samplepos_t master_wait_end;
void track_transport_master (float slave_speed, samplepos_t slave_transport_sample);
bool follow_transport_master (pframes_t nframes);

View File

@ -208,7 +208,6 @@ Session::Session (AudioEngine &eng,
, _writable (false)
, _under_nsm_control (false)
, _xrun_count (0)
, transport_master_tracking_state (Stopped)
, master_wait_end (0)
, post_export_sync (false)
, post_export_position (0)

View File

@ -1189,6 +1189,5 @@ Session::follow_transport_master (pframes_t nframes)
void
Session::reset_slave_state ()
{
transport_master_tracking_state = Stopped;
DiskReader::dec_no_disk_output ();
}