X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_decoder.h;h=d575f9021f3e019add9753ac05c3e1b0c703222b;hb=fb2f4b49cf0d003491ec21460051c01187c211fe;hp=140032317f9fb331147c31ede4e4a998f73607e2;hpb=eb135e8dcdf36ae82420bcd18e954ad593b3e9a5;p=dcpomatic.git diff --git a/src/lib/image_decoder.h b/src/lib/image_decoder.h index 140032317..d575f9021 100644 --- a/src/lib/image_decoder.h +++ b/src/lib/image_decoder.h @@ -27,18 +27,18 @@ class ImageProxy; class ImageDecoder : public Decoder { public: - ImageDecoder (boost::shared_ptr c, boost::shared_ptr log); + ImageDecoder (std::shared_ptr film, std::shared_ptr c); - boost::shared_ptr content () { + std::shared_ptr content () { return _image_content; } bool pass (); - void seek (ContentTime, bool); + void seek (dcpomatic::ContentTime, bool); private: - boost::shared_ptr _image_content; - boost::shared_ptr _image; + std::shared_ptr _image_content; + std::shared_ptr _image; Frame _frame_video_position; };