summaryrefslogtreecommitdiff
path: root/src/lib/types.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-23 15:10:11 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-23 15:10:11 +0100
commita5c629cb9b638b67a0e4c2d26fe9ab2e124bf0eb (patch)
tree6cd463704f413259516e2888704272a371a108a6 /src/lib/types.cc
parentdf17bbd25da69fc38eb2dcd8b4a2531cf0bab0bc (diff)
Tidy up after mass rename.
Diffstat (limited to 'src/lib/types.cc')
-rw-r--r--src/lib/types.cc28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/lib/types.cc b/src/lib/types.cc
index 7f0bf4305..d25c9aba4 100644
--- a/src/lib/types.cc
+++ b/src/lib/types.cc
@@ -94,37 +94,37 @@ Crop::as_xml (xmlpp::Node* node) const
}
TextType
-string_to_caption_type (string s)
+string_to_text_type (string s)
{
- if (s == "open") {
- return CAPTION_OPEN;
+ if (s == "open-subtitle") {
+ return TEXT_OPEN_SUBTITLE;
} else if (s == "closed") {
- return CAPTION_CLOSED;
+ return TEXT_CLOSED_CAPTION;
} else {
- throw MetadataError (String::compose ("Unknown caption type %1", s));
+ throw MetadataError (String::compose ("Unknown text type %1", s));
}
}
string
-caption_type_to_string (TextType t)
+text_type_to_string (TextType t)
{
switch (t) {
- case CAPTION_OPEN:
- return "open";
- case CAPTION_CLOSED:
- return "closed";
+ case TEXT_OPEN_SUBTITLE:
+ return "open-subtitle";
+ case TEXT_CLOSED_CAPTION:
+ return "closed-caption";
default:
DCPOMATIC_ASSERT (false);
}
}
string
-caption_type_to_name (TextType t)
+text_type_to_name (TextType t)
{
switch (t) {
- case CAPTION_OPEN:
- return _("Subtitles");
- case CAPTION_CLOSED:
+ case TEXT_OPEN_SUBTITLE:
+ return _("Open subtitles");
+ case TEXT_CLOSED_CAPTION:
return _("Closed captions");
default:
DCPOMATIC_ASSERT (false);