diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-08-22 15:28:46 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-08-22 15:28:46 +0100 |
| commit | 1a3818e1c76321095553c91f846478ca44ffb14d (patch) | |
| tree | 80fec045d9ccf3b7024c1fd41e1cf4b93b759587 /src/picture_asset.h | |
| parent | 8b8bce8d2a83739f96e02a48b77d352414361c43 (diff) | |
Use entry points.
Diffstat (limited to 'src/picture_asset.h')
| -rw-r--r-- | src/picture_asset.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/picture_asset.h b/src/picture_asset.h index c21e8cd5..ae457984 100644 --- a/src/picture_asset.h +++ b/src/picture_asset.h @@ -34,7 +34,7 @@ class StereoPictureFrame; class PictureAsset : public MXFAsset { public: - PictureAsset (std::string directory, std::string mxf_name, sigc::signal1<void, float>* progress, int fps, int length); + PictureAsset (std::string directory, std::string mxf_name, sigc::signal1<void, float>* progress, int fps, int entry_point, int length); /** Write details of this asset to a CPL stream. * @param s Stream. @@ -105,7 +105,7 @@ public: int height ); - MonoPictureAsset (std::string directory, std::string mxf_name, int fps, int length); + MonoPictureAsset (std::string directory, std::string mxf_name, int fps, int entry_point, int length); boost::shared_ptr<const MonoPictureFrame> get_frame (int n) const; @@ -117,7 +117,7 @@ private: class StereoPictureAsset : public PictureAsset { public: - StereoPictureAsset (std::string directory, std::string mxf_name, int fps, int length); + StereoPictureAsset (std::string directory, std::string mxf_name, int fps, int entry_point, int length); boost::shared_ptr<const StereoPictureFrame> get_frame (int n) const; }; |
