From 422eb00b446d90e3588ae6793f676917ee195cca Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 18 Sep 2018 21:01:00 +0100 Subject: [PATCH] Probably makes sense to default to checking KDM validity ranges so that testing KDMs is more like real life. --- src/lib/config.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/config.cc b/src/lib/config.cc index b28f8b957..702da44d0 100644 --- a/src/lib/config.cc +++ b/src/lib/config.cc @@ -164,7 +164,7 @@ Config::set_defaults () _gdc_password = optional(); _interface_complexity = INTERFACE_SIMPLE; _player_mode = PLAYER_MODE_WINDOW; - _respect_kdm_validity_periods = false; + _respect_kdm_validity_periods = true; _player_log_file = boost::none; _allowed_dcp_frame_rates.clear (); @@ -493,7 +493,7 @@ try _player_mode = PLAYER_MODE_DUAL; } - _respect_kdm_validity_periods = f.optional_bool_child("RespectKDMValidityPeriods").get_value_or(false); + _respect_kdm_validity_periods = f.optional_bool_child("RespectKDMValidityPeriods").get_value_or(true); _player_log_file = f.optional_string_child("PlayerLogFile"); /* Replace any cinemas from config.xml with those from the configured file */ -- 2.30.2