summaryrefslogtreecommitdiff
path: root/src/lib/content_video.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/content_video.h')
-rw-r--r--src/lib/content_video.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/content_video.h b/src/lib/content_video.h
index 8e5f2fd09..ddc03b265 100644
--- a/src/lib/content_video.h
+++ b/src/lib/content_video.h
@@ -21,8 +21,6 @@
#ifndef DCPOMATIC_CONTENT_VIDEO_H
#define DCPOMATIC_CONTENT_VIDEO_H
-#include "video_frame.h"
-
class ImageProxy;
/** @class ContentVideo
@@ -35,14 +33,16 @@ public:
: part (PART_WHOLE)
{}
- ContentVideo (boost::shared_ptr<const ImageProxy> i, VideoFrame f, Part p)
+ ContentVideo (boost::shared_ptr<const ImageProxy> i, Frame f, Eyes e, Part p)
: image (i)
, frame (f)
+ , eyes (e)
, part (p)
{}
boost::shared_ptr<const ImageProxy> image;
- VideoFrame frame;
+ Frame frame;
+ Eyes eyes;
Part part;
};