summaryrefslogtreecommitdiff
path: root/src/picture_asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-01-17 20:16:10 +0000
committerCarl Hetherington <cth@carlh.net>2013-01-17 20:16:10 +0000
commit828c320df8c56208a8834971f5d937ce06a4edf2 (patch)
treeb9af6538e97ed5d4b845173ec500aa250b8c894e /src/picture_asset.h
parent369ba52fe8b3ddeda734692541471c402016a18d (diff)
Pull entry point out of the constructor.
Diffstat (limited to 'src/picture_asset.h')
-rw-r--r--src/picture_asset.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/picture_asset.h b/src/picture_asset.h
index 8bcd0173..4bd7e8e4 100644
--- a/src/picture_asset.h
+++ b/src/picture_asset.h
@@ -35,7 +35,7 @@ class StereoPictureFrame;
class PictureAsset : public MXFAsset
{
public:
- PictureAsset (std::string directory, std::string mxf_name, boost::signals2::signal<void (float)>* progress, int fps, int entry_point, int length);
+ PictureAsset (std::string directory, std::string mxf_name, boost::signals2::signal<void (float)>* progress, int fps, int length);
/** Write details of this asset to a CPL stream.
* @param s Stream.
@@ -103,7 +103,7 @@ public:
Size size
);
- MonoPictureAsset (std::string directory, std::string mxf_name, int fps, int entry_point, int length);
+ MonoPictureAsset (std::string directory, std::string mxf_name, int fps, int length);
boost::shared_ptr<const MonoPictureFrame> get_frame (int n) const;
bool equals (boost::shared_ptr<const Asset> other, EqualityOptions opt, std::list<std::string>& notes) const;
@@ -117,7 +117,7 @@ private:
class StereoPictureAsset : public PictureAsset
{
public:
- StereoPictureAsset (std::string directory, std::string mxf_name, int fps, int entry_point, int length);
+ StereoPictureAsset (std::string directory, std::string mxf_name, int fps, int length);
boost::shared_ptr<const StereoPictureFrame> get_frame (int n) const;
bool equals (boost::shared_ptr<const Asset> other, EqualityOptions opt, std::list<std::string>& notes) const;