From cdc8bc6a7da0b4f8c3dbfcf560fea61473cf1ca3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 6 Sep 2020 20:10:13 +0200 Subject: Support MCA sound channel tags in MXF/CPL. --- test/sync_test.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/sync_test.cc') diff --git a/test/sync_test.cc b/test/sync_test.cc index 9fe6a304..0bffdb83 100644 --- a/test/sync_test.cc +++ b/test/sync_test.cc @@ -109,7 +109,7 @@ BOOST_AUTO_TEST_CASE (sync_test1) } } - shared_ptr writer = asset.start_write ("build/test/foo.mxf", true); + shared_ptr writer = asset.start_write ("build/test/foo.mxf", vector(), true); /* Compare the sync bits made by SoundAssetWriter to the "proper" ones in the MXF */ BOOST_CHECK (ref == writer->create_sync_packets()); @@ -120,11 +120,11 @@ BOOST_AUTO_TEST_CASE (sync_test2) { /* Make a MXF with the same ID as atmos_pcm.mxf and write a frame of random stuff */ int const channels = 14; - dcp::SoundAsset asset (dcp::Fraction(24, 1), 48000, channels, dcp::SMPTE); + dcp::SoundAsset asset (dcp::Fraction(24, 1), 48000, channels, dcp::LanguageTag("en-GB"), dcp::SMPTE); asset._id = "e004046e09234f90a4ae4355e7e83506"; boost::system::error_code ec; boost::filesystem::remove ("build/test/foo.mxf", ec); - shared_ptr writer = asset.start_write ("build/test/foo.mxf", true); + shared_ptr writer = asset.start_write ("build/test/foo.mxf", vector(), true); int const frames = 2000; float** junk = new float*[channels]; -- cgit v1.2.3