Merge branch '1.0' of ssh://main.carlh.net/home/carl/git/libdcp into 1.0
[libdcp.git] / src / reel_asset.h
index e6e0fff53efcfaa078a6d695000dfdf71715c895..40eb6986f975aeb27c7b9c69527b9a0ac359cb74 100644 (file)
@@ -48,7 +48,7 @@ class ReelAsset : public Object
 {
 public:
        ReelAsset ();
-       ReelAsset (boost::shared_ptr<Content> content, int64_t entry_point);
+       ReelAsset (boost::shared_ptr<Content> content, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point);
        ReelAsset (boost::shared_ptr<const cxml::Node>);
 
        virtual void write_to_cpl (xmlpp::Node* node, Standard standard) const;
@@ -74,6 +74,10 @@ public:
                return !_key_id.empty ();
        }
 
+       int64_t entry_point () const {
+               return _entry_point;
+       }
+
        int64_t duration () const {
                return _duration;
        }