summaryrefslogtreecommitdiff
path: root/src/lib/video_decoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-02-19 17:23:21 +0100
committerCarl Hetherington <cth@carlh.net>2020-02-19 17:23:21 +0100
commit1679c3dc40262733f46dda9f4151367bf93f2b76 (patch)
treeda329b5d85b67a1669a5e1b7c74d725c4dc8809c /src/lib/video_decoder.h
parent588a3899fd6069f18b6e9f3d5ec62f2e938e034d (diff)
Nicer fix for 2D-labelled-3D checking from master.
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