From b71b3b7247672edd2b1b6cf6dc0f6eb5ed8ddcfb Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 29 May 2016 23:23:14 +0100 Subject: [PATCH] Restore mysteriously-lost frame rate details in video tab. --- src/lib/video_content.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index cef543387..9ffc63c5d 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -403,6 +403,16 @@ VideoContent::processing_description () const d << " (" << fixed << setprecision(2) << container_size.ratio () << ":1)\n"; } + if (_parent->video_frame_rate()) { + double const vfr = _parent->video_frame_rate().get (); + + d << _("Content frame rate"); + d << " " << fixed << setprecision(4) << vfr << "\n"; + + FrameRateChange frc (vfr, film->video_frame_rate ()); + d << frc.description () << "\n"; + } + return d.str (); } -- 2.30.2