X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=test%2Fffmpeg_audio_test.cc;h=6bdadce97e1027b6211c042fbd0a9571bd2ed7a3;hp=5a36b99f40c23600ea98ef637e27a6f83538b9a8;hb=6d686ea45f5cd01a0d11f92a903ac77779ad8562;hpb=ea63ad9560757e56505551db3bf2e1c31be5c76c diff --git a/test/ffmpeg_audio_test.cc b/test/ffmpeg_audio_test.cc index 5a36b99f4..6bdadce97 100644 --- a/test/ffmpeg_audio_test.cc +++ b/test/ffmpeg_audio_test.cc @@ -135,7 +135,7 @@ BOOST_AUTO_TEST_CASE (ffmpeg_audio_test2) film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs ()); - auto player = make_shared(film); + auto player = make_shared(film, Image::Alignment::COMPACT); while (!player->pass ()) {} } @@ -148,7 +148,7 @@ BOOST_AUTO_TEST_CASE (ffmpeg_audio_test3) film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs ()); - auto player = make_shared(film); + auto player = make_shared(film, Image::Alignment::COMPACT); player->set_fast (); while (!player->pass ()) {} } @@ -162,7 +162,7 @@ BOOST_AUTO_TEST_CASE (ffmpeg_audio_test4) film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs ()); - auto player = make_shared(film); + auto player = make_shared(film, Image::Alignment::COMPACT); player->set_fast (); BOOST_CHECK_NO_THROW (while (!player->pass()) {}); }