diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-02-05 13:15:39 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-02-05 13:15:39 +0000 |
| commit | 5d2236bf466ea8592344791e926b075be339c3dc (patch) | |
| tree | 75956c717e3cf490f92ef29259a536199986e922 /src/sound_frame.cc | |
| parent | f9862aff32f7ea5aa10f9362d7598480b1c9cf28 (diff) | |
Fix previous.
Diffstat (limited to 'src/sound_frame.cc')
| -rw-r--r-- | src/sound_frame.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound_frame.cc b/src/sound_frame.cc index da0da194..c79b29b3 100644 --- a/src/sound_frame.cc +++ b/src/sound_frame.cc @@ -32,7 +32,7 @@ using namespace dcp; SoundFrame::SoundFrame (boost::filesystem::path mxf_path, int n, ASDCP::AESDecContext* c) { ASDCP::PCM::MXFReader reader; - Kumu::Result_t r = reader.OpenRead (mxf_path.file().c_str()); + Kumu::Result_t r = reader.OpenRead (mxf_path.string().c_str()); if (ASDCP_FAILURE (r)) { boost::throw_exception (FileError ("could not open MXF file for reading", mxf_path, r)); } |
