summaryrefslogtreecommitdiff
path: root/src/cpl.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-15 09:43:41 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-15 09:43:41 +0000
commitbf59c288798851808359575662f202d390032aa7 (patch)
treecbf4f646a60787614e25eeeb3c436432a04ea739 /src/cpl.cc
parent39f0ae0efb3406357253d19bf7588f3832735d0b (diff)
Use MXFAsset::_interop to decide on whether to write asset XML as Interop or SMPTE.
Diffstat (limited to 'src/cpl.cc')
-rw-r--r--src/cpl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpl.cc b/src/cpl.cc
index 12fdf102..dcb730ff 100644
--- a/src/cpl.cc
+++ b/src/cpl.cc
@@ -228,7 +228,7 @@ CPL::write_xml (bool interop, XMLMetadata const & metadata, shared_ptr<const Sig
xmlpp::Element* reel_list = root->add_child ("ReelList");
for (list<shared_ptr<Reel> >::const_iterator i = _reels.begin(); i != _reels.end(); ++i) {
- (*i)->write_to_cpl (reel_list, interop);
+ (*i)->write_to_cpl (reel_list);
}
if (signer) {