summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-04-14 01:07:22 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-18 11:50:29 +0100
commit826ed68a1e34ce158342da324ff7203af0449641 (patch)
tree8b3928e7c52bec1b9761266d45a2b46e76cbeddb /src
parent65b331d32c383f3a9049f29bf03ab3fe3193b31a (diff)
Remove unused method.
Diffstat (limited to 'src')
-rw-r--r--src/lib/video_content.cc8
-rw-r--r--src/lib/video_content.h2
2 files changed, 0 insertions, 10 deletions
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
@@ -194,14 +194,6 @@ VideoContent::as_xml (xmlpp::Node* node) const
}
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)
{
/* These examiner calls could call other content methods which take a lock on the mutex */
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;