X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_mxf_decoder.h;h=774e269c6d5da15275e1ccf61259f4ad1f510fa3;hb=0330b684fe616b465e65b67f7d995e659fa83fca;hp=6b5b328ac09aebe0956ec705b8bd5ba046df5fde;hpb=254b3044d72de6b033d7c584f5abd2b9aa70aad5;p=dcpomatic.git diff --git a/src/lib/video_mxf_decoder.h b/src/lib/video_mxf_decoder.h index 6b5b328ac..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); + VideoMXFDecoder (std::shared_ptr film, std::shared_ptr); - bool pass (boost::shared_ptr film); - void seek (boost::shared_ptr film, 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; };