summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-02-25 00:46:30 +0100
committerCarl Hetherington <cth@carlh.net>2026-02-25 01:04:02 +0100
commitca10fe90d5e8e5040690780de3bf27072303904b (patch)
treefad174eda804ab7f7ba55775b112288c3e040f73
parent6800ed98731522b5148a7d31d19d8ba19796e7c5 (diff)
Add MCA subdescriptor for FSK sync.
-rw-r--r--cscript2
-rw-r--r--src/lib/reel_writer.cc4
2 files changed, 5 insertions, 1 deletions
diff --git a/cscript b/cscript
index 89e2b1b0f..c54832a3f 100644
--- a/cscript
+++ b/cscript
@@ -502,7 +502,7 @@ def build_with_cpp17(target):
def dependencies(target, options):
- deps = [('libdcp', 'v1.10.48', {'c++17': build_with_cpp17(target)})]
+ deps = [('libdcp', '2725dd430cea6b5a0c74507f61059599058425db', {'c++17': build_with_cpp17(target)})]
deps.append(('libsub', 'v1.6.59'))
deps.append(('leqm-nrt', 'd75d0af984d9c14bfefca8f1bdbc215c3bf3a388'))
if target.platform != 'linux' or target.distro != 'arch':
diff --git a/src/lib/reel_writer.cc b/src/lib/reel_writer.cc
index b85b53305..848d4db73 100644
--- a/src/lib/reel_writer.cc
+++ b/src/lib/reel_writer.cc
@@ -236,6 +236,10 @@ ReelWriter::ReelWriter(
}
}
+ if (film()->contains_atmos_content()) {
+ extra_active_channels.push_back(dcp::Channel::SYNC_SIGNAL);
+ }
+
/* Write the sound asset into the film directory so that we leave the creation
of the DCP directory until the last minute.
*/