Add hint about 24/48fps Interop.
authorCarl Hetherington <cth@carlh.net>
Fri, 18 Dec 2015 14:30:52 +0000 (14:30 +0000)
committerCarl Hetherington <cth@carlh.net>
Fri, 18 Dec 2015 14:30:52 +0000 (14:30 +0000)
ChangeLog
src/wx/hints_dialog.cc

index 3d51462feec7802bbed4147ba62ea9df624e50ff..53dbdb8fddf93a83a0327587398e6fe00b89e71c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-12-18  c.hetherington  <cth@carlh.net>
+
+       * Add hint about making non-24/48 FPS Interop DCPs.
+
 2015-12-15  Carl Hetherington  <cth@carlh.net>
 
        * Updated de_DE translation from Carsten Kurz.
index a63c6be62f704198aa6c40f1c18eacb21e0eb562..00024fabeecc1ba283d92bea1188a5065ef531eb 100644 (file)
@@ -149,6 +149,12 @@ HintsDialog::film_changed ()
                _text->Newline ();
        }
 
+       if (film->interop() && film->video_frame_rate() != 24 && film->video_frame_rate() != 48) {
+               hint = true;
+               _text->WriteText (_("You are set up for an Interop DCP at a frame rate which is not officially supported.  You are advised to make a SMPTE DCP instead."));
+               _text->Newline ();
+       }
+
        int vob = 0;
        BOOST_FOREACH (shared_ptr<const Content> i, content) {
                if (boost::algorithm::starts_with (i->path(0).filename().string(), "VTS_")) {