Remove unused mechanism

This commit is contained in:
Robin Gareus 2017-09-28 06:12:31 +02:00
parent 519576c31f
commit a6cc58d757
2 changed files with 0 additions and 13 deletions

View File

@ -72,7 +72,6 @@ class LIBARDOUR_API Track : public Route, public Recordable
bool can_record();
void update_latency_information ();
enum FreezeState {
NoFreeze,
Frozen,

View File

@ -578,18 +578,6 @@ Track::last_capture_sources ()
return _disk_writer->last_capture_sources ();
}
void
Track::update_latency_information ()
{
Glib::Threads::RWLock::ReaderLock lr (_processor_lock);
samplecnt_t chain_latency = _input->latency ();
for (ProcessorList::iterator p = _processors.begin(); p != _processors.end(); ++p) {
(*p)->set_input_latency (chain_latency);
chain_latency += (*p)->signal_latency ();
}
}
std::string
Track::steal_write_source_name()
{