Improve text panel layout with GTK3's enormous spin controls.
[dcpomatic.git] / test / ffmpeg_decoder_seek_test.cc
index 8adcbf8b8c901c061d982b9e8b8ebb9017d84855..230c5476869c9aa70632be3b59f47ac1e152b142 100644 (file)
@@ -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<ContentVideo> stored;
@@ -67,7 +70,7 @@ check (shared_ptr<FFmpegDecoder> decoder, int frame)
 static void
 test (boost::filesystem::path file, vector<int> frames)
 {
-       boost::filesystem::path path = TestPaths::private_data / file;
+       boost::filesystem::path path = TestPaths::private_data() / file;
        BOOST_REQUIRE (boost::filesystem::exists (path));
 
        shared_ptr<Film> film = new_test_film ("ffmpeg_decoder_seek_test_" + file.string());