summaryrefslogtreecommitdiff
path: root/test/content_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-09 15:38:44 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-09 15:38:44 +0100
commit78cece0461b94e5ffc4417f0228e0ad528ad8efe (patch)
tree92d28af8f0d03b001a5f8c6036fc0491bb5f4ff8 /test/content_test.cc
parent661245c262558da01b6c587b94bc975d9f78e8e1 (diff)
Maintain frame-snap for position and trim when set_video_frame_rate is called (#1335).
Diffstat (limited to 'test/content_test.cc')
-rw-r--r--test/content_test.cc51
1 files changed, 50 insertions, 1 deletions
diff --git a/test/content_test.cc b/test/content_test.cc
index 1ec3826ab..b077a96d6 100644
--- a/test/content_test.cc
+++ b/test/content_test.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2017 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2017-2018 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -76,3 +76,52 @@ BOOST_AUTO_TEST_CASE (content_test2)
film->make_dcp ();
BOOST_REQUIRE (!wait_for_jobs ());
}
+
+/** Check that position and start trim of video content is forced to a frame boundary */
+BOOST_AUTO_TEST_CASE (content_test3)
+{
+ shared_ptr<Film> film = new_test_film2 ("content_test3");
+ film->set_sequence (false);
+
+ shared_ptr<Content> content = content_factory(film, "test/data/red_24.mp4").front();
+ film->examine_and_add_content (content);
+ BOOST_REQUIRE (!wait_for_jobs ());
+
+ /* Trim */
+
+ /* 12 frames */
+ content->set_trim_start (ContentTime::from_seconds (12.0 / 24.0));
+ BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (12.0 / 24.0));
+
+ /* 11.2 frames */
+ content->set_trim_start (ContentTime::from_seconds (11.2 / 24.0));
+ BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (11.0 / 24.0));
+
+ /* 13.9 frames */
+ content->set_trim_start (ContentTime::from_seconds (13.9 / 24.0));
+ BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (14.0 / 24.0));
+
+ /* Position */
+
+ /* 12 frames */
+ content->set_position (DCPTime::from_seconds (12.0 / 24.0));
+ BOOST_CHECK (content->position() == DCPTime::from_seconds (12.0 / 24.0));
+
+ /* 11.2 frames */
+ content->set_position (DCPTime::from_seconds (11.2 / 24.0));
+ BOOST_CHECK (content->position() == DCPTime::from_seconds (11.0 / 24.0));
+
+ /* 13.9 frames */
+ content->set_position (DCPTime::from_seconds (13.9 / 24.0));
+ BOOST_CHECK (content->position() == DCPTime::from_seconds (14.0 / 24.0));
+
+ content->set_video_frame_rate (25);
+
+ /* Check that trim is fixed when the content's video frame rate is `forced' */
+
+ BOOST_CHECK (content->trim_start() == ContentTime::from_seconds (15.0 / 25.0));
+
+ /* Likewise position */
+
+ BOOST_CHECK (content->position() == DCPTime::from_seconds (15.0 / 25.0));
+}