Use a vector rather than a list when returning from content_factory().
[dcpomatic.git] / test / ffmpeg_audio_test.cc
index 6bdadce97e1027b6211c042fbd0a9571bd2ed7a3..ea7293f13d00936299c3a698e46fb11a26c7bdb0 100644 (file)
@@ -131,7 +131,7 @@ 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 ());
 
@@ -144,7 +144,7 @@ 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 ());
 
@@ -158,7 +158,7 @@ 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 ());