diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-08 21:29:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-12-08 21:29:21 +0100 |
| commit | 0bf80c8e324110e89de6d72effd6da3c0d41a90b (patch) | |
| tree | f136676918dbe8befadabb310e343287646cfb18 /test | |
| parent | ce753047547808e640b13b9a13fb4b6c8c5faba3 (diff) | |
| parent | fdb43b413996d13651895640a31fac319573431d (diff) | |
Merge remote-tracking branch 'origin/main' into v1.9.x
Diffstat (limited to 'test')
| -rw-r--r-- | test/read_dcp_test.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/read_dcp_test.cc b/test/read_dcp_test.cc index d014bb8e..cd82bfe6 100644 --- a/test/read_dcp_test.cc +++ b/test/read_dcp_test.cc @@ -36,6 +36,7 @@ #include "dcp.h" #include "cpl.h" #include "stream_operators.h" +#include "test.h" using std::list; using std::shared_ptr; @@ -71,3 +72,12 @@ BOOST_AUTO_TEST_CASE (read_dcp_test2) BOOST_REQUIRE (d.standard()); BOOST_CHECK_EQUAL (d.standard(), dcp::Standard::INTEROP); } + + +/** Read a DCP that previously gave: Unrecognised channel ID 'dbox2' */ +BOOST_AUTO_TEST_CASE(read_dcp_test3) +{ + dcp::DCP d(private_test / "data/SMPTE_TST-1-Bv21_S_EN-EN-CCAP_US_51-HI-VI_2K_ISDCF_20170110_DTB_SMPTE_OV"); + d.read(); +} + |
