X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcontent_video.h;h=4c0bdb655d7ea222bef72e6d2b454e725d72ffd7;hb=a112eeb4d052b1212f94e95efd83a215213da691;hp=20b5b8dec310a066eeb17e8c4a273ec32a826f2e;hpb=7f2e74604a51b984e4c8cbb5d5f4bb642677ec00;p=dcpomatic.git diff --git a/src/lib/content_video.h b/src/lib/content_video.h index 20b5b8dec..4c0bdb655 100644 --- a/src/lib/content_video.h +++ b/src/lib/content_video.h @@ -20,7 +20,7 @@ #ifndef DCPOMATIC_CONTENT_VIDEO_H #define DCPOMATIC_CONTENT_VIDEO_H -class Image; +class ImageProxy; /** @class ContentVideo * @brief A frame of video straight out of some content. @@ -30,16 +30,19 @@ class ContentVideo public: ContentVideo () : eyes (EYES_BOTH) + , part (PART_WHOLE) {} - ContentVideo (boost::shared_ptr i, Eyes e, VideoFrame f) + ContentVideo (boost::shared_ptr i, Eyes e, Part p, VideoFrame f) : image (i) , eyes (e) + , part (p) , frame (f) {} - boost::shared_ptr image; + boost::shared_ptr image; Eyes eyes; + Part part; VideoFrame frame; };