diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-06 11:58:40 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-06 11:58:40 +0200 |
| commit | e3dade3fa75a1f2c2b64293aa06fd49e9d0b99db (patch) | |
| tree | c2cfc55c7b904debdf19d935c52782106ca4aa36 /test | |
| parent | c53884e0a6f0533f90e688332ac60fa828b8ccc1 (diff) | |
Ignore JPEG2000 guard bits warning in a test using an old MXF.
Diffstat (limited to 'test')
| -rw-r--r-- | test/video_mxf_content_test.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/video_mxf_content_test.cc b/test/video_mxf_content_test.cc index f110062d1..1880935b1 100644 --- a/test/video_mxf_content_test.cc +++ b/test/video_mxf_content_test.cc @@ -63,7 +63,13 @@ BOOST_AUTO_TEST_CASE (video_mxf_content_test) BOOST_REQUIRE (check); film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs()); - make_and_verify_dcp (film, { dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE }); + make_and_verify_dcp ( + film, + { + dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, + dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE, + dcp::VerificationNote::Code::INVALID_JPEG2000_GUARD_BITS_FOR_2K + }); auto ref = make_shared<dcp::MonoPictureAsset>(ref_mxf); boost::filesystem::directory_iterator i ("build/test/video_mxf_content_test/video"); |
