diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-04-22 21:20:12 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-04-22 21:20:12 +0200 |
| commit | 7fcd6582a19519331b71c2662b6f9e734ee9b2d9 (patch) | |
| tree | c1e52f4095c90c7547424662b43f651be1e62000 | |
| parent | 3ea062ba698f1b25a31a96c88e492d9f6096d14a (diff) | |
Add some more bandwidths to a test.
| -rw-r--r-- | test/j2k_bandwidth_test.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/j2k_bandwidth_test.cc b/test/j2k_bandwidth_test.cc index 70182f409..04e30d651 100644 --- a/test/j2k_bandwidth_test.cc +++ b/test/j2k_bandwidth_test.cc @@ -58,7 +58,8 @@ check (int target_bits_per_second) dcp::VerificationNote::Code::MISSING_FFMC_IN_FEATURE, dcp::VerificationNote::Code::MISSING_FFEC_IN_FEATURE, dcp::VerificationNote::Code::NEARLY_INVALID_PICTURE_FRAME_SIZE_IN_BYTES, - dcp::VerificationNote::Code::INVALID_PICTURE_FRAME_SIZE_IN_BYTES + dcp::VerificationNote::Code::INVALID_PICTURE_FRAME_SIZE_IN_BYTES, + dcp::VerificationNote::Code::INVALID_JPEG2000_TILE_PART_SIZE, }); boost::filesystem::directory_iterator i (boost::filesystem::path("build") / "test" / name / "video"); @@ -80,4 +81,9 @@ BOOST_AUTO_TEST_CASE (bandwidth_test) check (150000000); check (200000000); check (250000000); + check (300000000); + check (350000000); + check (400000000); + check (450000000); + check (500000000); } |
