diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-06-08 02:11:18 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-06-08 17:09:15 +0200 |
| commit | 8755ef75cb001cf7fba230ffa98fb40eb2547849 (patch) | |
| tree | a6884e631d07c0d01e57dab6b9612f584b202426 /src/lib/film.h | |
| parent | ce9ca273648d879a4aee700593b757147336d884 (diff) | |
Always sign DCPs (#1760).
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lib/film.h b/src/lib/film.h index 5bf6c55f7..ea60b461d 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -211,7 +211,6 @@ public: DCP_CONTENT_TYPE, CONTAINER, RESOLUTION, - SIGNED, ENCRYPTED, KEY, J2K_BANDWIDTH, @@ -259,11 +258,6 @@ public: return _resolution; } - /* signed is a reserved word */ - bool is_signed () const { - return _signed; - } - bool encrypted () const { return _encrypted; } @@ -352,7 +346,6 @@ public: void set_dcp_content_type (DCPContentType const *); void set_container (Ratio const *, bool user_explicit = true); void set_resolution (Resolution, bool user_explicit = true); - void set_signed (bool); void set_encrypted (bool); void set_key (dcp::Key key); void set_j2k_bandwidth (int); @@ -431,7 +424,6 @@ private: Ratio const * _container; /** DCP resolution (2K or 4K) */ Resolution _resolution; - bool _signed; bool _encrypted; dcp::Key _key; /** context ID used when encrypting picture assets; we keep it so that we can |
