summaryrefslogtreecommitdiff
path: root/test/test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-05-18 00:51:45 +0200
committerCarl Hetherington <cth@carlh.net>2024-05-18 00:51:45 +0200
commitef20ef5082586ac7c54e6e5f2d3520249f9e2139 (patch)
tree724748bb22b19675010d1c4cdf7d76ab280e9533 /test/test.cc
parent4347717803d202a41792faf42e846fd73a0586bf (diff)
fixup! Introduce SMPTEFlavour and use it to decide which optional things to write.smpte-a
Diffstat (limited to 'test/test.cc')
-rw-r--r--test/test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.cc b/test/test.cc
index d384bdfa..78099c81 100644
--- a/test/test.cc
+++ b/test/test.cc
@@ -312,7 +312,7 @@ simple_sound(boost::filesystem::path path, string suffix, dcp::MXFMetadata mxf_m
}
ms->_language = language;
ms->set_metadata (mxf_meta);
- auto sound_writer = ms->start_write(path / dcp::String::compose("audio%1.mxf", suffix), {}, dcp::SoundAsset::AtmosSync::DISABLED, dcp::SoundAsset::MCASubDescriptors::ENABLED);
+ auto sound_writer = ms->start_write(path / dcp::String::compose("audio%1.mxf", suffix), {}, dcp::SoundAsset::AtmosSync::DISABLED, dcp::SMPTEFlavour::BV21);
int const samples_per_frame = sample_rate / 24;