summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-06-28 19:27:50 +0200
committerCarl Hetherington <cth@carlh.net>2024-08-17 12:57:31 +0200
commitb64644327bff333569bf4a60f1d7c3d46f058b48 (patch)
treec7332cca06c2a171ce91c691760686d03882c919 /tools
parent32f8cc149c8c78c82f9f7e3689e43c11da362968 (diff)
Reel{,Interop,SMPTE}SubtitleAsset -> Reel{,Interop,SMPTE}TextAsset.
Diffstat (limited to 'tools')
-rw-r--r--tools/dcpinfo.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/dcpinfo.cc b/tools/dcpinfo.cc
index f68fac24..7cbdf140 100644
--- a/tools/dcpinfo.cc
+++ b/tools/dcpinfo.cc
@@ -46,7 +46,7 @@
#include "reel.h"
#include "reel_picture_asset.h"
#include "reel_sound_asset.h"
-#include "reel_subtitle_asset.h"
+#include "reel_text_asset.h"
#include "smpte_subtitle_asset.h"
#include "sound_asset.h"
#include "subtitle_asset.h"
@@ -243,7 +243,7 @@ static
void
main_subtitle (vector<string> const& only, shared_ptr<Reel> reel, bool list_subtitles)
{
- shared_ptr<dcp::ReelSubtitleAsset> ms = reel->main_subtitle ();
+ auto ms = reel->main_subtitle();
if (!ms) {
return;
}