From: Carl Hetherington Date: Tue, 25 Sep 2018 21:06:42 +0000 (+0100) Subject: Add frame rate to technical summary of content. X-Git-Tag: v2.13.56~4 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=1245a8bb685504f11733380077a564a783348433 Add frame rate to technical summary of content. --- diff --git a/src/lib/content.cc b/src/lib/content.cc index c2cb7e005..3ab4a5959 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -295,7 +295,11 @@ Content::clone () const string Content::technical_summary () const { - return String::compose ("%1 %2 %3", path_summary(), digest(), position().seconds()); + string s = String::compose ("%1 %2 %3", path_summary(), digest(), position().seconds()); + if (_video_frame_rate) { + s += String::compose(" %1", *_video_frame_rate); + } + return s; } DCPTime