summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-06-19 13:15:13 +0200
committerCarl Hetherington <cth@carlh.net>2020-06-19 13:15:34 +0200
commit56286bed00c2a6ad372b6c9d4902c74fd086f384 (patch)
tree98e88adabe73b0f12079f0c75fa2c1259d0b7b26 /src
parentdab4fb9e3d2e828c98e33f9be45a92757fc41095 (diff)
Fix missing Key ID when writing details of encrypted Atmos assets to CPL.
Diffstat (limited to 'src')
-rw-r--r--src/reel_atmos_asset.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/reel_atmos_asset.cc b/src/reel_atmos_asset.cc
index 637f188d..958bc72c 100644
--- a/src/reel_atmos_asset.cc
+++ b/src/reel_atmos_asset.cc
@@ -83,6 +83,7 @@ xmlpp::Node *
ReelAtmosAsset::write_to_cpl (xmlpp::Node* node, Standard standard) const
{
xmlpp::Node* asset = write_to_cpl_asset (node, standard, hash());
+ write_to_cpl_mxf (asset);
asset->add_child("axd:DataType")->add_child_text("urn:smpte:ul:060e2b34.04010105.0e090604.00000000");
return asset;
}