Remove unused constructor.
authorCarl Hetherington <cth@carlh.net>
Tue, 12 Apr 2016 15:22:09 +0000 (16:22 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 18 May 2016 10:50:29 +0000 (11:50 +0100)
src/lib/video_content.cc
src/lib/video_content.h

index ca96df1e8efbf92eb09fa69c25c6453806949d0d..b6120c3713c087847034d104914d1913f9b19c8b 100644 (file)
@@ -75,18 +75,6 @@ VideoContent::VideoContent (shared_ptr<const Film> film)
        set_default_colour_conversion ();
 }
 
-VideoContent::VideoContent (shared_ptr<const Film> 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<const Film> film, boost::filesystem::path p)
        : Content (film, p)
        , _video_length (0)
index f672e37b59b55d789fb674981c8032db691ff0a5..8e2081e3a21a0a7c7ba4dae3928da64b6c6dff1a 100644 (file)
@@ -44,7 +44,6 @@ class VideoContent : public virtual Content
 {
 public:
        VideoContent (boost::shared_ptr<const Film>);
-       VideoContent (boost::shared_ptr<const Film>, DCPTime, Frame);
        VideoContent (boost::shared_ptr<const Film>, boost::filesystem::path);
        VideoContent (boost::shared_ptr<const Film>, cxml::ConstNodePtr, int);
        VideoContent (boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >);