Tidy up and add a couple more tests.
[dcpomatic.git] / test / ffmpeg_examiner_test.cc
index 13846a8a16bff016609efa9a85357e8b7b5d8fb5..0233db1f0b51538eece2136f03d91ecf12ef854c 100644 (file)
@@ -21,6 +21,7 @@
 /** @file  test/ffmpeg_examiner_test.cc
  *  @brief Check that the FFmpegExaminer can extract the first video and audio time
  *  correctly from data/count300bd24.m2ts.
+ *  @ingroup specific
  */
 
 #include <boost/test/unit_test.hpp>
@@ -37,7 +38,7 @@ BOOST_AUTO_TEST_CASE (ffmpeg_examiner_test)
        shared_ptr<FFmpegContent> content (new FFmpegContent (film, "test/data/count300bd24.m2ts"));
        shared_ptr<FFmpegExaminer> examiner (new FFmpegExaminer (content));
 
-       BOOST_CHECK_EQUAL (examiner->first_video().get(), ContentTime::from_seconds (600));
+       BOOST_CHECK_EQUAL (examiner->first_video().get().get(), ContentTime::from_seconds(600).get());
        BOOST_CHECK_EQUAL (examiner->audio_streams().size(), 1U);
-       BOOST_CHECK_EQUAL (examiner->audio_streams()[0]->first_audio.get(), ContentTime::from_seconds (600));
+       BOOST_CHECK_EQUAL (examiner->audio_streams()[0]->first_audio.get().get(), ContentTime::from_seconds(600).get());
 }