diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-05-20 16:55:57 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-05-22 10:33:45 +0200 |
| commit | c95ba3eb99c5e4d6dca90cee7e5bb9077b6ed02c (patch) | |
| tree | 82857f50135db65c8750e9e4492536d4639e0a91 /test/video_level_test.cc | |
| parent | e3dba6242aed7415eddbbfb1e5d56ce6680603c1 (diff) | |
Rename new_test_film2 -> new_test_film.
Diffstat (limited to 'test/video_level_test.cc')
| -rw-r--r-- | test/video_level_test.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/video_level_test.cc b/test/video_level_test.cc index bb2c1b7fa..69a8af89e 100644 --- a/test/video_level_test.cc +++ b/test/video_level_test.cc @@ -115,7 +115,7 @@ BOOST_AUTO_TEST_CASE (ffmpeg_image_video_range_expanded) write_image(grey_image(size, grey_pixel), file); auto content = content_factory(file); - auto film = new_test_film2 ("ffmpeg_image_video_range_expanded", content); + auto film = new_test_film("ffmpeg_image_video_range_expanded", content); content[0]->video->set_range (VideoRange::VIDEO); auto player = make_shared<Player>(film, film->playlist()); @@ -310,7 +310,7 @@ static shared_ptr<Film> movie_V (string name) { - auto film = new_test_film2 (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); @@ -328,7 +328,7 @@ static shared_ptr<Film> movie_VoF (string name) { - auto film = new_test_film2 (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); @@ -347,7 +347,7 @@ static shared_ptr<Film> movie_F (string name) { - auto film = new_test_film2 (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); @@ -365,7 +365,7 @@ static shared_ptr<Film> movie_FoV (string name) { - auto film = new_test_film2 (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); @@ -384,7 +384,7 @@ static shared_ptr<Film> image_F (string name) { - auto film = new_test_film2 (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); @@ -402,7 +402,7 @@ static shared_ptr<Film> image_FoV (string name) { - auto film = new_test_film2 (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); @@ -425,7 +425,7 @@ shared_ptr<Film> dcp_F (string name) { boost::filesystem::path const dcp = "test/data/RgbGreyTestcar_TST-1_F_MOS_2K_20201115_SMPTE_OV"; - auto film = new_test_film2 (name); + auto film = new_test_film(name); auto content = make_shared<DCPContent>(dcp); film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs()); |
