summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-03-08 22:07:01 +0100
committerCarl Hetherington <cth@carlh.net>2025-03-08 22:07:01 +0100
commitcdfd7b9dc1e9b56a8ef5b198016679a5ded9164d (patch)
tree87d07c391b89048b043532b2a30c1b9504ef5089
parent636bca85fffa7e639954438d1053081c680967b3 (diff)
fixup! fixup! WIP: test for passing a sRGB input through a DCP and back out again.2879-pink-blue
-rw-r--r--test/image_end_to_end_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/image_end_to_end_test.cc b/test/image_end_to_end_test.cc
index 14674baad..b3a5cc695 100644
--- a/test/image_end_to_end_test.cc
+++ b/test/image_end_to_end_test.cc
@@ -69,7 +69,7 @@ BOOST_AUTO_TEST_CASE(monochrome_test)
auto film = new_test_film("monochrome_test", content);
make_and_verify_dcp(film);
- auto player = std::make_shared<Player>(film, Image::Alignment::PADDED);
+ auto player = std::make_shared<Player>(film, Image::Alignment::PADDED, false);
std::shared_ptr<PlayerVideo> video;
player->Video.connect([&](std::shared_ptr<PlayerVideo> v, dcpomatic::DCPTime) {
@@ -86,7 +86,7 @@ BOOST_AUTO_TEST_CASE(monochrome_test)
auto dcp = std::make_shared<DCPContent>(film->dir(film->dcp_name()));
auto film2 = new_test_film("monochrome_test_reload", { dcp });
- auto player2 = std::make_shared<Player>(film2, Image::Alignment::PADDED);
+ auto player2 = std::make_shared<Player>(film2, Image::Alignment::PADDED, false);
std::shared_ptr<PlayerVideo> video2;
player2->Video.connect([&](std::shared_ptr<PlayerVideo> v, dcpomatic::DCPTime) {