X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fverify_dcp_dialog.cc;h=42728614f2b0f18425f98a872144a3833bfff492;hb=94aadbd62c259a73d7511522dd167d519c68c5f9;hp=c3cf5cc2250bf7db52698fddf6d13a83f64d4413;hpb=f6557e4bedd788a026d48fe883cb48a1070dc886;p=dcpomatic.git diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index c3cf5cc22..42728614f 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -122,6 +122,24 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr job ); } break; + case dcp::VerificationNote::MISSING_ASSETMAP: + text = _("No ASSETMAP or ASSETMAP.xml file was found."); + break; + case dcp::VerificationNote::INTRINSIC_DURATION_TOO_SMALL: + text = _("An asset has an instrinsic duration of less than 1 second, which is invalid."); + break; + case dcp::VerificationNote::DURATION_TOO_SMALL: + text = _("An asset has a duration of less than 1 second, which is invalid."); + break; + case dcp::VerificationNote::PICTURE_FRAME_TOO_LARGE: + text = _("At least one frame of the video data is over the limit of 250Mbit/s."); + break; + case dcp::VerificationNote::PICTURE_FRAME_NEARLY_TOO_LARGE: + text = _("At least one frame of the video data is close to the limit of 250MBit/s."); + break; + case dcp::VerificationNote::EXTERNAL_ASSET: + text = _("This DCP refers to at least one asset in another DCP, so it is a \"version file\" (VF)"); + break; } _text->WriteText (text);