X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_mxf_decoder.h;h=774e269c6d5da15275e1ccf61259f4ad1f510fa3;hb=4bbcf55dc0e644c20b1eaabee2da3219c4e7635f;hp=3cbdcfb2dffbc5e4316bffc725243ceba76ebc84;hpb=eb135e8dcdf36ae82420bcd18e954ad593b3e9a5;p=dcpomatic.git diff --git a/src/lib/video_mxf_decoder.h b/src/lib/video_mxf_decoder.h index 3cbdcfb2d..774e269c6 100644 --- a/src/lib/video_mxf_decoder.h +++ b/src/lib/video_mxf_decoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2016 Carl Hetherington + Copyright (C) 2016-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,28 +18,31 @@ */ + #include "decoder.h" #include #include + class VideoMXFContent; class Log; + class VideoMXFDecoder : public Decoder { public: - VideoMXFDecoder (boost::shared_ptr, boost::shared_ptr log); + VideoMXFDecoder (std::shared_ptr film, std::shared_ptr); - bool pass (); - void seek (ContentTime t, bool accurate); + bool pass () override; + void seek (dcpomatic::ContentTime t, bool accurate) override; private: - boost::shared_ptr _content; + std::shared_ptr _content; /** Time of next thing to return from pass */ - ContentTime _next; + dcpomatic::ContentTime _next; - boost::shared_ptr _mono_reader; - boost::shared_ptr _stereo_reader; + std::shared_ptr _mono_reader; + std::shared_ptr _stereo_reader; dcp::Size _size; };