diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-05-13 14:43:27 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-18 11:50:29 +0100 |
| commit | 29fe2d3a4c347e15b987f9e61e56d22a21d4678f (patch) | |
| tree | 910b7afc8a109733edd76befc0d17e9be902fb1b /src/lib/video_content.h | |
| parent | 640a1ef73e575fe891a420dec392dace8b1a0255 (diff) | |
Remove unnecessary Film variable in ContentPart.
Diffstat (limited to 'src/lib/video_content.h')
| -rw-r--r-- | src/lib/video_content.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/video_content.h b/src/lib/video_content.h index ef54a6be4..7d24b30ff 100644 --- a/src/lib/video_content.h +++ b/src/lib/video_content.h @@ -50,8 +50,8 @@ public: class VideoContent : public ContentPart, public boost::enable_shared_from_this<VideoContent> { public: - VideoContent (Content* parent, boost::shared_ptr<const Film>); - VideoContent (Content* parent, boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >); + VideoContent (Content* parent); + VideoContent (Content* parent, std::vector<boost::shared_ptr<Content> >); void as_xml (xmlpp::Node *) const; std::string technical_summary () const; @@ -166,7 +166,7 @@ public: void take_from_examiner (boost::shared_ptr<VideoExaminer>); void add_properties (std::list<UserProperty> &) const; - static boost::shared_ptr<VideoContent> from_xml (Content* parent, boost::shared_ptr<const Film>, cxml::ConstNodePtr, int); + static boost::shared_ptr<VideoContent> from_xml (Content* parent, cxml::ConstNodePtr, int); private: @@ -175,7 +175,7 @@ private: friend struct best_dcp_frame_rate_test_double; friend struct audio_sampling_rate_test; - VideoContent (Content* parent, boost::shared_ptr<const Film>, cxml::ConstNodePtr, int); + VideoContent (Content* parent, cxml::ConstNodePtr, int); void setup_default_colour_conversion (); Frame _length; |
