Get Signer to take a PEM string rather than a filename.
[libdcp.git] / src / reel_stereo_picture_asset.cc
index 2715eb344beb7fc771bd151f44762986ed24eb7b..09178dc20c57846e36a0a008808a7d63e9f38404 100644 (file)
 
 */
 
+/** @file  src/reel_stereo_picture_asset.cc
+ *  @brief ReelStereoPictureAsset class.
+ */
+
 #include "reel_stereo_picture_asset.h"
+#include "stereo_picture_mxf.h"
+#include <libcxml/cxml.h>
 
 using std::string;
 using std::pair;
@@ -25,12 +31,23 @@ using std::make_pair;
 using boost::shared_ptr;
 using namespace dcp;
 
-ReelStereoPictureAsset::ReelStereoPictureAsset (shared_ptr<const cxml::Node> node)
-       : ReelPictureAsset (node)
+ReelStereoPictureAsset::ReelStereoPictureAsset ()
+{
+
+}
+
+ReelStereoPictureAsset::ReelStereoPictureAsset (boost::shared_ptr<StereoPictureMXF> mxf, int64_t entry_point)
+       : ReelPictureAsset (mxf, entry_point)
 {
 
 }
 
+ReelStereoPictureAsset::ReelStereoPictureAsset (boost::shared_ptr<const cxml::Node> node)
+       : ReelPictureAsset (node)
+{
+       node->done ();
+}
+
 string
 ReelStereoPictureAsset::cpl_node_name () const
 {