summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-05-13 17:20:01 +0100
committerCarl Hetherington <cth@carlh.net>2019-05-13 17:20:01 +0100
commit6cde6bcc0b604c1a157a4ccbdce29e91f4d45a91 (patch)
tree2fb423a179320a64589500f8f3f18d62a2141826 /src/tools
parent2a219174c74d922d068f1ca759402bdbd1c36f3c (diff)
swaroop: add name to ECinema KDMs and add DKDM wrapper for ECinema.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic_ecinema.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_ecinema.cc b/src/tools/dcpomatic_ecinema.cc
index 6c4b2a8c7..a0324f281 100644
--- a/src/tools/dcpomatic_ecinema.cc
+++ b/src/tools/dcpomatic_ecinema.cc
@@ -190,7 +190,7 @@ main (int argc, char* argv[])
avformat_free_context (input_fc);
avformat_free_context (output_fc);
- DecryptedECinemaKDM decrypted_kdm (id, key);
+ DecryptedECinemaKDM decrypted_kdm (id, output_mp4.filename().string(), key);
EncryptedECinemaKDM encrypted_kdm = decrypted_kdm.encrypt (Config::instance()->decryption_chain()->leaf());
cout << encrypted_kdm.as_xml() << "\n";
}