X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fvideo_decoder.h;h=dca8eef11482b8a473b800670f270adfc6f42000;hp=954b8f36591223628df6a25316719d0a50c38852;hb=56caa542a558a3e261a3da4773c9ed3e66e262ab;hpb=98342fb53eae4d32440fc69c279f2ca0fef785b5 diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h index 954b8f365..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,6 +67,7 @@ private: boost::optional _last_emitted_frame; boost::optional _last_emitted_eyes; boost::optional _position; + boost::scoped_ptr _frame_interval_checker; }; #endif