diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-02-19 16:02:24 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-02-19 16:02:27 +0000 |
| commit | 3443fdbc38f56f4c83776d000f6aa61d00305cc8 (patch) | |
| tree | e1e2d16512e7bd3b684c49213e3447f7e2f66afe /src/lib/video_decoder.h | |
| parent | aac56f99cc6b649e75e0466d1ef1baf4f3937fff (diff) | |
New way of checking for 2D content mislabelled as 3D (#1565).
Required because of the change to the way video frame timing
is done.
Diffstat (limited to 'src/lib/video_decoder.h')
| -rw-r--r-- | src/lib/video_decoder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h index 820783b2e..18be80ba6 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,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 |
