X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_decoder.h;h=dca8eef11482b8a473b800670f270adfc6f42000;hb=0b15f493754d1b630338b17f2a6dfc66ccc4f6b7;hp=62757e3a9356b2e71681aea6ded0afa1aad2b60b;hpb=ddf8e31d94c4f6eb7b336ee7168a6a6499ded515;p=dcpomatic.git diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h index 62757e3a9..dca8eef11 100644 --- a/src/lib/video_decoder.h +++ b/src/lib/video_decoder.h @@ -37,6 +37,7 @@ class VideoContent; class ImageProxy; class Image; class Log; +class FrameIntervalChecker; /** @class VideoDecoder * @brief Parent for classes which decode video. @@ -58,7 +59,6 @@ public: void seek (); void emit (boost::shared_ptr film, boost::shared_ptr, Frame frame); - /** @return true if the emitted data was accepted, false if not */ boost::signals2::signal Data; private: @@ -67,7 +67,7 @@ private: boost::optional _last_emitted_frame; boost::optional _last_emitted_eyes; boost::optional _position; - std::vector _last_threed_frames; + boost::scoped_ptr _frame_interval_checker; }; #endif