X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_content.h;h=a4968ea8b753937f11260c29c2a0c3edccf3065f;hb=002132b296e7f40a9aca3bb09530895c53bd74ba;hp=ef2bc0447c9262e13357154f5f3c313996bccfb3;hpb=ae9b0b509787d244366eb8f69bdf9d563b6c6bb6;p=dcpomatic.git diff --git a/src/lib/image_content.h b/src/lib/image_content.h index ef2bc0447..a4968ea8b 100644 --- a/src/lib/image_content.h +++ b/src/lib/image_content.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,18 +20,13 @@ #ifndef DCPOMATIC_IMAGE_CONTENT_H #define DCPOMATIC_IMAGE_CONTENT_H -#include #include "video_content.h" -namespace cxml { - class Node; -} - class ImageContent : public VideoContent { public: ImageContent (boost::shared_ptr, boost::filesystem::path); - ImageContent (boost::shared_ptr, boost::shared_ptr, int); + ImageContent (boost::shared_ptr, cxml::ConstNodePtr, int); boost::shared_ptr shared_from_this () { return boost::dynamic_pointer_cast (Content::shared_from_this ()); @@ -44,8 +39,11 @@ public: DCPTime full_length () const; std::string identifier () const; - - void set_video_length (VideoFrame); + + /* VideoContent */ + void set_default_colour_conversion (); + + void set_video_length (Frame); bool still () const; };