X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=test%2Fffmpeg_audio_test.cc;h=ea7293f13d00936299c3a698e46fb11a26c7bdb0;hb=ca0becb1dd13b47a8f1b7976dedc44466c49d0a7;hp=0cc602a9a50e5cef77de5c502135544a44d98d6f;hpb=9bfa07293928c371d59db2091ba2b7e715ce5994;p=dcpomatic.git diff --git a/test/ffmpeg_audio_test.cc b/test/ffmpeg_audio_test.cc index 0cc602a9a..ea7293f13 100644 --- a/test/ffmpeg_audio_test.cc +++ b/test/ffmpeg_audio_test.cc @@ -131,11 +131,11 @@ BOOST_AUTO_TEST_CASE (ffmpeg_audio_test) BOOST_AUTO_TEST_CASE (ffmpeg_audio_test2) { auto film = new_test_film2 ("ffmpeg_audio_test2"); - auto content = content_factory(TestPaths::private_data() / "wayne.mkv").front(); + auto content = content_factory(TestPaths::private_data() / "wayne.mkv")[0]; film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs ()); - auto player = make_shared(film, false); + auto player = make_shared(film, Image::Alignment::COMPACT); while (!player->pass ()) {} } @@ -144,11 +144,11 @@ BOOST_AUTO_TEST_CASE (ffmpeg_audio_test2) BOOST_AUTO_TEST_CASE (ffmpeg_audio_test3) { auto film = new_test_film2 ("ffmpeg_audio_test3"); - auto content = content_factory(TestPaths::private_data() / "wayne.mkv").front(); + auto content = content_factory(TestPaths::private_data() / "wayne.mkv")[0]; film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs ()); - auto player = make_shared(film, false); + auto player = make_shared(film, Image::Alignment::COMPACT); player->set_fast (); while (!player->pass ()) {} } @@ -158,11 +158,11 @@ BOOST_AUTO_TEST_CASE (ffmpeg_audio_test3) BOOST_AUTO_TEST_CASE (ffmpeg_audio_test4) { auto film = new_test_film2 ("ffmpeg_audio_test4"); - auto content = content_factory(TestPaths::private_data() / "Actuellement aout 2020.wmv").front(); + auto content = content_factory(TestPaths::private_data() / "Actuellement aout 2020.wmv")[0]; film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs ()); - auto player = make_shared(film, false); + auto player = make_shared(film, Image::Alignment::COMPACT); player->set_fast (); BOOST_CHECK_NO_THROW (while (!player->pass()) {}); }