X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fcontent_test.cc;h=5ab714b47ad8e46a5363eef8fc939417853a4b32;hb=HEAD;hp=47099025efbd18d59d4e599ac4ae4791f5a843d6;hpb=02d4493e593d567b210cd7f2b98d33a345867d1d;p=dcpomatic.git diff --git a/test/content_test.cc b/test/content_test.cc index 47099025e..5ab714b47 100644 --- a/test/content_test.cc +++ b/test/content_test.cc @@ -168,3 +168,12 @@ BOOST_AUTO_TEST_CASE (content_test7) content[0]->audio->set_delay(-1000); make_and_verify_dcp (film, { dcp::VerificationNote::Code::INVALID_PICTURE_FRAME_RATE_FOR_2K }); } + + +/** WAVs with markers (I think) can end up making audio packets with no channels and no frames (#2617) */ +BOOST_AUTO_TEST_CASE(wav_with_markers_zero_channels_test) +{ + auto content = content_factory(TestPaths::private_data() / "wav_with_markers.wav"); + auto film = new_test_film2("wav_with_markers_zero_channels_test", content); + make_and_verify_dcp(film, { dcp::VerificationNote::Code::MISSING_CPL_METADATA }); +}