diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-07-25 11:09:46 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-08-06 22:05:03 +0200 |
| commit | e8749cfcef2b9434377e73c66a79755691ebc064 (patch) | |
| tree | 9eec3c649173a63d9ba667d840911724fefe137b /test | |
| parent | 02d4493e593d567b210cd7f2b98d33a345867d1d (diff) | |
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.
Diffstat (limited to 'test')
| -rw-r--r-- | test/film_metadata_test.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/film_metadata_test.cc b/test/film_metadata_test.cc index ada943c80..878e60254 100644 --- a/test/film_metadata_test.cc +++ b/test/film_metadata_test.cc @@ -63,6 +63,7 @@ BOOST_AUTO_TEST_CASE (film_metadata_test) film->set_distributor (string("")); film->set_facility (string("")); film->set_release_territory (dcp::LanguageTag::RegionSubtag("US")); + film->set_audio_channels(6); film->write_metadata (); list<string> ignore = { "Key", "ContextID", "LastWrittenBy" }; |
