diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-05-05 22:28:25 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-05-06 20:15:49 +0200 |
| commit | 8f12e84009d7c2685bb2eeb32665876463d4e6e5 (patch) | |
| tree | 49f9de5db8ad762a3179869ebde2d9093b132b16 /src/lib/screen.h | |
| parent | 8dabe7c3d815ff95c2fb3edc3cfce62434711fc4 (diff) | |
Extract common code out into kdm_for_screen()
Diffstat (limited to 'src/lib/screen.h')
| -rw-r--r-- | src/lib/screen.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lib/screen.h b/src/lib/screen.h index 40990b684..33c7f280c 100644 --- a/src/lib/screen.h +++ b/src/lib/screen.h @@ -21,12 +21,14 @@ #ifndef DCPOMATIC_SCREEN_H #define DCPOMATIC_SCREEN_H +#include "kdm_with_metadata.h" #include <dcp/certificate.h> #include <libcxml/cxml.h> #include <boost/optional.hpp> #include <string> class Cinema; +class Film; class TrustedDevice { @@ -79,4 +81,17 @@ public: } +KDMWithMetadataPtr +kdm_for_screen ( + boost::shared_ptr<const Film> film, + boost::filesystem::path cpl, + boost::shared_ptr<const dcpomatic::Screen> screen, + boost::posix_time::ptime valid_from, + boost::posix_time::ptime valid_to, + dcp::Formulation formulation, + bool disable_forensic_marking_picture, + boost::optional<int> disable_forensic_marking_audio + ); + + #endif |
