summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-02-16 23:44:10 +0100
committerCarl Hetherington <cth@carlh.net>2026-02-16 23:44:10 +0100
commit148a31352765a030cd3dd64dcf4e9998b649f338 (patch)
tree88a6480fe7629439131eb23d973304df8e831441
parentef37a501c81de85e4f569688987ed3d6807ab684 (diff)
edgecode hacks.
-rw-r--r--cscript2
-rw-r--r--src/lib/reel_writer.cc3
2 files changed, 3 insertions, 2 deletions
diff --git a/cscript b/cscript
index 89e2b1b0f..ac677ab2c 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', '20200f69bbf5bf611eb301b1e793384ee7cd568d', {'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..8103f3d99 100644
--- a/src/lib/reel_writer.cc
+++ b/src/lib/reel_writer.cc
@@ -243,7 +243,8 @@ ReelWriter::ReelWriter(
film()->directory().get() / audio_asset_filename(_sound_asset, _reel_index, _reel_count, _content_summary),
extra_active_channels,
film()->contains_atmos_content() ? dcp::SoundAsset::AtmosSync::ENABLED : dcp::SoundAsset::AtmosSync::DISABLED,
- film()->limit_to_smpte_bv20() ? dcp::SoundAsset::MCASubDescriptors::DISABLED : dcp::SoundAsset::MCASubDescriptors::ENABLED
+ // film()->limit_to_smpte_bv20() ? dcp::SoundAsset::MCASubDescriptors::DISABLED : dcp::SoundAsset::MCASubDescriptors::ENABLED
+ dcp::SoundAsset::MCASubDescriptors::DISABLED
);
}
}