diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-26 22:15:41 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-26 22:15:41 +0100 |
| commit | 886c256f532e0f43bcd7f6f9924147c151293cab (patch) | |
| tree | 6d4cecf0aa65e2250fb6246775d7d1856ece66d6 /src/lib/film.cc | |
| parent | edbccd8d04a33f9e8d03677d8ebc671f40b0f822 (diff) | |
libdcp API change ReelMXF -> ReelFileAsset.
Diffstat (limited to 'src/lib/film.cc')
| -rw-r--r-- | src/lib/film.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 8a165586c..dacde49d4 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -64,7 +64,7 @@ #include <dcp/local_time.h> #include <dcp/decrypted_kdm.h> #include <dcp/raw_convert.h> -#include <dcp/reel_mxf.h> +#include <dcp/reel_file_asset.h> #include <dcp/reel_asset.h> #include <libxml++/libxml++.h> #include <boost/filesystem.hpp> @@ -1645,9 +1645,9 @@ Film::make_kdm ( } } - map<shared_ptr<const dcp::ReelMXF>, dcp::Key> keys; + map<shared_ptr<const dcp::ReelFileAsset>, dcp::Key> keys; - for (auto i: cpl->reel_mxfs()) { + for (auto i: cpl->reel_file_assets()) { if (!i->key_id()) { continue; } |
