Use a vector rather than a list when returning from content_factory().
[dcpomatic.git] / test / dcp_decoder_test.cc
index 66cd402c487e415d1a167532048621b40ab3e8e3..da4f6dcbb8bd0f4bb55dc7ee6ef8d9afa8b22ea2 100644 (file)
  */
 
 
-#include "lib/film.h"
+#include "lib/config.h"
+#include "lib/content_factory.h"
 #include "lib/dcp_content.h"
 #include "lib/dcp_decoder.h"
-#include "lib/content_factory.h"
-#include "lib/player.h"
 #include "lib/examine_content_job.h"
+#include "lib/film.h"
 #include "lib/job_manager.h"
-#include "lib/config.h"
+#include "lib/piece.h"
+#include "lib/player.h"
 #include "test.h"
 #include <dcp/cpl.h>
 #include <dcp/dcp.h>
@@ -52,16 +53,16 @@ BOOST_AUTO_TEST_CASE (check_reuse_old_data_test)
 {
        /* Make some DCPs */
 
-       auto ov = new_test_film2 ("check_reuse_old_data_ov", {content_factory("test/data/flat_red.png").front()});
+       auto ov = new_test_film2 ("check_reuse_old_data_ov", content_factory("test/data/flat_red.png"));
        make_and_verify_dcp (ov);
 
        auto ov_content = make_shared<DCPContent>(ov->dir(ov->dcp_name(false)));
-       auto vf = new_test_film2 ("check_reuse_old_data_vf", {ov_content, content_factory("test/data/L.wav").front()});
+       auto vf = new_test_film2 ("check_reuse_old_data_vf", {ov_content, content_factory("test/data/L.wav")[0]});
        ov_content->set_reference_video (true);
        make_and_verify_dcp (vf, {dcp::VerificationNote::Code::EXTERNAL_ASSET});
 
        auto encrypted = new_test_film2 ("check_reuse_old_data_decrypted");
-       encrypted->examine_and_add_content (content_factory("test/data/flat_red.png").front());
+       encrypted->examine_and_add_content (content_factory("test/data/flat_red.png")[0]);
        BOOST_REQUIRE (!wait_for_jobs());
        encrypted->set_encrypted (true);
        make_and_verify_dcp (encrypted);