From e8749cfcef2b9434377e73c66a79755691ebc064 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 25 Jul 2023 11:09:46 +0200 Subject: Default to writing 8 audio channels in DCPs (#2443). It seems likely that 8 channels is slightly less likely to trip validation warnings from some distributors, and so it seems worth accepting the potential waste of 2 channels. Users can always set this back to 6 again (once, and it will be saved) and those upgrading from old versions won't be affected anyway. --- src/lib/config.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/config.cc b/src/lib/config.cc index 3366a2bbc..fdce75109 100644 --- a/src/lib/config.cc +++ b/src/lib/config.cc @@ -106,7 +106,7 @@ Config::set_defaults () _language = optional (); _default_still_length = 10; _default_dcp_content_type = DCPContentType::from_isdcf_name ("FTR"); - _default_dcp_audio_channels = 6; + _default_dcp_audio_channels = 8; _default_j2k_bandwidth = 150000000; _default_audio_delay = 0; _default_interop = false; -- cgit v1.2.3