diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-05-22 00:00:55 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-05-22 00:00:55 +0100 |
| commit | 2b1f8bb12adc35dcd7f352885cb0f9a80b04093e (patch) | |
| tree | c7676e2c8905a8834b527514aa605ed0da219ee3 /src/lib/audio_ring_buffers.cc | |
| parent | 88eb173f022062b337dc5d1681a1917c5893dc95 (diff) | |
Remove some unused code.
Diffstat (limited to 'src/lib/audio_ring_buffers.cc')
| -rw-r--r-- | src/lib/audio_ring_buffers.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/audio_ring_buffers.cc b/src/lib/audio_ring_buffers.cc index 4471f6cda..59f06a7c0 100644 --- a/src/lib/audio_ring_buffers.cc +++ b/src/lib/audio_ring_buffers.cc @@ -34,7 +34,7 @@ AudioRingBuffers::AudioRingBuffers () } void -AudioRingBuffers::put (shared_ptr<const AudioBuffers> data, DCPTime time) +AudioRingBuffers::put (shared_ptr<const AudioBuffers> data) { boost::mutex::scoped_lock lm (_mutex); @@ -43,7 +43,6 @@ AudioRingBuffers::put (shared_ptr<const AudioBuffers> data, DCPTime time) } _buffers.push_back (data); - _latest = time; } void @@ -91,7 +90,6 @@ AudioRingBuffers::clear () boost::mutex::scoped_lock lm (_mutex); _buffers.clear (); _used_in_head = 0; - _latest = DCPTime (); } Frame |
