diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-02-21 23:50:30 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-04-19 23:04:32 +0100 |
| commit | 130577d2e4e67de15ac8f5d6447729736d4bcac6 (patch) | |
| tree | baa5d6cee0ad1ccab254cae5149807e90d64aca2 /src/lib/content_video.h | |
| parent | 45d5a5004a49edabbc96cd1acba12e08d31510f1 (diff) | |
Remove unnecessary VideoFrame class.
Diffstat (limited to 'src/lib/content_video.h')
| -rw-r--r-- | src/lib/content_video.h | 8 |
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; }; |
