13
0

remove unusued roll_delay member of DiskReader

This commit is contained in:
Paul Davis 2017-09-19 09:45:30 -04:00
parent 21aa2f529f
commit e44ae422eb
2 changed files with 0 additions and 14 deletions

View File

@ -52,9 +52,6 @@ class LIBARDOUR_API DiskReader : public DiskIOProcessor
int overwrite_existing_buffers ();
void set_pending_overwrite (bool yn);
samplecnt_t roll_delay() const { return _roll_delay; }
void set_roll_delay (samplecnt_t);
virtual XMLNode& state (bool full);
int set_state (const XMLNode&, int version);
@ -114,10 +111,6 @@ class LIBARDOUR_API DiskReader : public DiskIOProcessor
void playlist_ranges_moved (std::list< Evoral::RangeMove<samplepos_t> > const &, bool);
private:
/** The number of samples by which this diskstream's output should be delayed
with respect to the transport sample. This is used for latency compensation.
*/
samplecnt_t _roll_delay;
samplepos_t overwrite_sample;
off_t overwrite_offset;
bool _pending_overwrite;

View File

@ -49,7 +49,6 @@ bool DiskReader::_no_disk_output = false;
DiskReader::DiskReader (Session& s, string const & str, DiskIOProcessor::Flag f)
: DiskIOProcessor (s, str, f)
, _roll_delay (0)
, overwrite_sample (0)
, overwrite_offset (0)
, _pending_overwrite (false)
@ -126,12 +125,6 @@ DiskReader::set_name (string const & str)
return true;
}
void
DiskReader::set_roll_delay (ARDOUR::samplecnt_t nframes)
{
_roll_delay = nframes;
}
XMLNode&
DiskReader::state (bool full)
{