summaryrefslogtreecommitdiff
path: root/src/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-09-09 11:09:34 +0100
committerCarl Hetherington <cth@carlh.net>2012-09-09 11:09:34 +0100
commit403c1e43d7e12af9ae72291f4bdff78fd242f9f6 (patch)
tree7a0e25694681624138191af93ac155c221c67646 /src/dcp.cc
parent8925dbc6d45a6aacc2828a4f58102caa51179286 (diff)
PKL -> PKLFile.
Diffstat (limited to 'src/dcp.cc')
-rw-r--r--src/dcp.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index f7ded2c4..907f7dd5 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -37,7 +37,7 @@
#include "metadata.h"
#include "exceptions.h"
#include "cpl_file.h"
-#include "pkl.h"
+#include "pkl_file.h"
#include "asset_map.h"
#include "reel.h"
@@ -295,9 +295,9 @@ DCP::DCP (string directory, bool require_mxfs)
throw FileError ("could not load CPL file", files.cpl);
}
- shared_ptr<PKL> pkl;
+ shared_ptr<PKLFile> pkl;
try {
- pkl.reset (new PKL (files.pkl));
+ pkl.reset (new PKLFile (files.pkl));
} catch (FileError& e) {
throw FileError ("could not load PKL file", files.pkl);
}