Christie FTP contains certificate chains, not just leaf certificates.
[dcpomatic.git] / src / lib / video_decoder.h
index 820783b2e16d35120fdbfec952ad93aa1e41a24a..18be80ba60528b85811bbb5aef67e6148972dac2 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,6 +67,7 @@ private:
        boost::optional<Frame> _last_emitted_frame;
        boost::optional<Eyes> _last_emitted_eyes;
        boost::optional<ContentTime> _position;
+       boost::scoped_ptr<FrameIntervalChecker> _frame_interval_checker;
 };
 
 #endif