From 3437306d5eb27f7fab350b48be4875335195a254 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 30 Dec 2017 01:48:29 +0000 Subject: [PATCH] Add new test. --- test/data | 2 +- test/image_test.cc | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/test/data b/test/data index 4f43d4d9b..7c9eb2899 160000 --- a/test/data +++ b/test/data @@ -1 +1 @@ -Subproject commit 4f43d4d9b436448681303e9fa51ae63a81e197e6 +Subproject commit 7c9eb289915b30251e09fbb3e2adc62cc4516d1b diff --git a/test/image_test.cc b/test/image_test.cc index 59000918a..7428d5183 100644 --- a/test/image_test.cc +++ b/test/image_test.cc @@ -255,3 +255,14 @@ BOOST_AUTO_TEST_CASE (merge_test2) BOOST_CHECK_EQUAL (m[(x + 32) * 4 + 3], 255); } } + +/** Test Image::crop_scale_window with YUV420P and some windowing */ +BOOST_AUTO_TEST_CASE (crop_scale_window_test) +{ + shared_ptr proxy(new MagickImageProxy("test/data/flat_red.png")); + shared_ptr raw = proxy->image(); + shared_ptr out = raw->crop_scale_window(Crop(), dcp::Size(1998, 836), dcp::Size(1998, 1080), dcp::YUV_TO_RGB_REC709, AV_PIX_FMT_YUV420P, true, false); + shared_ptr save = out->scale(dcp::Size(1998, 1080), dcp::YUV_TO_RGB_REC709, AV_PIX_FMT_RGB24, false, false); + write_image(save, "build/test/crop_scale_window_test.png", "RGB"); + check_image("test/data/crop_scale_window_test.png", "build/test/crop_scale_window_test.png"); +} -- 2.30.2