summaryrefslogtreecommitdiff
path: root/src/reel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-08-26 22:11:21 +0100
committerCarl Hetherington <cth@carlh.net>2013-08-26 22:11:21 +0100
commit596d77476b0ab7e1ccacbbe5b7ebaccfd99bbfd4 (patch)
tree9d3447978d17df8b2a9598e6daf0e568ac58c3cf /src/reel.cc
parentcc57a01f142a32e06f22622118dd8d24e3dfb140 (diff)
Try to add correct namespace for 3D CPLs.
Diffstat (limited to 'src/reel.cc')
-rw-r--r--src/reel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reel.cc b/src/reel.cc
index d039f95b..3b49042a 100644
--- a/src/reel.cc
+++ b/src/reel.cc
@@ -43,11 +43,11 @@ Reel::write_to_cpl (xmlpp::Node* node, bool interop) const
}
if (_main_sound) {
- _main_sound->write_to_cpl (asset_list);
+ _main_sound->write_to_cpl (asset_list, interop);
}
if (_main_subtitle) {
- _main_subtitle->write_to_cpl (asset_list);
+ _main_subtitle->write_to_cpl (asset_list, interop);
}
}