summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-12-30 02:38:54 +0100
committerCarl Hetherington <cth@carlh.net>2025-12-31 21:38:12 +0100
commit36c5c4cdc1c5f47125118edba2593e851ce0756b (patch)
treeab9d6e937fcc1e186ae3a0c2135dc96f540842da /test
parentad4d7e654a0125ac8d0ebbc2a23c59a12079ebdf (diff)
Fix mismatched audio reel length (#3123).
Diffstat (limited to 'test')
-rw-r--r--test/player_test.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/player_test.cc b/test/player_test.cc
index 684cede04..ca81c29f6 100644
--- a/test/player_test.cc
+++ b/test/player_test.cc
@@ -773,3 +773,14 @@ BOOST_AUTO_TEST_CASE(test_with_audio_stream_that_never_emits_anything)
BOOST_REQUIRE(!wait_for_jobs());
}
+
+
+BOOST_AUTO_TEST_CASE(test_fill_audio_at_end)
+{
+ auto content = content_factory(TestPaths::private_data() / "Video Ts-1.m4v");
+ auto film = new_test_film("test_fill_audio_at_end", content);
+ content[0]->set_trim_start(film, ContentTime::from_seconds((60 + 42) * 60));
+
+ make_and_verify_dcp(film, {});// dcp::VerificationNote::Code::MISSING_CPL_METADATA });
+}
+