diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-07-15 03:36:59 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-15 18:03:57 +0200 |
| commit | 21415bdb69a99c4fc36cf4b5e5160a171bb1cad4 (patch) | |
| tree | 46265de6587585d292ac4c97267327af0c359c1c /test/remake_with_subtitle_test.cc | |
| parent | 6207d271effad4e691a5155ccdad083e03b010bc (diff) | |
Change Film::examine_and_add_content to take a vector of content.
Diffstat (limited to 'test/remake_with_subtitle_test.cc')
| -rw-r--r-- | test/remake_with_subtitle_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/remake_with_subtitle_test.cc b/test/remake_with_subtitle_test.cc index c46a4f70d..0528f8e75 100644 --- a/test/remake_with_subtitle_test.cc +++ b/test/remake_with_subtitle_test.cc @@ -38,7 +38,7 @@ BOOST_AUTO_TEST_CASE (remake_with_subtitle_test) auto film = new_test_film("remake_with_subtitle_test"); film->set_video_bit_rate(VideoEncoding::JPEG2000, 100000000); auto content = dynamic_pointer_cast<FFmpegContent>(content_factory(TestPaths::private_data() / "prophet_short_clip.mkv")[0]); - film->examine_and_add_content (content); + film->examine_and_add_content({content}); BOOST_REQUIRE (!wait_for_jobs ()); content->only_text()->set_burn (true); content->only_text()->set_use (true); |
