Remove unused method.
authorCarl Hetherington <cth@carlh.net>
Thu, 14 Apr 2016 00:07:22 +0000 (01:07 +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 567ab3cf873abe50fbb6a5424a906481aa95c15c..97d7d434384ab7cadbfb511af90a940207868bc6 100644 (file)
@@ -193,14 +193,6 @@ VideoContent::as_xml (xmlpp::Node* node) const
        node->add_child("FadeOut")->add_child_text (raw_convert<string> (_fade_out));
 }
 
-void
-VideoContent::set_default_colour_conversion ()
-{
-       /* If there's no better offer we'll use Rec. 709 */
-       boost::mutex::scoped_lock lm (_mutex);
-       _colour_conversion = PresetColourConversion::from_id ("rec709").conversion;
-}
-
 void
 VideoContent::take_from_video_examiner (shared_ptr<VideoExaminer> d)
 {
index 075f7b7015b623a7be591210aff0efd1af90ccfb..0348969aeb959ad1ad091de59e0545724664e8fd 100644 (file)
@@ -59,8 +59,6 @@ public:
        std::string technical_summary () const;
        std::string identifier () const;
 
-       void set_default_colour_conversion ();
-
        Frame video_length () const {
                boost::mutex::scoped_lock lm (_mutex);
                return _video_length;