X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fffmpeg_decoder_seek_test.cc;h=c69c74c685c5422f38d33d8391b4a06ba64a4b9b;hb=bd1faf13e577bacb76015fc6afe76d9562c29ce5;hp=26fab5f3d95c702a9d24cb55605f1eba1481005f;hpb=67a68bd971ebe1b35daa3f75873b4ccb53c00ba0;p=dcpomatic.git diff --git a/test/ffmpeg_decoder_seek_test.cc b/test/ffmpeg_decoder_seek_test.cc index 26fab5f3d..c69c74c68 100644 --- a/test/ffmpeg_decoder_seek_test.cc +++ b/test/ffmpeg_decoder_seek_test.cc @@ -46,10 +46,11 @@ using boost::shared_ptr; using boost::optional; static optional stored; -static void +static bool store (ContentVideo v) { stored = v; + return true; } static void @@ -69,11 +70,10 @@ test (boost::filesystem::path file, vector frames) BOOST_REQUIRE (boost::filesystem::exists (path)); shared_ptr film = new_test_film ("ffmpeg_decoder_seek_test_" + file.string()); - shared_ptr content (new FFmpegContent (film, path)); + shared_ptr content (new FFmpegContent (path)); film->examine_and_add_content (content); - wait_for_jobs (); - shared_ptr log (new NullLog); - shared_ptr decoder (new FFmpegDecoder (content, log)); + BOOST_REQUIRE (!wait_for_jobs()); + shared_ptr decoder (new FFmpegDecoder (film, content, false)); decoder->video->Data.connect (bind (&store, _1)); for (vector::const_iterator i = frames.begin(); i != frames.end(); ++i) { @@ -100,5 +100,5 @@ BOOST_AUTO_TEST_CASE (ffmpeg_decoder_seek_test) frames.push_back (999); frames.push_back (15); - test ("prophet_clip.mkv", frames); + test ("prophet_long_clip.mkv", frames); }