diff options
Diffstat (limited to 'src/lib/video_mxf_decoder.h')
| -rw-r--r-- | src/lib/video_mxf_decoder.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/video_mxf_decoder.h b/src/lib/video_mxf_decoder.h index 78313df0f..ae5d2fb78 100644 --- a/src/lib/video_mxf_decoder.h +++ b/src/lib/video_mxf_decoder.h @@ -28,18 +28,18 @@ class Log; class VideoMXFDecoder : public Decoder { public: - VideoMXFDecoder (boost::shared_ptr<const Film> film, boost::shared_ptr<const VideoMXFContent>); + VideoMXFDecoder (std::shared_ptr<const Film> film, std::shared_ptr<const VideoMXFContent>); bool pass (); void seek (dcpomatic::ContentTime t, bool accurate); private: - boost::shared_ptr<const VideoMXFContent> _content; + std::shared_ptr<const VideoMXFContent> _content; /** Time of next thing to return from pass */ 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; }; |
