From cb5164d75c51275f185425e23a2622d354086f12 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 12 Apr 2016 16:22:09 +0100 Subject: [PATCH] Remove unused constructor. --- src/lib/video_content.cc | 12 ------------ src/lib/video_content.h | 1 - 2 files changed, 13 deletions(-) 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 >); -- 2.30.2