diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-03-29 15:43:53 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-04-01 23:43:00 +0200 |
| commit | b65880e549432818f750675a4f518eb96d1f486e (patch) | |
| tree | 22d6f967e88d44b9b4e1f40e406798828223218c /test | |
| parent | 814abc3a7afca78c8877d2c9478364c327db7734 (diff) | |
INVALID_PICTURE_SIZE_IN_PIXELS: note -> size_in_pixels.
Diffstat (limited to 'test')
| -rw-r--r-- | test/verify_test.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/verify_test.cc b/test/verify_test.cc index 93ff427e..bef3a871 100644 --- a/test/verify_test.cc +++ b/test/verify_test.cc @@ -1948,7 +1948,9 @@ check_picture_size_bad_frame_size (int width, int height, int frame_rate, bool t ).set_cpl_id(cpl->id()), note(VC::CORRECT_PICTURE_HASH, canonical(dir / "video.mxf"), cpl).set_reel_index(0).set_asset_id(picture_id), note(VC::VALID_PICTURE_FRAME_SIZES_IN_BYTES, canonical(dir / "video.mxf"), cpl).set_reel_index(0).set_asset_id(picture_id), - VN(VC::INVALID_PICTURE_SIZE_IN_PIXELS, dcp::String::compose("%1x%2", width, height), canonical(dir / "video.mxf")).set_cpl_id(cpl->id()).set_reel_index(0).set_asset_id(picture_id), + VN( + VC::INVALID_PICTURE_SIZE_IN_PIXELS, canonical(dir / "video.mxf") + ).set_cpl_id(cpl->id()).set_reel_index(0).set_asset_id(picture_id).set_size_in_pixels({width, height}), }; check_verify_result(notes, expected); } |
