More player debugging for butler video-full states.
[dcpomatic.git] / src / lib / content_video.h
index ddc03b2655d78f4d1b6ab575c369eb0b96f4640b..8b3d984df9f808db12448ad93e04fa7e1dafdb9d 100644 (file)
@@ -21,6 +21,8 @@
 #ifndef DCPOMATIC_CONTENT_VIDEO_H
 #define DCPOMATIC_CONTENT_VIDEO_H
 
+#include "types.h"
+
 class ImageProxy;
 
 /** @class ContentVideo
@@ -30,7 +32,9 @@ class ContentVideo
 {
 public:
        ContentVideo ()
-               : part (PART_WHOLE)
+               : frame (0)
+               , eyes (EYES_LEFT)
+               , part (PART_WHOLE)
        {}
 
        ContentVideo (boost::shared_ptr<const ImageProxy> i, Frame f, Eyes e, Part p)