summaryrefslogtreecommitdiff
path: root/test/subrip_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-05-22 14:57:56 +0100
committerCarl Hetherington <cth@carlh.net>2014-05-22 14:57:56 +0100
commitd342a1befa88cb3f23c7e3fccfd1edaeea968fed (patch)
treef566fa87d0de35f3f0c4d7e20752c83b8a5b9bce /test/subrip_test.cc
parent85d343a420c4df1a08663c8afd3bdb73c8dfa985 (diff)
Add ContentTimePeriod class.
Diffstat (limited to 'test/subrip_test.cc')
-rw-r--r--test/subrip_test.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/subrip_test.cc b/test/subrip_test.cc
index de102369f..19caca592 100644
--- a/test/subrip_test.cc
+++ b/test/subrip_test.cc
@@ -190,7 +190,11 @@ BOOST_AUTO_TEST_CASE (subrip_render_test)
BOOST_CHECK_EQUAL (content->full_length(), DCPTime::from_seconds ((3 * 60) + 56.471));
shared_ptr<SubRipDecoder> decoder (new SubRipDecoder (content));
- list<shared_ptr<ContentTextSubtitle> > cts = decoder->get_text_subtitles (ContentTime::from_seconds (109), ContentTime::from_seconds (110));
+ list<shared_ptr<ContentTextSubtitle> > cts = decoder->get_text_subtitles (
+ ContentTimePeriod (
+ ContentTime::from_seconds (109), ContentTime::from_seconds (110)
+ )
+ );
BOOST_CHECK_EQUAL (cts.size(), 1);
PositionImage image = render_subtitles (cts.front()->subs, dcp::Size (1998, 1080));