diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-08-25 17:18:11 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-08-25 17:18:11 +0100 |
| commit | a5901718e3a0ee692d745fd3a6d8f5a49d422a26 (patch) | |
| tree | c211b207f911b12ed4313519956e2d616ef773f1 /src/reel.cc | |
| parent | 5384418af0299194ecf3e27fd2e443e7d882a713 (diff) | |
Tweak interop / SMPTE to pass dcp_inspect.
Diffstat (limited to 'src/reel.cc')
| -rw-r--r-- | src/reel.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reel.cc b/src/reel.cc index c8ea54eb..d039f95b 100644 --- a/src/reel.cc +++ b/src/reel.cc @@ -32,14 +32,14 @@ using boost::shared_ptr; using namespace libdcp; void -Reel::write_to_cpl (xmlpp::Node* node) const +Reel::write_to_cpl (xmlpp::Node* node, bool interop) const { xmlpp::Node* reel = node->add_child ("Reel"); reel->add_child("Id")->add_child_text ("urn:uuid:" + make_uuid()); xmlpp::Node* asset_list = reel->add_child ("AssetList"); if (_main_picture) { - _main_picture->write_to_cpl (asset_list); + _main_picture->write_to_cpl (asset_list, interop); } if (_main_sound) { |
