summaryrefslogtreecommitdiff
path: root/src/lib/film.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/film.h')
-rw-r--r--src/lib/film.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/film.h b/src/lib/film.h
index cca31d306..5eb4f17ed 100644
--- a/src/lib/film.h
+++ b/src/lib/film.h
@@ -133,10 +133,6 @@ public:
dcp::Formulation formulation
) const;
- dcp::Key key () const {
- return _key;
- }
-
int state_version () const {
return _state_version;
}
@@ -157,6 +153,7 @@ public:
RESOLUTION,
SIGNED,
ENCRYPTED,
+ KEY,
J2K_BANDWIDTH,
ISDCF_METADATA,
VIDEO_FRAME_RATE,
@@ -205,6 +202,10 @@ public:
return _encrypted;
}
+ dcp::Key key () const {
+ return _key;
+ }
+
int j2k_bandwidth () const {
return _j2k_bandwidth;
}
@@ -255,6 +256,7 @@ public:
void set_resolution (Resolution);
void set_signed (bool);
void set_encrypted (bool);
+ void set_key (dcp::Key key);
void set_j2k_bandwidth (int);
void set_isdcf_metadata (ISDCFMetadata);
void set_video_frame_rate (int);