Fix failure to examine non-flat-ratio VFs (#2775).
[dcpomatic.git] / test / subtitle_timing_test.cc
index 68881aea89b81df332e4e11b1c6e120245f4f1e1..79cc68849499531dfa339e63bfeacd4f16724b9a 100644 (file)
@@ -35,6 +35,8 @@
 
 BOOST_AUTO_TEST_CASE (test_subtitle_timing_with_frame_rate_change)
 {
+       Cleanup cl;
+
        using boost::filesystem::path;
 
        constexpr auto content_frame_rate = 29.976f;
@@ -42,10 +44,10 @@ BOOST_AUTO_TEST_CASE (test_subtitle_timing_with_frame_rate_change)
 
        auto picture = content_factory("test/data/flat_red.png")[0];
        auto sub = content_factory("test/data/hour.srt")[0];
-       sub->text.front()->set_language(dcp::LanguageTag("en-GB"));
-       picture->set_video_frame_rate (content_frame_rate);
+       sub->text.front()->set_language(dcp::LanguageTag("en"));
 
-       auto film = new_test_film2 (name, { picture, sub });
+       auto film = new_test_film2(name, { picture, sub }, &cl);
+       picture->set_video_frame_rate(film, content_frame_rate);
        auto const dcp_frame_rate = film->video_frame_rate();
 
        make_and_verify_dcp (film, {dcp::VerificationNote::Code::INVALID_SUBTITLE_FIRST_TEXT_TIME, dcp::VerificationNote::Code::INVALID_PICTURE_FRAME_RATE_FOR_2K });
@@ -66,5 +68,7 @@ BOOST_AUTO_TEST_CASE (test_subtitle_timing_with_frame_rate_change)
                BOOST_CHECK (error < (1.0f / dcp_frame_rate));
                ++index;
        }
+
+       cl.run();
 }