X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fffmpeg_decoder_seek_test.cc;h=01eec011010177db24d44225a1aca4444d29dc6f;hb=a386c56bac6b76a3db43dbb8ea2dca9538860788;hp=46d82b0229679a297fc281829c421f59d412cf00;hpb=b0c7c1146423f2f3f60aa124d8ea5a9671acff0b;p=dcpomatic.git diff --git a/test/ffmpeg_decoder_seek_test.cc b/test/ffmpeg_decoder_seek_test.cc index 46d82b022..01eec0110 100644 --- a/test/ffmpeg_decoder_seek_test.cc +++ b/test/ffmpeg_decoder_seek_test.cc @@ -20,6 +20,7 @@ /** @file test/ffmpeg_decoder_seek_test.cc * @brief Check seek() with FFmpegDecoder. + * @ingroup selfcontained * * This doesn't check that the contents of those frames are right, which * it probably should. @@ -41,14 +42,19 @@ using std::cerr; using std::vector; using std::list; using std::cout; -using boost::shared_ptr; +using std::shared_ptr; using boost::optional; +#if BOOST_VERSION >= 106100 +using namespace boost::placeholders; +#endif +using namespace dcpomatic; static optional stored; -static void +static bool store (ContentVideo v) { stored = v; + return true; } static void @@ -64,15 +70,14 @@ check (shared_ptr decoder, int frame) static void test (boost::filesystem::path file, vector frames) { - boost::filesystem::path path = private_data / file; + boost::filesystem::path path = TestPaths::private_data() / file; 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) { @@ -99,5 +104,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); }