summaryrefslogtreecommitdiff
path: root/test/vf_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-23 15:10:11 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-23 15:10:11 +0100
commita5c629cb9b638b67a0e4c2d26fe9ab2e124bf0eb (patch)
tree6cd463704f413259516e2888704272a371a108a6 /test/vf_test.cc
parentdf17bbd25da69fc38eb2dcd8b4a2531cf0bab0bc (diff)
Tidy up after mass rename.
Diffstat (limited to 'test/vf_test.cc')
-rw-r--r--test/vf_test.cc20
1 files changed, 10 insertions, 10 deletions
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<FFmpegContent> 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 */