diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-02 01:01:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-02 01:01:00 +0100 |
| commit | e0ab473ef01c5301929845a1ca4898568b6fbd71 (patch) | |
| tree | 8f6808183829305b308a7985f47cfbaa29bf54ff /src/reel_picture_asset.h | |
| parent | 91563c058a8d2207437a482d4cc63c5a166a26f4 (diff) | |
No-op; comments.
Diffstat (limited to 'src/reel_picture_asset.h')
| -rw-r--r-- | src/reel_picture_asset.h | 5 |
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; } |
