X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=test%2Fffmpeg_pts_offset_test.cc;h=4aa4c1d9aadf387e2874d7a4e71d86591743398f;hp=1d36192194e597bb96e117802fffe44f20609cbb;hb=6d686ea45f5cd01a0d11f92a903ac77779ad8562;hpb=254b3044d72de6b033d7c584f5abd2b9aa70aad5 diff --git a/test/ffmpeg_pts_offset_test.cc b/test/ffmpeg_pts_offset_test.cc index 1d3619219..4aa4c1d9a 100644 --- a/test/ffmpeg_pts_offset_test.cc +++ b/test/ffmpeg_pts_offset_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2014 Carl Hetherington + Copyright (C) 2013-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,11 +18,13 @@ */ + /** @file test/ffmpeg_pts_offset_test.cc * @brief Check the computation of _pts_offset in FFmpegDecoder. - * @ingroup specific + * @ingroup selfcontained */ + #include #include "lib/film.h" #include "lib/ffmpeg_decoder.h" @@ -31,16 +33,20 @@ #include "lib/audio_content.h" #include "test.h" -using boost::shared_ptr; + +using std::make_shared; +using std::shared_ptr; +using namespace dcpomatic; + BOOST_AUTO_TEST_CASE (ffmpeg_pts_offset_test) { - shared_ptr film = new_test_film ("ffmpeg_pts_offset_test"); - shared_ptr content (new FFmpegContent ("test/data/test.mp4")); + auto film = new_test_film ("ffmpeg_pts_offset_test"); + auto content = make_shared("test/data/test.mp4"); film->examine_and_add_content (content); - wait_for_jobs (); + BOOST_REQUIRE (!wait_for_jobs()); - content->audio.reset (new AudioContent (content.get())); + content->audio = make_shared(content.get()); content->audio->add_stream (shared_ptr (new FFmpegAudioStream)); content->_video_frame_rate = 24;