Supporters update.
[dcpomatic.git] / test / ffmpeg_decoder_error_test.cc
index 414c6138496c31f14bb1e8c8cedf58c548d3cdab..1bb289febeced38777bb38ef3025676ada3abdc3 100644 (file)
@@ -22,6 +22,7 @@
 #include "lib/content.h"
 #include "lib/content_factory.h"
 #include "lib/dcpomatic_time.h"
+#include "lib/film.h"
 #include "lib/player.h"
 #include "test.h"
 #include <boost/test/unit_test.hpp>
@@ -29,7 +30,7 @@
 
 /** @defgroup regression Regression tests */
 
-/** @file  test/ffmpeg_decoder_erro_test.cc
+/** @file  test/ffmpeg_decoder_error_test.cc
  *  @brief Check some bugs in the FFmpegDecoder
  *  @ingroup regression
  */
 
 BOOST_AUTO_TEST_CASE (check_exception_during_flush)
 {
-       auto content = content_factory(TestPaths::private_data() / "3d_thx_broadway_2010_lossless.m2ts").front();
-       auto film = new_test_film2 ("check_exception_during_flush", { content });
+       auto content = content_factory(TestPaths::private_data() / "3d_thx_broadway_2010_lossless.m2ts");
+       auto film = new_test_film2 ("check_exception_during_flush", content);
 
-       content->set_trim_start (dcpomatic::ContentTime(2310308));
-       content->set_trim_end (dcpomatic::ContentTime(116020));
+       content[0]->set_trim_start(film, dcpomatic::ContentTime(2310308));
+       content[0]->set_trim_end(dcpomatic::ContentTime(116020));
 
        make_and_verify_dcp (film);
 }
@@ -50,7 +51,7 @@ BOOST_AUTO_TEST_CASE (check_exception_during_flush)
 
 BOOST_AUTO_TEST_CASE (check_exception_with_multiple_video_frames_per_packet)
 {
-       auto content = content_factory(TestPaths::private_data() / "chk.mkv").front();
+       auto content = content_factory(TestPaths::private_data() / "chk.mkv")[0];
        auto film = new_test_film2 ("check_exception_with_multiple_video_frames_per_packet", { content });
        auto player = std::make_shared<Player>(film, film->playlist());