Add hint when making a FTR without FFEC/FFMC markers (#1804).
[dcpomatic.git] / test / ffmpeg_decoder_seek_test.cc
index 8adcbf8b8c901c061d982b9e8b8ebb9017d84855..33b407a97414ad0bda53a9efa7c2b57d60ffdd56 100644 (file)
@@ -20,7 +20,7 @@
 
 /** @file  test/ffmpeg_decoder_seek_test.cc
  *  @brief Check seek() with FFmpegDecoder.
- *  @ingroup specific
+ *  @ingroup selfcontained
  *
  *  This doesn't check that the contents of those frames are right, which
  *  it probably should.
@@ -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());