X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fempty_test.cc;fp=test%2Fempty_test.cc;h=576577b97e1cba5701575a9267f926e42ac8e526;hb=1938b1b08d38fc199717d1875a61ef05e5b965de;hp=71397273942bbbe8312ec90bc1b4a42ffd0a8ff8;hpb=a45dd41c4dc7b95b1e3e79640e965ae663e7e680;p=dcpomatic.git diff --git a/test/empty_test.cc b/test/empty_test.cc index 713972739..576577b97 100644 --- a/test/empty_test.cc +++ b/test/empty_test.cc @@ -24,11 +24,19 @@ #include "lib/video_content.h" #include "lib/image_content.h" #include "lib/empty.h" +#include "lib/player.h" +#include "lib/decoder.h" #include "test.h" #include using boost::shared_ptr; +bool +has_video (shared_ptr piece) +{ + return piece->decoder && piece->decoder->video; +} + BOOST_AUTO_TEST_CASE (empty_test1) { shared_ptr film = new_test_film ("empty_test1"); @@ -52,7 +60,8 @@ BOOST_AUTO_TEST_CASE (empty_test1) contentB->video->set_length (1); contentB->set_position (DCPTime::from_frames (7, vfr)); - Empty black (film->content(), film->length(), bind(&Content::video, _1)); + shared_ptr player (new Player(film, film->playlist())); + Empty black (player->_pieces, film->length(), bind(&has_video, _1)); BOOST_REQUIRE_EQUAL (black._periods.size(), 2); BOOST_CHECK (black._periods.front().from == DCPTime()); BOOST_CHECK (black._periods.front().to == DCPTime::from_frames(2, vfr)); @@ -84,7 +93,8 @@ BOOST_AUTO_TEST_CASE (empty_test2) contentB->video->set_length (1); contentB->set_position (DCPTime::from_frames (7, vfr)); - Empty black (film->content(), film->length(), bind(&Content::video, _1)); + shared_ptr player (new Player(film, film->playlist())); + Empty black (player->_pieces, film->length(), bind(&has_video, _1)); BOOST_REQUIRE_EQUAL (black._periods.size(), 1); BOOST_CHECK (black._periods.front().from == DCPTime::from_frames(3, vfr)); BOOST_CHECK (black._periods.front().to == DCPTime::from_frames(7, vfr));