summaryrefslogtreecommitdiff
path: root/src/lib/video_ring_buffers.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-05-08 23:41:42 +0100
committerCarl Hetherington <cth@carlh.net>2019-05-10 23:43:55 +0100
commitc4403784febdbdd42e9c32e67fadb147f11fe566 (patch)
treea3c76832e341eedcaed2152c2ebf4dd76325b6b2 /src/lib/video_ring_buffers.h
parent248fe9bd28d93a9e269093b4dfbec5d0ceb49ce1 (diff)
Put Time types in dcpomatic namespace.
Diffstat (limited to 'src/lib/video_ring_buffers.h')
-rw-r--r--src/lib/video_ring_buffers.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/video_ring_buffers.h b/src/lib/video_ring_buffers.h
index f3e521553..ba1b2162f 100644
--- a/src/lib/video_ring_buffers.h
+++ b/src/lib/video_ring_buffers.h
@@ -31,8 +31,8 @@ class PlayerVideo;
class VideoRingBuffers : public boost::noncopyable
{
public:
- void put (boost::shared_ptr<PlayerVideo> frame, DCPTime time);
- std::pair<boost::shared_ptr<PlayerVideo>, DCPTime> get ();
+ void put (boost::shared_ptr<PlayerVideo> frame, dcpomatic::DCPTime time);
+ std::pair<boost::shared_ptr<PlayerVideo>, dcpomatic::DCPTime> get ();
void clear ();
Frame size () const;
@@ -42,5 +42,5 @@ public:
private:
mutable boost::mutex _mutex;
- std::list<std::pair<boost::shared_ptr<PlayerVideo>, DCPTime> > _data;
+ std::list<std::pair<boost::shared_ptr<PlayerVideo>, dcpomatic::DCPTime> > _data;
};