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.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h
index c2ba8386e..76a91c525 100644
--- a/src/lib/video_decoder.h
+++ b/src/lib/video_decoder.h
@@ -62,9 +62,10 @@ public:
boost::signals2::signal<void (ContentVideo)> Data;
private:
- /** Time of last thing to be emitted */
boost::shared_ptr<const Content> _content;
- boost::optional<Frame> _last_emitted;
+ /** Frame of last thing to be emitted */
+ boost::optional<Frame> _last_emitted_frame;
+ boost::optional<Eyes> _last_emitted_eyes;
dcpomatic::ContentTime _position;
};