X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcontent_video.h;h=2c996f816650de6651463c3b33887d765b880aa9;hb=a9936a35fbae63311b1132e6283bf28db1d8c233;hp=a7f73597c866495b0df60a2f3036bd8066d0f1f0;hpb=8d58a7c5f4320ad5c111e336c45e44d6b51ab509;p=dcpomatic.git diff --git a/src/lib/content_video.h b/src/lib/content_video.h index a7f73597c..2c996f816 100644 --- a/src/lib/content_video.h +++ b/src/lib/content_video.h @@ -30,19 +30,21 @@ class ContentVideo public: ContentVideo () : eyes (EYES_BOTH) + , part (PART_WHOLE) + , frame (0) {} - ContentVideo (boost::shared_ptr i, Eyes e, Part p, VideoFrame f) + ContentVideo (boost::shared_ptr i, Eyes e, Part p, Frame f) : image (i) , eyes (e) , part (p) , frame (f) {} - + boost::shared_ptr image; Eyes eyes; Part part; - VideoFrame frame; + Frame frame; }; #endif