From 5a5324ed3a381a86dfe0a6e3932c1d58fdcd596f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 21 Jun 2016 01:14:06 +0100 Subject: Use make_shared<>. --- test/time_calculation_test.cc | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'test/time_calculation_test.cc') diff --git a/test/time_calculation_test.cc b/test/time_calculation_test.cc index ddd685d0c..bf21e5476 100644 --- a/test/time_calculation_test.cc +++ b/test/time_calculation_test.cc @@ -25,10 +25,12 @@ #include "lib/audio_content.h" #include "test.h" #include +#include using std::string; using std::list; using boost::shared_ptr; +using boost::make_shared; static string const xml = "" "FFmpeg" @@ -123,11 +125,11 @@ BOOST_AUTO_TEST_CASE (ffmpeg_time_calculation_test) { shared_ptr film = new_test_film ("ffmpeg_time_calculation_test"); - shared_ptr doc (new cxml::Document); + shared_ptr doc = make_shared (); doc->read_string (xml); list notes; - shared_ptr content (new FFmpegContent (film, doc, film->state_version(), notes)); + shared_ptr content = boost::make_shared (film, doc, film->state_version(), notes); /* 25fps content, 25fps DCP */ film->set_video_frame_rate (25); @@ -176,15 +178,15 @@ BOOST_AUTO_TEST_CASE (player_time_calculation_test1) { shared_ptr film = new_test_film ("player_time_calculation_test1"); - shared_ptr doc (new cxml::Document); + shared_ptr doc = make_shared (); doc->read_string (xml); list notes; - shared_ptr content (new FFmpegContent (film, doc, film->state_version(), notes)); + shared_ptr content = boost::make_shared (film, doc, film->state_version(), notes); film->set_sequence (false); film->add_content (content); - shared_ptr player (new Player (film, film->playlist ())); + shared_ptr player = make_shared (film, film->playlist ()); /* Position 0, no trim, content rate = DCP rate */ content->set_position (DCPTime ()); @@ -381,15 +383,15 @@ BOOST_AUTO_TEST_CASE (player_time_calculation_test2) { shared_ptr film = new_test_film ("player_time_calculation_test2"); - shared_ptr doc (new cxml::Document); + shared_ptr doc = make_shared (); doc->read_string (xml); list notes; - shared_ptr content (new FFmpegContent (film, doc, film->state_version(), notes)); + shared_ptr content = boost::make_shared (film, doc, film->state_version(), notes); film->set_sequence (false); film->add_content (content); - shared_ptr player (new Player (film, film->playlist ())); + shared_ptr player = make_shared (film, film->playlist ()); /* Position 0, no trim, content rate = DCP rate */ content->set_position (DCPTime ()); @@ -557,16 +559,16 @@ BOOST_AUTO_TEST_CASE (player_time_calculation_test3) { shared_ptr film = new_test_film ("player_time_calculation_test3"); - shared_ptr doc (new cxml::Document); + shared_ptr doc = make_shared (); doc->read_string (xml); list notes; - shared_ptr content (new FFmpegContent (film, doc, film->state_version(), notes)); + shared_ptr content = boost::make_shared (film, doc, film->state_version(), notes); AudioStreamPtr stream = content->audio->streams().front(); film->set_sequence (false); film->add_content (content); - shared_ptr player (new Player (film, film->playlist ())); + shared_ptr player = make_shared (film, film->playlist ()); /* Position 0, no trim, video/audio content rate = video/audio DCP rate */ content->set_position (DCPTime ()); -- cgit v1.2.3