From 8541ba8e544b77d582e3ce00a2ffae96e52eb30d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 19 Jun 2020 20:29:22 +0200 Subject: [PATCH] Fix serialisation of the Atmos parts of a DCP. --- src/lib/dcp_content.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index d2c1df748..0ce494541 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -92,6 +92,7 @@ DCPContent::DCPContent (cxml::ConstNodePtr node, int version) video = VideoContent::from_xml (this, node, version); audio = AudioContent::from_xml (this, node, version); text = TextContent::from_xml (this, node, version); + atmos = AtmosContent::from_xml (this, node); for (int i = 0; i < TEXT_COUNT; ++i) { _reference_text[i] = false; @@ -328,6 +329,10 @@ DCPContent::as_xml (xmlpp::Node* node, bool with_paths) const i->as_xml (node); } + if (atmos) { + atmos->as_xml (node); + } + boost::mutex::scoped_lock lm (_mutex); node->add_child("Name")->add_child_text (_name); node->add_child("Encrypted")->add_child_text (_encrypted ? "1" : "0"); -- 2.30.2