diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-06-19 20:29:22 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-06-19 20:29:22 +0200 |
| commit | 8541ba8e544b77d582e3ce00a2ffae96e52eb30d (patch) | |
| tree | d4776201baceebf11cf44cb62257920e6c8aeb3d | |
| parent | e41108425892086d29f7cb200f1ad5f45986d686 (diff) | |
Fix serialisation of the Atmos parts of a DCP.
| -rw-r--r-- | src/lib/dcp_content.cc | 5 |
1 files changed, 5 insertions, 0 deletions
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"); |
