From 92fcfff515d8416c8b175cb5e68dd492963362d5 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 23 Dec 2014 00:03:11 +0000 Subject: Remove unused code. --- src/lib/video_content.cc | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'src/lib/video_content.cc') diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index c50d466a1..1a03c2af2 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -249,30 +249,6 @@ VideoContent::take_from_video_examiner (shared_ptr d) signal_changed (ContentProperty::LENGTH); } - -string -VideoContent::information () const -{ - if (video_size().width == 0 || video_size().height == 0) { - return ""; - } - - SafeStringStream s; - - s << String::compose ( - _("%1x%2 pixels (%3:1)"), - video_size().width, - video_size().height, - setprecision (3), video_size().ratio () - ); - - if (sample_aspect_ratio ()) { - s << String::compose (_(" sample aspect ratio %1:1"), sample_aspect_ratio().get ()); - } - - return s.str (); -} - void VideoContent::set_left_crop (int c) { -- cgit v1.2.3