diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-02-14 23:17:24 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-02-14 23:28:26 +0000 |
| commit | 71a358ce70bf9156e895f3dc6515e65628950422 (patch) | |
| tree | 77d8bbe95320e099e733945cdd19ac4a638543ba /src/lib/film.h | |
| parent | 85d72a25071f7b5a5d93a2d91f245b0cc7ffbe3b (diff) | |
Adapt for changes to disable_forensic variable types in libdcp.
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/film.h b/src/lib/film.h index 67bcfbbdf..355a41da5 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -131,8 +131,8 @@ public: dcp::LocalTime from, dcp::LocalTime until, dcp::Formulation formulation, - int disable_forensic_marking_picture, - int disable_forensic_marking_audio + bool disable_forensic_marking_picture, + boost::optional<int> disable_forensic_marking_audio ) const; std::list<ScreenKDM> make_kdms ( @@ -141,8 +141,8 @@ public: boost::posix_time::ptime from, boost::posix_time::ptime until, dcp::Formulation formulation, - int disable_forensic_marking_picture, - int disable_forensic_marking_audio + bool disable_forensic_marking_picture, + boost::optional<int> disable_forensic_marking_audio ) const; int state_version () const { |
