X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcontent.h;h=334a827561acf23940300e394c83d03733684713;hb=320c20b9538c985005dc850d685eecfc1a5edc98;hp=f488962b349272d08d428e6a3848c3cc2c4dec2c;hpb=334b94526f2c1271718a94fe97cfa843cf6ef7a1;p=dcpomatic.git diff --git a/src/lib/content.h b/src/lib/content.h index f488962b3..334a82756 100644 --- a/src/lib/content.h +++ b/src/lib/content.h @@ -1,19 +1,20 @@ /* Copyright (C) 2013-2016 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ @@ -27,7 +28,6 @@ #include "types.h" #include "signaller.h" #include "dcpomatic_time.h" -#include "raw_convert.h" #include "user_property.h" #include #include @@ -54,6 +54,7 @@ public: static int const LENGTH; static int const TRIM_START; static int const TRIM_END; + static int const VIDEO_FRAME_RATE; }; /** @class Content @@ -75,6 +76,8 @@ public: */ virtual void examine (boost::shared_ptr job); + virtual void use_template (boost::shared_ptr c); + /** @return Quick one-line summary of the content, as will be presented in the * film editor. */ @@ -85,7 +88,7 @@ public: */ virtual std::string technical_summary () const; - virtual void as_xml (xmlpp::Node *) const; + virtual void as_xml (xmlpp::Node *, bool with_paths) const; virtual DCPTime full_length () const = 0; virtual std::string identifier () const; /** @return points at which to split this content when @@ -118,7 +121,7 @@ public: /** @return Digest of the content's file(s). Note: this is * not a complete MD5-or-whatever hash, but a sort of poor - * man's version (see comments in ::examine). + * man's version (see comments in examine()). */ std::string digest () const { boost::mutex::scoped_lock lm (_mutex); @@ -156,6 +159,15 @@ public: DCPTime length_after_trim () const; + boost::optional video_frame_rate () const { + boost::mutex::scoped_lock lm (_mutex); + return _video_frame_rate; + } + + void set_video_frame_rate (double r); + + double active_video_frame_rate () const; + void set_change_signals_frequent (bool f) { _change_signals_frequent = f; } @@ -167,13 +179,14 @@ public: boost::signals2::signal, int, bool)> Changed; boost::shared_ptr video; + boost::shared_ptr audio; boost::shared_ptr subtitle; void signal_changed (int); protected: - virtual void add_properties (std::list &) const {} + virtual void add_properties (std::list &) const; boost::weak_ptr _film; @@ -186,10 +199,20 @@ protected: std::vector _paths; private: + friend struct ffmpeg_pts_offset_test; + friend struct best_dcp_frame_rate_test_single; + friend struct best_dcp_frame_rate_test_double; + friend struct audio_sampling_rate_test; + std::string _digest; DCPTime _position; ContentTime _trim_start; ContentTime _trim_end; + /** The video frame rate that this content is or was prepared to be used with, + * or empty if the effective rate of this content should be dictated by something + * else (either some video happening at the same time, or the rate of the DCP). + */ + boost::optional _video_frame_rate; bool _change_signals_frequent; };