summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-01-29 12:43:08 +0100
committerCarl Hetherington <cth@carlh.net>2024-02-03 09:57:25 +0100
commit9d1d1cea1cdf17b4cc2208800ca22288f979d3ec (patch)
tree1701ed45b98da6934b58863cc04a2ae275f1a7d6 /test
parent9dde4369853ef513a0fae68282cc0d152e761ea7 (diff)
Support alpha blend onto YUV444P9LE and YUV444P10LE (68 and 70).
Diffstat (limited to 'test')
-rw-r--r--test/image_test.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/image_test.cc b/test/image_test.cc
index 190e550ab..cad30813c 100644
--- a/test/image_test.cc
+++ b/test/image_test.cc
@@ -244,6 +244,8 @@ BOOST_AUTO_TEST_CASE (alpha_blend_test)
alpha_blend_test_bgra_onto(AV_PIX_FMT_YUV420P10, "yuv420p10");
alpha_blend_test_bgra_onto(AV_PIX_FMT_YUV422P9LE, "yuv422p9le");
alpha_blend_test_bgra_onto(AV_PIX_FMT_YUV422P10LE, "yuv422p10le");
+ alpha_blend_test_bgra_onto(AV_PIX_FMT_YUV444P9LE, "yuv444p9le");
+ alpha_blend_test_bgra_onto(AV_PIX_FMT_YUV444P10LE, "yuv444p10le");
alpha_blend_test_rgba64be_onto(AV_PIX_FMT_RGB24, "rgb24");
alpha_blend_test_rgba64be_onto(AV_PIX_FMT_BGRA, "bgra");
@@ -253,6 +255,8 @@ BOOST_AUTO_TEST_CASE (alpha_blend_test)
alpha_blend_test_rgba64be_onto(AV_PIX_FMT_YUV420P10, "yuv420p10");
alpha_blend_test_rgba64be_onto(AV_PIX_FMT_YUV422P9LE, "yuv422p9le");
alpha_blend_test_rgba64be_onto(AV_PIX_FMT_YUV422P10LE, "yuv422p10le");
+ alpha_blend_test_rgba64be_onto(AV_PIX_FMT_YUV444P9LE, "yuv444p9le");
+ alpha_blend_test_rgba64be_onto(AV_PIX_FMT_YUV444P10LE, "yuv444p10le");
}