summaryrefslogtreecommitdiff
path: root/src/reel_smpte_text_asset.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/reel_smpte_text_asset.cc')
-rw-r--r--src/reel_smpte_text_asset.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/reel_smpte_text_asset.cc b/src/reel_smpte_text_asset.cc
index 76efab44..7950dfd2 100644
--- a/src/reel_smpte_text_asset.cc
+++ b/src/reel_smpte_text_asset.cc
@@ -72,9 +72,9 @@ string
ReelSMPTETextAsset::cpl_node_name() const
{
switch (_type) {
- case TextType::SUBTITLE:
+ case TextType::OPEN_SUBTITLE:
return "MainSubtitle";
- case TextType::CAPTION:
+ case TextType::CLOSED_CAPTION:
return "tt:ClosedCaption";
}
@@ -87,9 +87,9 @@ pair<string, string>
ReelSMPTETextAsset::cpl_node_namespace() const
{
switch (_type) {
- case TextType::SUBTITLE:
+ case TextType::OPEN_SUBTITLE:
return {};
- case TextType::CAPTION:
+ case TextType::CLOSED_CAPTION:
return make_pair("http://www.smpte-ra.org/schemas/429-12/2008/TT", "tt");
}
@@ -102,7 +102,7 @@ xmlpp::Element *
ReelSMPTETextAsset::write_to_cpl(xmlpp::Element* node, Standard standard) const
{
auto asset = ReelFileAsset::write_to_cpl (node, standard);
- string const ns = _type == TextType::CAPTION ? "tt" : "";
+ string const ns = _type == TextType::CLOSED_CAPTION ? "tt" : "";
if (_language) {
cxml::add_child(asset, "Language", ns)->add_child_text(*_language);
}