diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-15 09:43:41 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-15 09:43:41 +0000 |
| commit | bf59c288798851808359575662f202d390032aa7 (patch) | |
| tree | cbf4f646a60787614e25eeeb3c436432a04ea739 /src/stereo_picture_asset.cc | |
| parent | 39f0ae0efb3406357253d19bf7588f3832735d0b (diff) | |
Use MXFAsset::_interop to decide on whether to write asset XML as Interop or SMPTE.
Diffstat (limited to 'src/stereo_picture_asset.cc')
| -rw-r--r-- | src/stereo_picture_asset.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stereo_picture_asset.cc b/src/stereo_picture_asset.cc index 1f2230f7..47a41cc2 100644 --- a/src/stereo_picture_asset.cc +++ b/src/stereo_picture_asset.cc @@ -132,9 +132,9 @@ StereoPictureAsset::cpl_node_name () const } pair<string, string> -StereoPictureAsset::cpl_node_attribute (bool interop) const +StereoPictureAsset::cpl_node_attribute () const { - if (interop) { + if (_interop) { return make_pair ("xmlns:msp-cpl", "http://www.digicine.com/schemas/437-Y/2007/Main-Stereo-Picture-CPL"); } else { return make_pair ("xmlns:msp-cpl", "http://www.smpte-ra.org/schemas/429-10/2008/Main-Stereo-Picture-CPL"); |
