diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-09-09 11:09:34 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-09-09 11:09:34 +0100 |
| commit | 403c1e43d7e12af9ae72291f4bdff78fd242f9f6 (patch) | |
| tree | 7a0e25694681624138191af93ac155c221c67646 /src/dcp.cc | |
| parent | 8925dbc6d45a6aacc2828a4f58102caa51179286 (diff) | |
PKL -> PKLFile.
Diffstat (limited to 'src/dcp.cc')
| -rw-r--r-- | src/dcp.cc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); } |
