summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-12-18 14:30:52 +0000
committerCarl Hetherington <cth@carlh.net>2015-12-18 14:30:52 +0000
commit5006af143f069d10af5cd8b6b60d295de9187006 (patch)
treec871ad6ff48a6af97d669f9325f9ba5811fd1087 /src
parent2284f338b5de4e0f6d497404d2fb5e5f11b6fd56 (diff)
Add hint about 24/48fps Interop.
Diffstat (limited to 'src')
-rw-r--r--src/wx/hints_dialog.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/hints_dialog.cc b/src/wx/hints_dialog.cc
index a63c6be62..00024fabe 100644
--- a/src/wx/hints_dialog.cc
+++ b/src/wx/hints_dialog.cc
@@ -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_")) {