X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftypes.cc;h=ac7920a2c05e8d960c57df641b51cdf86d86532f;hb=28111007e2e6fd62f5810be780706ae1618bd33f;hp=19e5da6ec78aa8c39c099f06d47f206cb3ab746d;hpb=2596b1db2fff8a9cc56be97099442dc791692882;p=dcpomatic.git diff --git a/src/lib/types.cc b/src/lib/types.cc index 19e5da6ec..ac7920a2c 100644 --- a/src/lib/types.cc +++ b/src/lib/types.cc @@ -21,21 +21,25 @@ #include "types.h" #include "compose.hpp" #include "dcpomatic_assert.h" +#include "warnings.h" #include #include #include #include #include +DCPOMATIC_DISABLE_WARNINGS #include +DCPOMATIC_ENABLE_WARNINGS #include -#include #include "i18n.h" using std::max; using std::min; using std::string; -using boost::shared_ptr; +using std::list; +using std::shared_ptr; +using std::vector; using dcp::raw_convert; bool operator== (Crop const & a, Crop const & b) @@ -193,15 +197,23 @@ CPLSummary::CPLSummary (boost::filesystem::path p) : dcp_directory (p.leaf().string()) { dcp::DCP dcp (p); - dcp.read (); + + vector notes; + dcp.read (¬es); + for (auto i: notes) { + if (i.code() != dcp::VerificationNote::Code::EXTERNAL_ASSET) { + /* It's not just a warning about this DCP being a VF */ + throw dcp::ReadError(dcp::note_to_string(i)); + } + } cpl_id = dcp.cpls().front()->id(); cpl_annotation_text = dcp.cpls().front()->annotation_text(); cpl_file = dcp.cpls().front()->file().get(); encrypted = false; - BOOST_FOREACH (shared_ptr j, dcp.cpls()) { - BOOST_FOREACH (shared_ptr k, j->reel_mxfs()) { + for (auto j: dcp.cpls()) { + for (auto k: j->reel_mxfs()) { if (k->key_id()) { encrypted = true; } @@ -210,3 +222,38 @@ CPLSummary::CPLSummary (boost::filesystem::path p) last_write_time = boost::filesystem::last_write_time (p); } + + +bool operator== (NamedChannel const& a, NamedChannel const& b) +{ + return a.name == b.name && a.index == b.index; +} + + +string +video_range_to_string (VideoRange r) +{ + switch (r) { + case VIDEO_RANGE_FULL: + return "full"; + case VIDEO_RANGE_VIDEO: + return "video"; + default: + DCPOMATIC_ASSERT (false); + } +} + + +VideoRange +string_to_video_range (string s) +{ + if (s == "full") { + return VIDEO_RANGE_FULL; + } else if (s == "video") { + return VIDEO_RANGE_VIDEO; + } + + DCPOMATIC_ASSERT (false); + return VIDEO_RANGE_FULL; +} +