From: Carl Hetherington Date: Tue, 12 Apr 2016 15:22:09 +0000 (+0100) Subject: Remove unused constructor. X-Git-Tag: v2.8.4~57 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=cb5164d75c51275f185425e23a2622d354086f12 Remove unused constructor. --- diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index ca96df1e8..b6120c371 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -75,18 +75,6 @@ VideoContent::VideoContent (shared_ptr film) set_default_colour_conversion (); } -VideoContent::VideoContent (shared_ptr film, DCPTime s, Frame len) - : Content (film, s) - , _video_length (len) - , _video_frame_type (VIDEO_FRAME_TYPE_2D) - , _scale (VideoContentScale (Ratio::from_id ("178"))) - , _yuv (true) - , _fade_in (0) - , _fade_out (0) -{ - set_default_colour_conversion (); -} - VideoContent::VideoContent (shared_ptr film, boost::filesystem::path p) : Content (film, p) , _video_length (0) diff --git a/src/lib/video_content.h b/src/lib/video_content.h index f672e37b5..8e2081e3a 100644 --- a/src/lib/video_content.h +++ b/src/lib/video_content.h @@ -44,7 +44,6 @@ class VideoContent : public virtual Content { 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 >);