std::shared_ptr
[dcpomatic.git] / src / lib / dcp_decoder.h
index 496d95740d63cf26e9c74024dd43f506416cbf7b..553f05aedc433610b4c41f189a728c7cc5f65fdf 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2020 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -22,6 +22,7 @@
  *  @brief A decoder of existing DCPs.
  */
 
+#include "atmos_metadata.h"
 #include "decoder.h"
 #include "dcp.h"
 #include <dcp/mono_picture_asset_reader.h>
@@ -41,14 +42,14 @@ class DCPDecoder : public DCP, public Decoder
 {
 public:
        DCPDecoder (
-               boost::shared_ptr<const Film> film,
-               boost::shared_ptr<const DCPContent>,
+               std::shared_ptr<const Film> film,
+               std::shared_ptr<const DCPContent>,
                bool fast,
                bool tolerant,
-               boost::shared_ptr<DCPDecoder> old
+               std::shared_ptr<DCPDecoder> old
                );
 
-       std::list<boost::shared_ptr<dcp::Reel> > reels () const {
+       std::list<std::shared_ptr<dcp::Reel> > reels () const {
                return _reels;
        }
 
@@ -58,10 +59,14 @@ public:
        bool pass ();
        void seek (dcpomatic::ContentTime t, bool accurate);
 
+       std::vector<dcpomatic::FontData> fonts () const;
+
        std::string lazy_digest () const {
                return _lazy_digest;
        }
 
+       dcpomatic::ContentTime position () const;
+
 private:
        friend struct dcp_subtitle_within_dcp_test;
 
@@ -70,27 +75,29 @@ private:
        void pass_texts (dcpomatic::ContentTime next, dcp::Size size);
        void pass_texts (
                dcpomatic::ContentTime next,
-               boost::shared_ptr<dcp::SubtitleAsset> asset,
+               std::shared_ptr<dcp::SubtitleAsset> asset,
                bool reference,
                int64_t entry_point,
-               boost::shared_ptr<TextDecoder> decoder,
+               std::shared_ptr<TextDecoder> decoder,
                dcp::Size size
                );
-       std::string calculate_lazy_digest (boost::shared_ptr<const DCPContent>) const;
+       std::string calculate_lazy_digest (std::shared_ptr<const DCPContent>) const;
 
        /** Time of next thing to return from pass relative to the start of _reel */
        dcpomatic::ContentTime _next;
-       std::list<boost::shared_ptr<dcp::Reel> > _reels;
+       std::list<std::shared_ptr<dcp::Reel> > _reels;
 
-       std::list<boost::shared_ptr<dcp::Reel> >::iterator _reel;
+       std::list<std::shared_ptr<dcp::Reel> >::iterator _reel;
        /** Offset of _reel from the start of the content in frames */
        int64_t _offset;
        /** Reader for current mono picture asset, if applicable */
-       boost::shared_ptr<dcp::MonoPictureAssetReader> _mono_reader;
+       std::shared_ptr<dcp::MonoPictureAssetReader> _mono_reader;
        /** Reader for current stereo picture asset, if applicable */
-       boost::shared_ptr<dcp::StereoPictureAssetReader> _stereo_reader;
+       std::shared_ptr<dcp::StereoPictureAssetReader> _stereo_reader;
        /** Reader for current sound asset, if applicable */
-       boost::shared_ptr<dcp::SoundAssetReader> _sound_reader;
+       std::shared_ptr<dcp::SoundAssetReader> _sound_reader;
+       std::shared_ptr<dcp::AtmosAssetReader> _atmos_reader;
+       boost::optional<AtmosMetadata> _atmos_metadata;
 
        bool _decode_referenced;
        boost::optional<int> _forced_reduction;