summaryrefslogtreecommitdiff
path: root/src/mxf_asset.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-08-22 15:28:46 +0100
committerCarl Hetherington <cth@carlh.net>2012-08-22 15:28:46 +0100
commit1a3818e1c76321095553c91f846478ca44ffb14d (patch)
tree80fec045d9ccf3b7024c1fd41e1cf4b93b759587 /src/mxf_asset.cc
parent8b8bce8d2a83739f96e02a48b77d352414361c43 (diff)
Use entry points.
Diffstat (limited to 'src/mxf_asset.cc')
-rw-r--r--src/mxf_asset.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mxf_asset.cc b/src/mxf_asset.cc
index b5560b26..2246c55d 100644
--- a/src/mxf_asset.cc
+++ b/src/mxf_asset.cc
@@ -34,10 +34,11 @@ using namespace std;
using namespace boost;
using namespace libdcp;
-MXFAsset::MXFAsset (string directory, string file_name, sigc::signal1<void, float>* progress, int fps, int length)
+MXFAsset::MXFAsset (string directory, string file_name, sigc::signal1<void, float>* progress, int fps, int entry_point, int length)
: Asset (directory, file_name)
, _progress (progress)
, _fps (fps)
+ , _entry_point (entry_point)
, _length (length)
{
@@ -120,5 +121,3 @@ MXFAsset::length () const
{
return _length;
}
-
-