X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_ring_buffers.h;h=ba1b2162f952218feccb8ee1c30b9c1d033d7a96;hb=4cb18d1e0b8fdedf6bb38e1d4187a2d782957022;hp=f3e521553168f938448b9a7436fad604b0d1ce59;hpb=f508191f9d794e7762270d19a4211739470cfe0d;p=dcpomatic.git 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 frame, DCPTime time); - std::pair, DCPTime> get (); + void put (boost::shared_ptr frame, dcpomatic::DCPTime time); + std::pair, dcpomatic::DCPTime> get (); void clear (); Frame size () const; @@ -42,5 +42,5 @@ public: private: mutable boost::mutex _mutex; - std::list, DCPTime> > _data; + std::list, dcpomatic::DCPTime> > _data; };