Ignore Language node in MainSound.
[libdcp.git] / src / mxf_asset.cc
index b5560b268d698510403fee994a0fdec665448dcf..2246c55d103ea458c0f7ad247f3722773edbdb4e 100644 (file)
@@ -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;
 }
-
-