X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fffmpeg_examiner_test.cc;h=0233db1f0b51538eece2136f03d91ecf12ef854c;hb=4f806ddec2b60c2d2e7a7d756e8aa299305b1e9f;hp=13846a8a16bff016609efa9a85357e8b7b5d8fb5;hpb=a8a0dfd1b21de6c0facf965ab119833ff6f790bf;p=dcpomatic.git diff --git a/test/ffmpeg_examiner_test.cc b/test/ffmpeg_examiner_test.cc index 13846a8a1..0233db1f0 100644 --- a/test/ffmpeg_examiner_test.cc +++ b/test/ffmpeg_examiner_test.cc @@ -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 @@ -37,7 +38,7 @@ BOOST_AUTO_TEST_CASE (ffmpeg_examiner_test) shared_ptr content (new FFmpegContent (film, "test/data/count300bd24.m2ts")); shared_ptr 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()); }