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-30 12:26:18 +0100
commit92867095c67a81c77b19fb68862ab396f27624cf (patch)
treef5deab848896d82a8feec4528a6db4e3350fb697 /test
parent2adc73c0a760a1fef6a58ae359ed4abe9208d31d (diff)
Fix mismatched audio reel length (#3123).3123-reel-length
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 });
+}
+