diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-03-26 00:19:31 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-03-26 00:19:31 +0100 |
| commit | 0f45c718bf9b8e3922349dc4d2e92db229e64d88 (patch) | |
| tree | d608988ddec9b2283e774ad5c39e600ce97bfc3f | |
| parent | 6a9cdf1f5ab9f7f7ecea865b2930bb4c385609c4 (diff) | |
Bump libdcp for MCA tag fixes.
| -rw-r--r-- | cscript | 4 | ||||
| -rw-r--r-- | src/lib/reel_writer.cc | 6 |
2 files changed, 2 insertions, 8 deletions
@@ -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 diff --git a/src/lib/reel_writer.cc b/src/lib/reel_writer.cc index 294c0b7b6..366e6edc6 100644 --- a/src/lib/reel_writer.cc +++ b/src/lib/reel_writer.cc @@ -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() ); } |
