summaryrefslogtreecommitdiff
path: root/src/wx/dcp_panel.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/dcp_panel.cc')
-rw-r--r--src/wx/dcp_panel.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc
index b0c4bd88d..8f5c8fe7f 100644
--- a/src/wx/dcp_panel.cc
+++ b/src/wx/dcp_panel.cc
@@ -172,7 +172,12 @@ DCPPanel::update_standards()
_standard->add_entry(_("Interop"), string{"interop"});
}
- if (!ref && !atmos) {
+ bool allow_mpeg2 = Config::instance()->allow_mpeg2();
+#ifdef DCPOMATIC_VARIANT_POST
+ allow_mpeg2 = true;
+#endif
+
+ if (allow_mpeg2 && !ref && !atmos) {
_standard->add_entry(_("MPEG2 Interop"), string{"mpeg2-interop"});
}