X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=test%2Fvf_test.cc;h=fa1e7cdab71c8990c8280ee67d4481cdb630dced;hp=5cded6e256d8ca91b6f2f6e5b81aef4331226eee;hb=a5c629cb9b638b67a0e4c2d26fe9ab2e124bf0eb;hpb=df17bbd25da69fc38eb2dcd8b4a2531cf0bab0bc diff --git a/test/vf_test.cc b/test/vf_test.cc index 5cded6e25..fa1e7cdab 100644 --- a/test/vf_test.cc +++ b/test/vf_test.cc @@ -57,16 +57,16 @@ BOOST_AUTO_TEST_CASE (vf_test1) string why_not; BOOST_CHECK (!dcp->can_reference_video(why_not)); BOOST_CHECK (!dcp->can_reference_audio(why_not)); - BOOST_CHECK (!dcp->can_reference_caption(CAPTION_OPEN, why_not)); - BOOST_CHECK (!dcp->can_reference_caption(CAPTION_CLOSED, why_not)); + BOOST_CHECK (!dcp->can_reference_text(TEXT_OPEN_SUBTITLE, why_not)); + BOOST_CHECK (!dcp->can_reference_text(TEXT_CLOSED_CAPTION, why_not)); /* Multi-reel DCP can be referenced if we are using by-video-content */ film->set_reel_type (REELTYPE_BY_VIDEO_CONTENT); BOOST_CHECK (dcp->can_reference_video(why_not)); BOOST_CHECK (dcp->can_reference_audio(why_not)); - /* (but reels_test2 has no captions to reference) */ - BOOST_CHECK (!dcp->can_reference_caption(CAPTION_OPEN, why_not)); - BOOST_CHECK (!dcp->can_reference_caption(CAPTION_CLOSED, why_not)); + /* (but reels_test2 has no texts to reference) */ + BOOST_CHECK (!dcp->can_reference_text(TEXT_OPEN_SUBTITLE, why_not)); + BOOST_CHECK (!dcp->can_reference_text(TEXT_CLOSED_CAPTION, why_not)); shared_ptr other (new FFmpegContent (film, "test/data/test.mp4")); film->examine_and_add_content (other); @@ -76,16 +76,16 @@ BOOST_AUTO_TEST_CASE (vf_test1) other->set_position (DCPTime (0)); BOOST_CHECK (!dcp->can_reference_video(why_not)); BOOST_CHECK (!dcp->can_reference_audio(why_not)); - BOOST_CHECK (!dcp->can_reference_caption(CAPTION_OPEN, why_not)); - BOOST_CHECK (!dcp->can_reference_caption(CAPTION_CLOSED, why_not)); + BOOST_CHECK (!dcp->can_reference_text(TEXT_OPEN_SUBTITLE, why_not)); + BOOST_CHECK (!dcp->can_reference_text(TEXT_CLOSED_CAPTION, why_not)); /* This should not be considered an overlap */ other->set_position (dcp->end ()); BOOST_CHECK (dcp->can_reference_video(why_not)); BOOST_CHECK (dcp->can_reference_audio(why_not)); - /* (reels_test2 has no captions to reference) */ - BOOST_CHECK (!dcp->can_reference_caption(CAPTION_OPEN, why_not)); - BOOST_CHECK (!dcp->can_reference_caption(CAPTION_CLOSED, why_not)); + /* (reels_test2 has no texts to reference) */ + BOOST_CHECK (!dcp->can_reference_text(TEXT_OPEN_SUBTITLE, why_not)); + BOOST_CHECK (!dcp->can_reference_text(TEXT_CLOSED_CAPTION, why_not)); } /** Make a OV with video and audio and a VF referencing the OV and adding subs */