Various alignment adjustments.
[dcpomatic.git] / test / ffmpeg_audio_test.cc
index 5a36b99f40c23600ea98ef637e27a6f83538b9a8..0cc602a9a50e5cef77de5c502135544a44d98d6f 100644 (file)
@@ -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<Player>(film);
+       auto player = make_shared<Player>(film, false);
        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<Player>(film);
+       auto player = make_shared<Player>(film, false);
        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<Player>(film);
+       auto player = make_shared<Player>(film, false);
        player->set_fast ();
        BOOST_CHECK_NO_THROW (while (!player->pass()) {});
 }