diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-07-20 14:36:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-07-20 14:36:16 +0100 |
| commit | 454e76146a5bd522e47ebbedd490e89ef95dd186 (patch) | |
| tree | 680f06149597f5ca28c3235e8f570e953b8b6ec3 /src/reel_asset.h | |
| parent | b371e448833d5a2bac837698c756f27786e38737 (diff) | |
Put ReelAsset key id into a new ReelMXFAsset.
Diffstat (limited to 'src/reel_asset.h')
| -rw-r--r-- | src/reel_asset.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/reel_asset.h b/src/reel_asset.h index 40eb6986..93f6fe91 100644 --- a/src/reel_asset.h +++ b/src/reel_asset.h @@ -67,13 +67,6 @@ public: return _content; } - /** @return true if a KeyId is specified for this asset, implying - * that its content is encrypted. - */ - bool encrypted () const { - return !_key_id.empty (); - } - int64_t entry_point () const { return _entry_point; } @@ -82,13 +75,6 @@ public: return _duration; } - /** @return Key ID to describe the key that encrypts this asset's; - * content. - */ - std::string key_id () const { - return _key_id; - } - protected: /** @return the node name that this asset uses in the CPL's <Reel> node * e.g. MainPicture, MainSound etc. @@ -113,7 +99,6 @@ private: int64_t _entry_point; ///< The <EntryPoint> from the reel's entry for this asset int64_t _duration; ///< The <Duration> from the reel's entry for this asset std::string _hash; ///< The <Hash> from the reel's entry for this asset - std::string _key_id; ///< The <KeyId> from the reel's entry for this asset, or empty if there isn't one }; } |
