diff options
Diffstat (limited to 'src/reel_stereo_picture_asset.cc')
| -rw-r--r-- | src/reel_stereo_picture_asset.cc | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/reel_stereo_picture_asset.cc b/src/reel_stereo_picture_asset.cc index 958f8393..5bf4756c 100644 --- a/src/reel_stereo_picture_asset.cc +++ b/src/reel_stereo_picture_asset.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2019 Carl Hetherington <cth@carlh.net> + Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net> This file is part of libdcp. @@ -31,46 +31,53 @@ files in the program, then also delete it here. */ + /** @file src/reel_stereo_picture_asset.cc - * @brief ReelStereoPictureAsset class. + * @brief ReelStereoPictureAsset class */ + #include "reel_stereo_picture_asset.h" #include "stereo_picture_asset.h" #include <libcxml/cxml.h> + using std::string; using std::pair; using std::make_pair; using std::shared_ptr; using namespace dcp; + ReelStereoPictureAsset::ReelStereoPictureAsset (std::shared_ptr<StereoPictureAsset> mxf, int64_t entry_point) : ReelPictureAsset (mxf, entry_point) { } + ReelStereoPictureAsset::ReelStereoPictureAsset (std::shared_ptr<const cxml::Node> node) : ReelPictureAsset (node) { node->done (); } + string ReelStereoPictureAsset::cpl_node_name (Standard) const { return "msp-cpl:MainStereoscopicPicture"; } + pair<string, string> ReelStereoPictureAsset::cpl_node_attribute (Standard standard) const { switch (standard) { case Standard::INTEROP: - return make_pair ("xmlns:msp-cpl", "http://www.digicine.com/schemas/437-Y/2007/Main-Stereo-Picture-CPL"); + return { "xmlns:msp-cpl", "http://www.digicine.com/schemas/437-Y/2007/Main-Stereo-Picture-CPL" }; case Standard::SMPTE: - return make_pair ("xmlns:msp-cpl", "http://www.smpte-ra.org/schemas/429-10/2008/Main-Stereo-Picture-CPL"); + return { "xmlns:msp-cpl", "http://www.smpte-ra.org/schemas/429-10/2008/Main-Stereo-Picture-CPL" }; } DCP_ASSERT (false); |
