From: Carl Hetherington Date: Thu, 14 Apr 2016 00:07:22 +0000 (+0100) Subject: Remove unused method. X-Git-Tag: v2.8.4~44 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=826ed68a1e34ce158342da324ff7203af0449641 Remove unused method. --- diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index 567ab3cf8..97d7d4343 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -193,14 +193,6 @@ VideoContent::as_xml (xmlpp::Node* node) const node->add_child("FadeOut")->add_child_text (raw_convert (_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 d) { diff --git a/src/lib/video_content.h b/src/lib/video_content.h index 075f7b701..0348969ae 100644 --- a/src/lib/video_content.h +++ b/src/lib/video_content.h @@ -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;