X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_decoder.h;h=9e56546df952e5a659904b5be064f259c4b62fa8;hb=58f0530b1687673ea6e24a083063c3fdf2bff0b2;hp=2c0028fd1bcfa4ce6c6a8c831452608b89467041;hpb=4e411ea97b4dab8a5fa282d1d4cf7971ef1e24ad;p=dcpomatic.git diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h index 2c0028fd1..9e56546df 100644 --- a/src/lib/video_decoder.h +++ b/src/lib/video_decoder.h @@ -33,6 +33,7 @@ class VideoContent; class ImageProxy; +class Image; /** @class VideoDecoder * @brief Parent for classes which decode video. @@ -53,13 +54,19 @@ public: #endif protected: + friend struct video_decoder_fill_test1; + friend struct video_decoder_fill_test2; void seek (ContentTime time, bool accurate); void video (boost::shared_ptr, VideoFrame frame); std::list decoded_video (VideoFrame frame); + void fill_up_to_2d (VideoFrame); + void fill_up_to_3d (VideoFrame, Eyes); boost::shared_ptr _video_content; std::list _decoded_video; + bool _same; + boost::shared_ptr _black_image; }; #endif