From 36b2009f89fdde05d2c9b8b44aa2bf8fe3b555cb Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 4 Oct 2013 11:01:35 +0100 Subject: More boost::filesystem jibber jabber. --- src/stereo_picture_frame.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stereo_picture_frame.cc') 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)); } -- cgit v1.2.3