summaryrefslogtreecommitdiff
path: root/src/reel_asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-07-20 14:36:16 +0100
committerCarl Hetherington <cth@carlh.net>2014-07-20 14:36:16 +0100
commit454e76146a5bd522e47ebbedd490e89ef95dd186 (patch)
tree680f06149597f5ca28c3235e8f570e953b8b6ec3 /src/reel_asset.h
parentb371e448833d5a2bac837698c756f27786e38737 (diff)
Put ReelAsset key id into a new ReelMXFAsset.
Diffstat (limited to 'src/reel_asset.h')
-rw-r--r--src/reel_asset.h15
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 &lt;Reel&gt; node
* e.g. MainPicture, MainSound etc.
@@ -113,7 +99,6 @@ private:
int64_t _entry_point; ///< The &lt;EntryPoint&gt; from the reel's entry for this asset
int64_t _duration; ///< The &lt;Duration&gt; from the reel's entry for this asset
std::string _hash; ///< The &lt;Hash&gt; from the reel's entry for this asset
- std::string _key_id; ///< The &lt;KeyId&gt; from the reel's entry for this asset, or empty if there isn't one
};
}