summaryrefslogtreecommitdiff
path: root/src/reel_mxf_asset.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/reel_mxf_asset.cc')
-rw-r--r--src/reel_mxf_asset.cc18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/reel_mxf_asset.cc b/src/reel_mxf_asset.cc
index 9d7c1fad..55cb7e9c 100644
--- a/src/reel_mxf_asset.cc
+++ b/src/reel_mxf_asset.cc
@@ -46,21 +46,3 @@ ReelMXFAsset::ReelMXFAsset (shared_ptr<const cxml::Node> node)
_key_id = _key_id.substr (9);
}
}
-
-void
-ReelMXFAsset::write_to_cpl (xmlpp::Node* node, Standard s) const
-{
- ReelAsset::write_to_cpl (node, s);
-
- xmlpp::Node::NodeList c = node->get_children ();
- xmlpp::Node::NodeList::iterator i = c.begin();
- while (i != c.end() && (*i)->get_name() != cpl_node_name ()) {
- ++i;
- }
-
- DCP_ASSERT (i != c.end ());
-
- if (!_key_id.empty ()) {
- (*i)->add_child("KeyId")->add_child_text ("urn:uuid:" + _key_id);
- }
-}