summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-12-30 01:48:29 +0000
committerCarl Hetherington <cth@carlh.net>2017-12-30 01:48:29 +0000
commit3437306d5eb27f7fab350b48be4875335195a254 (patch)
treeb9629e26620dd4f3d841670740deef0a61b05945
parente565ceeea3d842373d97ee21d99775ac1dd1269e (diff)
Add new test.
m---------test/data0
-rw-r--r--test/image_test.cc11
2 files changed, 11 insertions, 0 deletions
diff --git a/test/data b/test/data
-Subproject 4f43d4d9b436448681303e9fa51ae63a81e197e
+Subproject 7c9eb289915b30251e09fbb3e2adc62cc4516d1
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<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");
+}