diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-29 09:14:20 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-29 20:53:49 +0200 |
| commit | 39fb8198febde1937019db1c300ec363aab5aa56 (patch) | |
| tree | 52bc32134e8ae2b5587b3a62130baa9acf815b60 /test/ffmpeg_pts_offset_test.cc | |
| parent | b249700e1da7dd6631a8b4440587f4093a2bdef1 (diff) | |
C++11 tidying.
Diffstat (limited to 'test/ffmpeg_pts_offset_test.cc')
| -rw-r--r-- | test/ffmpeg_pts_offset_test.cc | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/test/ffmpeg_pts_offset_test.cc b/test/ffmpeg_pts_offset_test.cc index 134881c0d..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 <cth@carlh.net> + Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net> 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 selfcontained */ + #include <boost/test/unit_test.hpp> #include "lib/film.h" #include "lib/ffmpeg_decoder.h" @@ -31,17 +33,20 @@ #include "lib/audio_content.h" #include "test.h" + +using std::make_shared; using std::shared_ptr; using namespace dcpomatic; + BOOST_AUTO_TEST_CASE (ffmpeg_pts_offset_test) { - shared_ptr<Film> film = new_test_film ("ffmpeg_pts_offset_test"); - shared_ptr<FFmpegContent> content (new FFmpegContent ("test/data/test.mp4")); + auto film = new_test_film ("ffmpeg_pts_offset_test"); + auto content = make_shared<FFmpegContent>("test/data/test.mp4"); film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs()); - content->audio.reset (new AudioContent (content.get())); + content->audio = make_shared<AudioContent>(content.get()); content->audio->add_stream (shared_ptr<FFmpegAudioStream> (new FFmpegAudioStream)); content->_video_frame_rate = 24; |
