diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-05-08 23:41:42 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-05-10 23:43:55 +0100 |
| commit | c4403784febdbdd42e9c32e67fadb147f11fe566 (patch) | |
| tree | a3c76832e341eedcaed2152c2ebf4dd76325b6b2 /src/lib/audio_ring_buffers.h | |
| parent | 248fe9bd28d93a9e269093b4dfbec5d0ceb49ce1 (diff) | |
Put Time types in dcpomatic namespace.
Diffstat (limited to 'src/lib/audio_ring_buffers.h')
| -rw-r--r-- | src/lib/audio_ring_buffers.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/audio_ring_buffers.h b/src/lib/audio_ring_buffers.h index 8d830ecf7..bfaad5ec9 100644 --- a/src/lib/audio_ring_buffers.h +++ b/src/lib/audio_ring_buffers.h @@ -33,16 +33,16 @@ class AudioRingBuffers : public boost::noncopyable public: AudioRingBuffers (); - void put (boost::shared_ptr<const AudioBuffers> data, DCPTime time, int frame_rate); - boost::optional<DCPTime> get (float* out, int channels, int frames); - boost::optional<DCPTime> peek () const; + void put (boost::shared_ptr<const AudioBuffers> data, dcpomatic::DCPTime time, int frame_rate); + boost::optional<dcpomatic::DCPTime> get (float* out, int channels, int frames); + boost::optional<dcpomatic::DCPTime> peek () const; void clear (); Frame size () const; private: mutable boost::mutex _mutex; - std::list<std::pair<boost::shared_ptr<const AudioBuffers>, DCPTime> > _buffers; + std::list<std::pair<boost::shared_ptr<const AudioBuffers>, dcpomatic::DCPTime> > _buffers; int _used_in_head; }; |
