diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-07-30 02:10:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-07-30 02:10:26 +0100 |
| commit | 0242efb9802d7bcbde0701a7267972d4dbe5abb8 (patch) | |
| tree | 9dcf3d92b3cf3224e0b4ee852f0e38c38c7a477e /src/lib/film.cc | |
| parent | 9e69c78fe4473279d848341d64ade8c834ebebd7 (diff) | |
Changes to libdcp.
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 e935e76bc..548c51796 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -45,7 +45,7 @@ #include "md5_digester.h" #include <libcxml/cxml.h> #include <dcp/cpl.h> -#include <dcp/signer.h> +#include <dcp/certificate_chain.h> #include <dcp/util.h> #include <dcp/local_time.h> #include <dcp/decrypted_kdm.h> @@ -87,7 +87,7 @@ using boost::starts_with; using boost::optional; using boost::is_any_of; using dcp::Size; -using dcp::Signer; +using dcp::CertificateChain; #define LOG_GENERAL(...) log()->log (String::compose (__VA_ARGS__), Log::TYPE_GENERAL); #define LOG_GENERAL_NC(...) log()->log (__VA_ARGS__, Log::TYPE_GENERAL); @@ -1063,7 +1063,7 @@ Film::make_kdm ( ) const { shared_ptr<const dcp::CPL> cpl (new dcp::CPL (cpl_file)); - shared_ptr<const dcp::Signer> signer = Config::instance()->signer(); + shared_ptr<const dcp::CertificateChain> signer = Config::instance()->signer(); if (!signer->valid ()) { throw InvalidSignerError (); } |
