diff options
| -rw-r--r-- | src/lib/dcp_content.cc | 3 | ||||
| -rw-r--r-- | src/lib/dcp_decoder.cc | 10 |
2 files changed, 12 insertions, 1 deletions
diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index 1dffa6b36..ad1f07718 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -541,6 +541,9 @@ DCPContent::can_reference_audio (string& why_not) const } catch (dcp::DCPReadError) { /* We couldn't read the DCP, so it's probably missing */ return false; + } catch (DCPError) { + /* We couldn't read the DCP, so it's probably missing */ + return false; } catch (dcp::KDMDecryptionError) { /* We have an incorrect KDM */ return false; diff --git a/src/lib/dcp_decoder.cc b/src/lib/dcp_decoder.cc index 5f06501b6..2433ad0fb 100644 --- a/src/lib/dcp_decoder.cc +++ b/src/lib/dcp_decoder.cc @@ -44,6 +44,8 @@ #include <boost/foreach.hpp> #include <iostream> +#include "i18n.h" + using std::list; using std::cout; using boost::shared_ptr; @@ -65,8 +67,14 @@ DCPDecoder::DCPDecoder (shared_ptr<const DCPContent> c, shared_ptr<Log> log, boo subtitle.reset (new SubtitleDecoder (this, c->subtitle, log, ContentTime())); } + list<shared_ptr<dcp::CPL> > cpl_list = cpls (); + + if (cpl_list.empty()) { + throw DCPError (_("No CPLs found in DCP.")); + } + shared_ptr<dcp::CPL> cpl; - BOOST_FOREACH (shared_ptr<dcp::CPL> i, cpls ()) { + BOOST_FOREACH (shared_ptr<dcp::CPL> i, cpl_list) { if (_dcp_content->cpl() && i->id() == _dcp_content->cpl().get()) { cpl = i; } |
