diff options
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 |
