Bump libdcp for MCA tag fixes.
authorCarl Hetherington <cth@carlh.net>
Thu, 25 Mar 2021 23:19:31 +0000 (00:19 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 25 Mar 2021 23:19:31 +0000 (00:19 +0100)
cscript
src/lib/reel_writer.cc

diff --git a/cscript b/cscript
index 5bfdb7b6053ce3c57ddb79e48bc1bf16d7909667..7d53b4b46049e30d401d5af2531fe5ddaf940211 100644 (file)
--- a/cscript
+++ b/cscript
@@ -372,8 +372,8 @@ def dependencies(target, options):
         # Use distro-provided FFmpeg on Arch
         deps = []
 
-    deps.append(('libdcp', '1deb046'))
-    deps.append(('libsub', '909fed6'))
+    deps.append(('libdcp', 'b9c5e3f'))
+    deps.append(('libsub', '4a1de69'))
     deps.append(('leqm-nrt', '131f971'))
     deps.append(('rtaudio', 'f619b76'))
     # We get our OpenSSL libraries from the environment, but we
index 294c0b7b64c85ecc214e1f0e8974c738d2134c2d..366e6edc63271ac8c5152505be6910471b3d9636 100644 (file)
@@ -178,17 +178,11 @@ ReelWriter::ReelWriter (
 
                DCPOMATIC_ASSERT (film()->directory());
 
-               vector<dcp::Channel> active;
-               for (auto i: film()->mapped_audio_channels()) {
-                       active.push_back (static_cast<dcp::Channel>(i));
-               }
-
                /* Write the sound asset into the film directory so that we leave the creation
                   of the DCP directory until the last minute.
                */
                _sound_asset_writer = _sound_asset->start_write (
                        film()->directory().get() / audio_asset_filename (_sound_asset, _reel_index, _reel_count, _content_summary),
-                       active,
                        film()->contains_atmos_content()
                        );
        }