summaryrefslogtreecommitdiff
path: root/src/lib/video_mxf_decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-04-14 21:02:56 +0200
committerCarl Hetherington <cth@carlh.net>2020-04-14 21:02:56 +0200
commitb029cb06c4e0fca1fad9fecd78939efe5532fa9a (patch)
treebbef53fcce4acb1ed3d8e23100f9944b11ad7d67 /src/lib/video_mxf_decoder.cc
parent0877bf6d06de8e6f768534ec40c26bf629618a20 (diff)
DCPReadError -> ReadError in libdcp.
Diffstat (limited to 'src/lib/video_mxf_decoder.cc')
-rw-r--r--src/lib/video_mxf_decoder.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/video_mxf_decoder.cc b/src/lib/video_mxf_decoder.cc
index 4482606f0..030db64ef 100644
--- a/src/lib/video_mxf_decoder.cc
+++ b/src/lib/video_mxf_decoder.cc
@@ -44,7 +44,7 @@ VideoMXFDecoder::VideoMXFDecoder (shared_ptr<const Film> film, shared_ptr<const
mono.reset (new dcp::MonoPictureAsset (_content->path(0)));
} catch (dcp::MXFFileError& e) {
/* maybe it's stereo */
- } catch (dcp::DCPReadError& e) {
+ } catch (dcp::ReadError& e) {
/* maybe it's stereo */
}
@@ -55,7 +55,7 @@ VideoMXFDecoder::VideoMXFDecoder (shared_ptr<const Film> film, shared_ptr<const
if (!mono) {
throw;
}
- } catch (dcp::DCPReadError& e) {
+ } catch (dcp::ReadError& e) {
if (!mono) {
throw;
}