diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-07-20 14:36:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-07-20 14:36:16 +0100 |
| commit | 454e76146a5bd522e47ebbedd490e89ef95dd186 (patch) | |
| tree | 680f06149597f5ca28c3235e8f570e953b8b6ec3 /src/reel_picture_asset.cc | |
| parent | b371e448833d5a2bac837698c756f27786e38737 (diff) | |
Put ReelAsset key id into a new ReelMXFAsset.
Diffstat (limited to 'src/reel_picture_asset.cc')
| -rw-r--r-- | src/reel_picture_asset.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/reel_picture_asset.cc b/src/reel_picture_asset.cc index 344f7019..c8556b4c 100644 --- a/src/reel_picture_asset.cc +++ b/src/reel_picture_asset.cc @@ -41,16 +41,16 @@ ReelPictureAsset::ReelPictureAsset () } -ReelPictureAsset::ReelPictureAsset (boost::shared_ptr<PictureMXF> content, int64_t entry_point) - : ReelAsset (content, content->edit_rate(), content->intrinsic_duration(), entry_point) +ReelPictureAsset::ReelPictureAsset (shared_ptr<PictureMXF> content, int64_t entry_point) + : ReelMXFAsset (content, content->edit_rate(), content->intrinsic_duration(), entry_point) , _frame_rate (content->frame_rate ()) , _screen_aspect_ratio (content->screen_aspect_ratio ()) { } -ReelPictureAsset::ReelPictureAsset (boost::shared_ptr<const cxml::Node> node) - : ReelAsset (node) +ReelPictureAsset::ReelPictureAsset (shared_ptr<const cxml::Node> node) + : ReelMXFAsset (node) { _frame_rate = Fraction (node->string_child ("FrameRate")); try { @@ -69,7 +69,7 @@ ReelPictureAsset::ReelPictureAsset (boost::shared_ptr<const cxml::Node> node) void ReelPictureAsset::write_to_cpl (xmlpp::Node* node, Standard standard) const { - ReelAsset::write_to_cpl (node, standard); + ReelMXFAsset::write_to_cpl (node, standard); xmlpp::Node::NodeList c = node->get_children (); xmlpp::Node::NodeList::iterator i = c.begin(); |
