Updated cs_CZ translation from Tomáš Begeni.
[dcpomatic.git] / src / lib / video_mxf_decoder.h
index 330d59ed858742a7c2d2785af1ca28e935dd345f..774e269c6d5da15275e1ccf61259f4ad1f510fa3 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2016-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "decoder.h"
 #include <dcp/mono_picture_asset_reader.h>
 #include <dcp/stereo_picture_asset_reader.h>
 
+
 class VideoMXFContent;
 class Log;
 
+
 class VideoMXFDecoder : public Decoder
 {
 public:
-       VideoMXFDecoder (boost::shared_ptr<const VideoMXFContent>, boost::shared_ptr<Log> log);
+       VideoMXFDecoder (std::shared_ptr<const Film> film, std::shared_ptr<const VideoMXFContent>);
+
+       bool pass () override;
+       void seek (dcpomatic::ContentTime t, bool accurate) override;
 
 private:
-       bool pass (PassReason, bool accurate);
-       void seek (ContentTime t, bool accurate);
 
-       boost::shared_ptr<const VideoMXFContent> _content;
+       std::shared_ptr<const VideoMXFContent> _content;
        /** Time of next thing to return from pass */
-       ContentTime _next;
+       dcpomatic::ContentTime _next;
 
-       boost::shared_ptr<dcp::MonoPictureAssetReader> _mono_reader;
-       boost::shared_ptr<dcp::StereoPictureAssetReader> _stereo_reader;
+       std::shared_ptr<dcp::MonoPictureAssetReader> _mono_reader;
+       std::shared_ptr<dcp::StereoPictureAssetReader> _stereo_reader;
        dcp::Size _size;
 };