diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-18 21:01:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-18 21:01:00 +0100 |
| commit | 422eb00b446d90e3588ae6793f676917ee195cca (patch) | |
| tree | 05a88df175a54a11b6057a0ef44e3f1b166f5d69 /src/lib | |
| parent | b21103a67ef8e0e53b338b16da87ca445ba166d1 (diff) | |
Probably makes sense to default to checking KDM validity ranges
so that testing KDMs is more like real life.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/config.cc | 4 |
1 files 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<string>(); _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 */ |
