X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fffmpeg_decoder_sequential_test.cc;h=9edca016049e390814a99b83e4e4bf925d8c9c71;hb=5a5324ed3a381a86dfe0a6e3932c1d58fdcd596f;hp=6a27d698f5713997c0c0fd4d7e68caec77e8831c;hpb=4b7b0edb359ae68f2dbcab90c7c10382f507fa5b;p=dcpomatic.git diff --git a/test/ffmpeg_decoder_sequential_test.cc b/test/ffmpeg_decoder_sequential_test.cc index 6a27d698f..9edca0160 100644 --- a/test/ffmpeg_decoder_sequential_test.cc +++ b/test/ffmpeg_decoder_sequential_test.cc @@ -31,6 +31,7 @@ #include "lib/film.h" #include "test.h" #include +#include #include #include @@ -38,6 +39,7 @@ using std::cout; using std::cerr; using std::list; using boost::shared_ptr; +using boost::make_shared; using boost::optional; void @@ -50,11 +52,11 @@ ffmpeg_decoder_sequential_test_one (boost::filesystem::path file, float fps, int } shared_ptr film = new_test_film ("ffmpeg_decoder_seek_test_" + file.string()); - shared_ptr content (new FFmpegContent (film, path)); + shared_ptr content = make_shared (film, path); film->examine_and_add_content (content); wait_for_jobs (); - shared_ptr log (new NullLog); - shared_ptr decoder (new FFmpegDecoder (content, log, false)); + shared_ptr log = make_shared (); + shared_ptr decoder = make_shared (content, log, false); BOOST_REQUIRE (decoder->video->_content->video_frame_rate()); BOOST_CHECK_CLOSE (decoder->video->_content->video_frame_rate().get(), fps, 0.01);