Add new test.
authorCarl Hetherington <cth@carlh.net>
Sat, 30 Dec 2017 01:48:29 +0000 (01:48 +0000)
committerCarl Hetherington <cth@carlh.net>
Sat, 30 Dec 2017 01:48:29 +0000 (01:48 +0000)
test/data
test/image_test.cc

index 4f43d4d9b436448681303e9fa51ae63a81e197e6..7c9eb289915b30251e09fbb3e2adc62cc4516d1b 160000 (submodule)
--- a/test/data
+++ b/test/data
@@ -1 +1 @@
-Subproject commit 4f43d4d9b436448681303e9fa51ae63a81e197e6
+Subproject commit 7c9eb289915b30251e09fbb3e2adc62cc4516d1b
index 59000918a0155722a3842324ec9ae72b52b2bcd6..7428d51830e87d9201a6fe91f12094e08f890584 100644 (file)
@@ -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<MagickImageProxy> proxy(new MagickImageProxy("test/data/flat_red.png"));
+       shared_ptr<Image> raw = proxy->image();
+       shared_ptr<Image> 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<Image> 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");
+}