summaryrefslogtreecommitdiff
path: root/src/reel_picture_asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-02 01:01:00 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-02 01:01:00 +0100
commite0ab473ef01c5301929845a1ca4898568b6fbd71 (patch)
tree8f6808183829305b308a7985f47cfbaa29bf54ff /src/reel_picture_asset.h
parent91563c058a8d2207437a482d4cc63c5a166a26f4 (diff)
No-op; comments.
Diffstat (limited to 'src/reel_picture_asset.h')
-rw-r--r--src/reel_picture_asset.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/reel_picture_asset.h b/src/reel_picture_asset.h
index 96c4b63b..1607379a 100644
--- a/src/reel_picture_asset.h
+++ b/src/reel_picture_asset.h
@@ -42,14 +42,19 @@ public:
virtual void write_to_cpl (xmlpp::Node* node, Standard standard) const;
virtual bool equals (boost::shared_ptr<const ReelAsset>, EqualityOptions, NoteHandler) const;
+ /** @return the PictureMXF that this object refers to */
boost::shared_ptr<PictureMXF> mxf () {
return boost::dynamic_pointer_cast<PictureMXF> (_content.object ());
}
+ /** @return picture frame rate */
Fraction frame_rate () const {
return _frame_rate;
}
+ /** Set the ScreenAspectRatio of this asset.
+ * @param a New aspect ratio.
+ */
void set_screen_aspect_ratio (Fraction a) {
_screen_aspect_ratio = a;
}