diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-17 20:16:10 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-17 20:16:10 +0000 |
| commit | 828c320df8c56208a8834971f5d937ce06a4edf2 (patch) | |
| tree | b9af6538e97ed5d4b845173ec500aa250b8c894e /src/mxf_asset.h | |
| parent | 369ba52fe8b3ddeda734692541471c402016a18d (diff) | |
Pull entry point out of the constructor.
Diffstat (limited to 'src/mxf_asset.h')
| -rw-r--r-- | src/mxf_asset.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mxf_asset.h b/src/mxf_asset.h index b1cb87fe..798a7e50 100644 --- a/src/mxf_asset.h +++ b/src/mxf_asset.h @@ -35,10 +35,11 @@ public: * @param file_name Name of MXF file. * @param progress Signal to inform of progress. * @param fps Frames per second. - * @param entry_point The entry point of this MXF; ie the first frame that should be used. * @param length Length in frames. */ - MXFAsset (std::string directory, std::string file_name, boost::signals2::signal<void (float)>* progress, int fps, int entry_point, int length); + MXFAsset (std::string directory, std::string file_name, boost::signals2::signal<void (float)>* progress, int fps, int length); + + void set_entry_point (int e); virtual bool equals (boost::shared_ptr<const Asset> other, EqualityOptions opt, std::list<std::string>& notes) const; |
