Give an error if 2D content is set to 3D (#1565). Also run
[dcpomatic.git] / src / lib / video_decoder.h
index 0fc7ca5a404832a34ba5daadcd567611a5eaa277..ed56feea05284ccc785e74ba1167b2049cf6322f 100644 (file)
@@ -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;
        ContentTime _position;
 };