From: Carl Hetherington Date: Fri, 19 Jun 2020 18:29:22 +0000 (+0200) Subject: Fix serialisation of the Atmos parts of a DCP. X-Git-Tag: v2.15.83~5 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=8541ba8e544b77d582e3ce00a2ffae96e52eb30d Fix serialisation of the Atmos parts of a DCP. --- 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");