summaryrefslogtreecommitdiff
path: root/src/lib/film.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-12 22:18:47 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-12 22:18:47 +0200
commitcc99556229bf35506c20377f4550665af6f5594a (patch)
treebef50bbc69a4ee9724a32d5ba8e854280451e969 /src/lib/film.cc
parent43f83b3508829b9d773be69db4b010ac91f101b7 (diff)
Bump libdcp for some API improvements.
Diffstat (limited to 'src/lib/film.cc')
-rw-r--r--src/lib/film.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 50472bf41..53d91a378 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -65,6 +65,7 @@
#include <dcp/decrypted_kdm.h>
#include <dcp/raw_convert.h>
#include <dcp/reel_file_asset.h>
+#include <dcp/reel_encryptable_asset.h>
#include <dcp/reel_asset.h>
#include <libxml++/libxml++.h>
#include <boost/filesystem.hpp>
@@ -1664,9 +1665,9 @@ Film::make_kdm (
}
}
- map<shared_ptr<const dcp::ReelFileAsset>, dcp::Key> keys;
+ map<shared_ptr<const dcp::ReelEncryptableAsset>, dcp::Key> keys;
- for (auto i: cpl->reel_file_assets()) {
+ for (auto i: cpl->reel_encryptable_assets()) {
if (!i->key_id()) {
continue;
}