X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fffmpeg_decoder_seek_test.cc;h=230c5476869c9aa70632be3b59f47ac1e152b142;hb=5b4b0381872a81821f216fb407c73710c77b5d7a;hp=3e825e4433383f455469ae2a52d3011fba47042a;hpb=c4403784febdbdd42e9c32e67fadb147f11fe566;p=dcpomatic.git diff --git a/test/ffmpeg_decoder_seek_test.cc b/test/ffmpeg_decoder_seek_test.cc index 3e825e443..230c54768 100644 --- a/test/ffmpeg_decoder_seek_test.cc +++ b/test/ffmpeg_decoder_seek_test.cc @@ -44,6 +44,9 @@ using std::list; using std::cout; using boost::shared_ptr; using boost::optional; +#if BOOST_VERSION >= 106100 +using namespace boost::placeholders; +#endif using namespace dcpomatic; static optional stored; @@ -67,7 +70,7 @@ 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());