summaryrefslogtreecommitdiff
path: root/test/video_level_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-07-15 03:36:59 +0200
committerCarl Hetherington <cth@carlh.net>2025-07-15 18:03:57 +0200
commit21415bdb69a99c4fc36cf4b5e5160a171bb1cad4 (patch)
tree46265de6587585d292ac4c97267327af0c359c1c /test/video_level_test.cc
parent6207d271effad4e691a5155ccdad083e03b010bc (diff)
Change Film::examine_and_add_content to take a vector of content.
Diffstat (limited to 'test/video_level_test.cc')
-rw-r--r--test/video_level_test.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/video_level_test.cc b/test/video_level_test.cc
index 01f93bfcb..82038e33b 100644
--- a/test/video_level_test.cc
+++ b/test/video_level_test.cc
@@ -313,7 +313,7 @@ movie_V (string name)
auto film = new_test_film(name);
auto content = dynamic_pointer_cast<FFmpegContent>(content_factory("test/data/rgb_grey_testcard.mp4")[0]);
BOOST_REQUIRE (content);
- film->examine_and_add_content (content);
+ film->examine_and_add_content({content});
BOOST_REQUIRE (!wait_for_jobs());
auto range = pixel_range (film, content);
@@ -332,7 +332,7 @@ movie_VoF (string name)
auto film = new_test_film(name);
auto content = dynamic_pointer_cast<FFmpegContent>(content_factory("test/data/rgb_grey_testcard.mp4")[0]);
BOOST_REQUIRE (content);
- film->examine_and_add_content (content);
+ film->examine_and_add_content({content});
BOOST_REQUIRE (!wait_for_jobs());
content->video->set_range (VideoRange::FULL);
@@ -351,7 +351,7 @@ movie_F (string name)
auto film = new_test_film(name);
auto content = dynamic_pointer_cast<FFmpegContent>(content_factory("test/data/rgb_grey_testcard.mov")[0]);
BOOST_REQUIRE (content);
- film->examine_and_add_content (content);
+ film->examine_and_add_content({content});
BOOST_REQUIRE (!wait_for_jobs());
BOOST_CHECK(content->video->range() == VideoRange::FULL);
@@ -371,7 +371,7 @@ movie_FoV (string name)
auto film = new_test_film(name);
auto content = dynamic_pointer_cast<FFmpegContent>(content_factory("test/data/rgb_grey_testcard.mov")[0]);
BOOST_REQUIRE (content);
- film->examine_and_add_content (content);
+ film->examine_and_add_content({content});
BOOST_REQUIRE (!wait_for_jobs());
content->video->set_range (VideoRange::VIDEO);
@@ -390,7 +390,7 @@ image_F (string name)
auto film = new_test_film(name);
auto content = dynamic_pointer_cast<ImageContent>(content_factory("test/data/rgb_grey_testcard.png")[0]);
BOOST_REQUIRE (content);
- film->examine_and_add_content (content);
+ film->examine_and_add_content({content});
BOOST_REQUIRE (!wait_for_jobs());
auto range = pixel_range (film, content);
@@ -408,7 +408,7 @@ image_FoV (string name)
auto film = new_test_film(name);
auto content = dynamic_pointer_cast<ImageContent>(content_factory("test/data/rgb_grey_testcard.png")[0]);
BOOST_REQUIRE (content);
- film->examine_and_add_content (content);
+ film->examine_and_add_content({content});
BOOST_REQUIRE (!wait_for_jobs());
content->video->set_range (VideoRange::VIDEO);
@@ -430,7 +430,7 @@ dcp_F (string name)
boost::filesystem::path const dcp = "test/data/RgbGreyTestcar_TST-1_F_MOS_2K_20201115_SMPTE_OV";
auto film = new_test_film(name);
auto content = make_shared<DCPContent>(dcp);
- film->examine_and_add_content (content);
+ film->examine_and_add_content({content});
BOOST_REQUIRE (!wait_for_jobs());
auto range = pixel_range (dcp);
@@ -469,7 +469,7 @@ V_movie_range (shared_ptr<Film> film)
/* This is a bit of a hack; add the exported file into the project so we can decode it */
auto content = make_shared<FFmpegContent>(film->file("export.mov"));
- film->examine_and_add_content (content);
+ film->examine_and_add_content({content});
BOOST_REQUIRE (!wait_for_jobs());
return pixel_range (film, content);