summaryrefslogtreecommitdiff
path: root/src/reel_picture_asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-04 16:42:03 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-05 14:34:42 +0100
commit2105caa32a12236d5b70a0cf8b9ac62fcf7f574e (patch)
treec19bc651579257b262ab5001790790b75edc95c8 /src/reel_picture_asset.h
parent4f590672720ace3ccb9582a2f539683fa83e1ac8 (diff)
Remove unnecessary Content class.
Diffstat (limited to 'src/reel_picture_asset.h')
-rw-r--r--src/reel_picture_asset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reel_picture_asset.h b/src/reel_picture_asset.h
index 1607379a..fd4d11fc 100644
--- a/src/reel_picture_asset.h
+++ b/src/reel_picture_asset.h
@@ -36,7 +36,7 @@ class ReelPictureAsset : public ReelMXFAsset
{
public:
ReelPictureAsset ();
- ReelPictureAsset (boost::shared_ptr<PictureMXF> content, int64_t entry_point);
+ ReelPictureAsset (boost::shared_ptr<PictureMXF> asset, int64_t entry_point);
ReelPictureAsset (boost::shared_ptr<const cxml::Node>);
virtual void write_to_cpl (xmlpp::Node* node, Standard standard) const;
@@ -44,7 +44,7 @@ public:
/** @return the PictureMXF that this object refers to */
boost::shared_ptr<PictureMXF> mxf () {
- return boost::dynamic_pointer_cast<PictureMXF> (_content.object ());
+ return boost::dynamic_pointer_cast<PictureMXF> (_asset.object ());
}
/** @return picture frame rate */