X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_content.h;h=b93744053b1e9ff42383880ad757816bdbae5d8a;hb=36774ee2b48f0bfde43b743592e5816ff58bb7d2;hp=f7689763ff363216486ae6d567a2174bba64614d;hpb=ee1ff372a27202a0244f48a04c955dbb48644573;p=dcpomatic.git diff --git a/src/lib/video_content.h b/src/lib/video_content.h index f7689763f..b93744053 100644 --- a/src/lib/video_content.h +++ b/src/lib/video_content.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2014 Carl Hetherington + Copyright (C) 2013-2016 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,12 +20,16 @@ #ifndef DCPOMATIC_VIDEO_CONTENT_H #define DCPOMATIC_VIDEO_CONTENT_H -#include "content.h" #include "colour_conversion.h" #include "video_content_scale.h" +#include "dcpomatic_time.h" +#include "user_property.h" +#include +#include class VideoExaminer; class Ratio; +class Film; class VideoContentProperty { @@ -40,20 +44,18 @@ public: static int const VIDEO_FADE_OUT; }; -class VideoContent : public virtual Content +class VideoContent { public: VideoContent (boost::shared_ptr); - VideoContent (boost::shared_ptr, DCPTime, Frame); - VideoContent (boost::shared_ptr, boost::filesystem::path); VideoContent (boost::shared_ptr, cxml::ConstNodePtr, int); VideoContent (boost::shared_ptr, std::vector >); void as_xml (xmlpp::Node *) const; std::string technical_summary () const; - virtual std::string identifier () const; + std::string identifier () const; - virtual void set_default_colour_conversion (); + void set_default_colour_conversion (); Frame video_length () const { boost::mutex::scoped_lock lm (_mutex); @@ -74,9 +76,14 @@ public: return _video_size; } - double video_frame_rate () const { + double video_frame_rate () const; + + /** @return true if this content has a specific video frame rate, false + * if it should use the DCP's rate. + */ + bool has_own_video_frame_rate () const { boost::mutex::scoped_lock lm (_mutex); - return _video_frame_rate; + return static_cast(_video_frame_rate); } void set_video_frame_type (VideoFrameType); @@ -140,6 +147,11 @@ public: return _sample_aspect_ratio; } + bool yuv () const { + boost::mutex::scoped_lock lm (_mutex); + return _yuv; + } + Frame fade_in () const { boost::mutex::scoped_lock lm (_mutex); return _fade_in; @@ -162,15 +174,17 @@ public: std::string processing_description () const; -protected: +private: void take_from_video_examiner (boost::shared_ptr); - void add_properties (std::list > &) const; + void add_properties (std::list &) const; + boost::weak_ptr _film; + mutable boost::mutex _mutex; Frame _video_length; - double _video_frame_rate; + /** Video frame rate, or not set if this content should use the DCP's frame rate */ + boost::optional _video_frame_rate; boost::optional _colour_conversion; -private: friend struct ffmpeg_pts_offset_test; friend struct best_dcp_frame_rate_test_single; friend struct best_dcp_frame_rate_test_double; @@ -186,6 +200,7 @@ private: if there is one. */ boost::optional _sample_aspect_ratio; + bool _yuv; Frame _fade_in; Frame _fade_out; };