diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-04 21:16:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-07 22:48:29 +0100 |
| commit | dd9be86db6cde0afa5da0d1d1ac43b42e05dca26 (patch) | |
| tree | e56a3f82fb9e1c8602f265bea0d0688d8a018644 /src/lib/dcp_video.h | |
| parent | 0d35820cf50d2789752b8776683b26d04642518d (diff) | |
std::shared_ptr
Diffstat (limited to 'src/lib/dcp_video.h')
| -rw-r--r-- | src/lib/dcp_video.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/dcp_video.h b/src/lib/dcp_video.h index aa11d7d3c..5d8b9b720 100644 --- a/src/lib/dcp_video.h +++ b/src/lib/dcp_video.h @@ -42,8 +42,8 @@ class PlayerVideo; class DCPVideo : public boost::noncopyable { public: - DCPVideo (boost::shared_ptr<const PlayerVideo>, int, int, int, Resolution); - DCPVideo (boost::shared_ptr<const PlayerVideo>, cxml::ConstNodePtr); + DCPVideo (std::shared_ptr<const PlayerVideo>, int, int, int, Resolution); + DCPVideo (std::shared_ptr<const PlayerVideo>, cxml::ConstNodePtr); dcp::ArrayData encode_locally (); dcp::ArrayData encode_remotely (EncodeServerDescription, int timeout = 30); @@ -54,15 +54,15 @@ public: Eyes eyes () const; - bool same (boost::shared_ptr<const DCPVideo> other) const; + bool same (std::shared_ptr<const DCPVideo> other) const; - static boost::shared_ptr<dcp::OpenJPEGImage> convert_to_xyz (boost::shared_ptr<const PlayerVideo> frame, dcp::NoteHandler note); + static std::shared_ptr<dcp::OpenJPEGImage> convert_to_xyz (std::shared_ptr<const PlayerVideo> frame, dcp::NoteHandler note); private: void add_metadata (xmlpp::Element *) const; - boost::shared_ptr<const PlayerVideo> _frame; + std::shared_ptr<const PlayerVideo> _frame; int _index; ///< frame index within the DCP's intrinsic duration int _frames_per_second; ///< Frames per second that we will use for the DCP int _j2k_bandwidth; ///< J2K bandwidth to use |
