X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fblack_fill_test.cc;h=c2170d891744f3ce14848a9a372acdd0cdd5eb2a;hb=3753cb8685e1755b067676345a5871db24149d0f;hp=1e3bf1d545b534b35d61ee5c47e6fdceccdd9f51;hpb=764dfcd5aea143d1246873667e646f86d99e33a4;p=dcpomatic.git diff --git a/test/black_fill_test.cc b/test/black_fill_test.cc index 1e3bf1d54..c2170d891 100644 --- a/test/black_fill_test.cc +++ b/test/black_fill_test.cc @@ -17,7 +17,12 @@ */ -#include "imagemagick_content.h" +#include +#include "lib/image_content.h" +#include "lib/dcp_content_type.h" +#include "lib/film.h" +#include "lib/ratio.h" +#include "test.h" /** @file test/black_fill_test.cc * @brief Test insertion of black frames between video content. @@ -32,25 +37,23 @@ BOOST_AUTO_TEST_CASE (black_fill_test) film->set_name ("black_fill_test"); film->set_container (Ratio::from_id ("185")); film->set_sequence_video (false); - shared_ptr contentA (new ImageMagickContent (film, "test/data/simple_testcard_640x480.png")); - contentA->set_ratio (Ratio::from_id ("185")); - shared_ptr contentB (new ImageMagickContent (film, "test/data/simple_testcard_640x480.png")); - contentB->set_ratio (Ratio::from_id ("185")); + shared_ptr contentA (new ImageContent (film, "test/data/simple_testcard_640x480.png")); + contentA->set_scale (VideoContentScale (Ratio::from_id ("185"))); + shared_ptr contentB (new ImageContent (film, "test/data/simple_testcard_640x480.png")); + contentB->set_scale (VideoContentScale (Ratio::from_id ("185"))); film->examine_and_add_content (contentA); film->examine_and_add_content (contentB); - while (JobManager::instance()->work_to_do ()) {} + wait_for_jobs (); contentA->set_video_length (3); - contentA->set_start (film->video_frames_to_time (2)); + contentA->set_position (film->video_frames_to_time (2)); contentB->set_video_length (1); - contentB->set_start (film->video_frames_to_time (7)); + contentB->set_position (film->video_frames_to_time (7)); film->make_dcp (); - while (JobManager::instance()->work_to_do ()) {} - - BOOST_CHECK (!JobManager::instance()->errors()); + wait_for_jobs (); boost::filesystem::path ref; ref = "test";