summaryrefslogtreecommitdiff
path: root/src/lib/video_decoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-02-19 20:13:53 +0100
committerCarl Hetherington <cth@carlh.net>2020-02-19 20:13:53 +0100
commit0b15f493754d1b630338b17f2a6dfc66ccc4f6b7 (patch)
treee241af5b39696e7b2b7e46344b604efc7e959a2b /src/lib/video_decoder.h
parent61efbb1cfe73c2a41896e60a8a335457e30674d1 (diff)
parent1679c3dc40262733f46dda9f4151367bf93f2b76 (diff)
Merge branch 'v2.15.x' of ssh://git.carlh.net/home/carl/git/dcpomatic into v2.15.x
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