X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcontent_video.h;h=a7f73597c866495b0df60a2f3036bd8066d0f1f0;hb=818d31f39863a6acda6d0f37c657ba85339500b1;hp=20b5b8dec310a066eeb17e8c4a273ec32a826f2e;hpb=1dcfb3a26085ebb3703f40e2f51e43ce3d98be50;p=dcpomatic.git diff --git a/src/lib/content_video.h b/src/lib/content_video.h index 20b5b8dec..a7f73597c 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. @@ -32,14 +32,16 @@ public: : eyes (EYES_BOTH) {} - 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; };