X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fffmpeg_examiner_test.cc;h=d72226a6f68a173ed8e53ae4b788acdf438049e4;hb=233bb3f790aef3c8f9a7a7fde9875833b7dc1dfb;hp=93a913870f81a108e1dfe46b135e16a912eeb5ab;hpb=e6f28e7cda23c1ba3c49cc1bf2dc1491c2f87160;p=dcpomatic.git diff --git a/test/ffmpeg_examiner_test.cc b/test/ffmpeg_examiner_test.cc index 93a913870..d72226a6f 100644 --- a/test/ffmpeg_examiner_test.cc +++ b/test/ffmpeg_examiner_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2014 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,6 +17,11 @@ */ +/** @file test/ffmpeg_examiner_test.cc + * @brief Check that the FFmpegExaminer can extract the first video and audio time + * correctly from data/count300bd24.m2ts. + */ + #include #include "lib/ffmpeg_examiner.h" #include "lib/ffmpeg_content.h" @@ -30,7 +35,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 (600)); + BOOST_CHECK_EQUAL (examiner->first_video().get(), ContentTime::from_seconds (600)); BOOST_CHECK_EQUAL (examiner->audio_streams().size(), 1); - BOOST_CHECK_EQUAL (examiner->audio_streams()[0]->first_audio.get(), ContentTime (600)); + BOOST_CHECK_EQUAL (examiner->audio_streams()[0]->first_audio.get(), ContentTime::from_seconds (600)); }