summaryrefslogtreecommitdiff
path: root/src/stereo_picture_frame.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-10-08 22:29:16 +0100
committerCarl Hetherington <cth@carlh.net>2013-10-08 22:29:16 +0100
commit259113a96dc9dfbef0b26ff2e142ee673abcd53d (patch)
tree8d96acab6c55a33d58d70d83bf45cbaad4d6ee78 /src/stereo_picture_frame.cc
parente5151fad94eb86a6aa1d408e2e5eb2706ff41884 (diff)
parentcccca6f650b4f5dc61a3c992c9c515b064e0704c (diff)
Merge branch 'master' of ssh://carlh.dyndns.org/home/carl/git/libdcp
Diffstat (limited to 'src/stereo_picture_frame.cc')
-rw-r--r--src/stereo_picture_frame.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stereo_picture_frame.cc b/src/stereo_picture_frame.cc
index 279fe7a0..6af79033 100644
--- a/src/stereo_picture_frame.cc
+++ b/src/stereo_picture_frame.cc
@@ -38,10 +38,10 @@ using namespace libdcp;
* @param mxf_path Path to the asset's MXF file.
* @param n Frame within the asset, not taking EntryPoint into account.
*/
-StereoPictureFrame::StereoPictureFrame (string mxf_path, int n)
+StereoPictureFrame::StereoPictureFrame (boost::filesystem::path mxf_path, int n)
{
ASDCP::JP2K::MXFSReader reader;
- if (ASDCP_FAILURE (reader.OpenRead (mxf_path.c_str()))) {
+ if (ASDCP_FAILURE (reader.OpenRead (mxf_path.string().c_str()))) {
boost::throw_exception (FileError ("could not open MXF file for reading", mxf_path));
}