summaryrefslogtreecommitdiff
path: root/src/lib/video_decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/video_decoder.h')
-rw-r--r--src/lib/video_decoder.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h
index c8530d82c..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.
@@ -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