diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-04-12 16:22:09 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-18 11:50:29 +0100 |
| commit | cb5164d75c51275f185425e23a2622d354086f12 (patch) | |
| tree | 985c89c8ca2e74ad15cfcf01d97c10fbb6306b7c /src | |
| parent | fa369ef1db0e9f68fdc0145f86ce15446a750af5 (diff) | |
Remove unused constructor.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/video_content.cc | 12 | ||||
| -rw-r--r-- | src/lib/video_content.h | 1 |
2 files changed, 0 insertions, 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<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) 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<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> >); |
