summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-02-13 20:33:14 +0000
committerCarl Hetherington <cth@carlh.net>2017-02-13 20:33:14 +0000
commitce32d6cd30b916acc30d19241168ad4e41be6bda (patch)
treefceda38ca3ec7135e239f82f9ae6dec57dbedd5d /src
parent15f7f4ab0f89e7881d1249dab00b716045bcdf42 (diff)
Another better error.
Diffstat (limited to 'src')
-rw-r--r--src/dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index 884e3cb5..b633c499 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -224,7 +224,7 @@ DCP::read (bool keep_going, ReadErrors* errors, bool ignore_incorrect_picture_mx
other_assets.push_back (shared_ptr<SMPTESubtitleAsset> (new SMPTESubtitleAsset (path)));
break;
default:
- throw DCPReadError ("Unknown MXF essence type");
+ throw DCPReadError (String::compose ("Unknown MXF essence type %1 in %2", int(type), path.string()));
}
} else if (boost::filesystem::extension (path) == ".ttf") {
other_assets.push_back (shared_ptr<FontAsset> (new FontAsset (i->first, path)));