diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-06-28 19:27:50 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-08-17 12:57:31 +0200 |
| commit | b64644327bff333569bf4a60f1d7c3d46f058b48 (patch) | |
| tree | c7332cca06c2a171ce91c691760686d03882c919 /test/dcp_font_test.cc | |
| parent | 32f8cc149c8c78c82f9f7e3689e43c11da362968 (diff) | |
Reel{,Interop,SMPTE}SubtitleAsset -> Reel{,Interop,SMPTE}TextAsset.
Diffstat (limited to 'test/dcp_font_test.cc')
| -rw-r--r-- | test/dcp_font_test.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/dcp_font_test.cc b/test/dcp_font_test.cc index 7cb55c46..b81248f0 100644 --- a/test/dcp_font_test.cc +++ b/test/dcp_font_test.cc @@ -37,8 +37,8 @@ #include "file.h" #include "interop_subtitle_asset.h" #include "reel.h" -#include "reel_interop_subtitle_asset.h" -#include "reel_smpte_subtitle_asset.h" +#include "reel_interop_text_asset.h" +#include "reel_smpte_text_asset.h" #include "smpte_subtitle_asset.h" #include "test.h" #include "util.h" @@ -66,7 +66,7 @@ BOOST_AUTO_TEST_CASE (interop_dcp_font_test) check_file ("test/data/dummy.ttf", "build/test/interop_dcp_font_test/font_0.ttf"); auto reel = make_shared<dcp::Reel>(); - reel->add (make_shared<dcp::ReelInteropSubtitleAsset>(subs, dcp::Fraction (24, 1), 24, 0)); + reel->add (make_shared<dcp::ReelInteropTextAsset>(subs, dcp::Fraction (24, 1), 24, 0)); auto cpl = make_shared<dcp::CPL>("", dcp::ContentKind::TRAILER, dcp::Standard::INTEROP); cpl->add (reel); @@ -103,7 +103,7 @@ BOOST_AUTO_TEST_CASE (smpte_dcp_font_test) subs->write (directory / "frobozz.mxf"); auto reel = make_shared<dcp::Reel>(); - reel->add (make_shared<dcp::ReelSMPTESubtitleAsset>(subs, dcp::Fraction (24, 1), 24, 0)); + reel->add (make_shared<dcp::ReelSMPTETextAsset>(subs, dcp::Fraction (24, 1), 24, 0)); auto cpl = make_shared<dcp::CPL>("", dcp::ContentKind::TRAILER, dcp::Standard::SMPTE); cpl->add (reel); |
