X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_decoder.h;h=dca8eef11482b8a473b800670f270adfc6f42000;hb=0b15f493754d1b630338b17f2a6dfc66ccc4f6b7;hp=34ce8f288b009d1669141b9c0314543e5064e2a6;hpb=0e8a1ab7c41756115f44229053e1e7024530fb32;p=dcpomatic.git diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h index 34ce8f288..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,15 +59,15 @@ 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: boost::shared_ptr _content; - /** Frame of last thing to be emitted */ + /** Frame of last thing to be emitted; only used for 3D */ boost::optional _last_emitted_frame; boost::optional _last_emitted_eyes; boost::optional _position; + boost::scoped_ptr _frame_interval_checker; }; #endif