X-Git-Url: https://main.carlh.net/gitweb/?p=libdcp.git;a=blobdiff_plain;f=src%2Freel_picture_asset.cc;h=6e1c53116df4a97bb305a191ac3f752c4eba2a87;hp=5b4ced6735cf15037f68ae1f8b620f973a21429a;hb=2f2643b6ddc36d6efcf4d41913ec4f711750e9c4;hpb=4946acfd735321e7f0c29ea4b6e371bc9e90a7f6 diff --git a/src/reel_picture_asset.cc b/src/reel_picture_asset.cc index 5b4ced67..6e1c5311 100644 --- a/src/reel_picture_asset.cc +++ b/src/reel_picture_asset.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2016 Carl Hetherington + Copyright (C) 2014-2021 Carl Hetherington This file is part of libdcp. @@ -31,10 +31,12 @@ files in the program, then also delete it here. */ -/** @file src/reel_picture_asset.h - * @brief ReelPictureAsset class. + +/** @file src/reel_picture_asset.cc + * @brief ReelPictureAsset class */ + #include "reel_picture_asset.h" #include "picture_asset.h" #include "dcp_assert.h" @@ -45,25 +47,28 @@ #include #include + using std::bad_cast; using std::string; -using boost::shared_ptr; -using boost::dynamic_pointer_cast; +using std::shared_ptr; +using std::dynamic_pointer_cast; using boost::optional; using namespace dcp; + ReelPictureAsset::ReelPictureAsset (shared_ptr asset, int64_t entry_point) : ReelAsset (asset->id(), asset->edit_rate(), asset->intrinsic_duration(), entry_point) - , ReelMXF (asset, asset->key_id()) + , ReelFileAsset (asset, asset->key_id()) , _frame_rate (asset->frame_rate ()) , _screen_aspect_ratio (asset->screen_aspect_ratio ()) { } + ReelPictureAsset::ReelPictureAsset (shared_ptr node) : ReelAsset (node) - , ReelMXF (node) + , ReelFileAsset (node) { _frame_rate = Fraction (node->string_child ("FrameRate")); try { @@ -79,13 +84,14 @@ ReelPictureAsset::ReelPictureAsset (shared_ptr node) } } + xmlpp::Node* ReelPictureAsset::write_to_cpl (xmlpp::Node* node, Standard standard) const { - xmlpp::Node* asset = write_to_cpl_base (node, standard, hash()); + auto asset = write_to_cpl_asset (node, standard, hash()); asset->add_child("FrameRate")->add_child_text(String::compose("%1 %2", _frame_rate.numerator, _frame_rate.denominator)); - if (standard == INTEROP) { + if (standard == Standard::INTEROP) { /* Allowed values for this tag from the standard */ float allowed[] = { 1.33, 1.66, 1.77, 1.85, 2.00, 2.39 }; @@ -112,21 +118,19 @@ ReelPictureAsset::write_to_cpl (xmlpp::Node* node, Standard standard) const ); } - if (key_id ()) { - /* Find */ - xmlpp::Node* hash = find_child (asset, "Hash"); - asset->add_child_before(hash, "KeyId")->add_child_text("urn:uuid:" + key_id().get()); - } + write_to_cpl_mxf (asset); return asset; } + string ReelPictureAsset::key_type () const { return "MDIK"; } + bool ReelPictureAsset::equals (shared_ptr other, EqualityOptions opt, NoteHandler note) const { @@ -137,18 +141,18 @@ ReelPictureAsset::equals (shared_ptr other, EqualityOpti return false; } - shared_ptr rpa = dynamic_pointer_cast (other); + auto rpa = dynamic_pointer_cast(other); if (!rpa) { return false; } if (_frame_rate != rpa->_frame_rate) { - note (DCP_ERROR, "frame rates differ in reel"); + note (NoteType::ERROR, "frame rates differ in reel"); return false; } if (_screen_aspect_ratio != rpa->_screen_aspect_ratio) { - note (DCP_ERROR, "screen aspect ratios differ in reel"); + note (NoteType::ERROR, "screen aspect ratios differ in reel"); return false; }