diff options
Diffstat (limited to 'src/lib/video_decoder.h')
| -rw-r--r-- | src/lib/video_decoder.h | 6 |
1 files changed, 4 insertions, 2 deletions
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<const ImageProxy>, VideoFrame frame); std::list<ContentVideo> 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<const VideoContent> _video_content; std::list<ContentVideo> _decoded_video; bool _same; boost::shared_ptr<Image> _black_image; + boost::optional<ContentTime> _last_seek_time; + bool _last_seek_accurate; }; #endif |
