diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-02-12 17:28:33 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-02-25 00:46:32 +0100 |
| commit | 6800ed98731522b5148a7d31d19d8ba19796e7c5 (patch) | |
| tree | 708916de9b86df408925b97800c302b3fc3cc52d /src/lib | |
| parent | 366616d98e654638e49d7babc5fc04d85689c0af (diff) | |
Add FSKSync it to the MainSoundConfiguration.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/writer.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc index b52b39649..88128bb17 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -680,6 +680,13 @@ Writer::finish() } } + if (film()->contains_atmos_content()) { + if (msc.channels() < 14) { + msc.set_channels(14); + } + msc.set_mapping(13, dcp::Channel::SYNC_SIGNAL); + } + cpl->set_main_sound_configuration(msc); cpl->set_main_sound_sample_rate(film()->audio_frame_rate()); cpl->set_main_picture_stored_area(film()->frame_size()); |
