X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fvideo_decoder.h;h=24ee7f4e5f1948bcbf6dd897fbb324570bd62199;hp=9e56546df952e5a659904b5be064f259c4b62fa8;hb=2f51e117cbaf36b9e0ccb02c338b316fc8e26b9a;hpb=b4e75d642c809fa38b45a4e54ea1ab7eca16e04f diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h index 9e56546df..24ee7f4e5 100644 --- a/src/lib/video_decoder.h +++ b/src/lib/video_decoder.h @@ -60,13 +60,15 @@ protected: 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); + void fill_2d (VideoFrame from, VideoFrame to); + void fill_3d (VideoFrame from, VideoFrame to, Eyes); boost::shared_ptr _video_content; std::list _decoded_video; bool _same; boost::shared_ptr _black_image; + boost::optional _last_seek_time; + bool _last_seek_accurate; }; #endif