Extract common code out into kdm_for_screen()
[dcpomatic.git] / src / lib / video_decoder.h
index c8530d82caa850429536e0bd0859396f198c7e4c..dca8eef11482b8a473b800670f270adfc6f42000 100644 (file)
@@ -37,6 +37,7 @@ class VideoContent;
 class ImageProxy;
 class Image;
 class Log;
+class FrameIntervalChecker;
 
 /** @class VideoDecoder
  *  @brief Parent for classes which decode video.
@@ -66,7 +67,7 @@ private:
        boost::optional<Frame> _last_emitted_frame;
        boost::optional<Eyes> _last_emitted_eyes;
        boost::optional<dcpomatic::ContentTime> _position;
-       std::vector<Frame> _last_threed_frames;
+       boost::scoped_ptr<FrameIntervalChecker> _frame_interval_checker;
 };
 
 #endif