More player debugging for butler video-full states.
[dcpomatic.git] / src / lib / types.cc
index 97373b24ee52a481f803f35e44e28863b3f46258..898abeca4c2ed531bbff7da624fa6683cd5af3dc 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2018 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -25,6 +25,8 @@
 #include <libxml++/libxml++.h>
 #include <libcxml/cxml.h>
 
+#include "i18n.h"
+
 using std::max;
 using std::min;
 using std::string;
@@ -91,26 +93,45 @@ Crop::as_xml (xmlpp::Node* node) const
        node->add_child("BottomCrop")->add_child_text (raw_convert<string> (bottom));
 }
 
-CaptionType
-string_to_caption_type (string s)
+TextType
+string_to_text_type (string s)
 {
-       if (s == "open") {
-               return CAPTION_OPEN;
-       } else if (s == "closed") {
-               return CAPTION_CLOSED;
+       if (s == "unknown") {
+               return TEXT_UNKNOWN;
+       } else if (s == "open-subtitle") {
+               return TEXT_OPEN_SUBTITLE;
+       } else if (s == "closed-caption") {
+               return TEXT_CLOSED_CAPTION;
        } else {
-               throw MetadataError (String::compose ("Unknown caption type %1", s));
+               throw MetadataError (String::compose ("Unknown text type %1", s));
+       }
+}
+
+string
+text_type_to_string (TextType t)
+{
+       switch (t) {
+       case TEXT_UNKNOWN:
+               return "unknown";
+       case TEXT_OPEN_SUBTITLE:
+               return "open-subtitle";
+       case TEXT_CLOSED_CAPTION:
+               return "closed-caption";
+       default:
+               DCPOMATIC_ASSERT (false);
        }
 }
 
 string
-caption_type_to_string (CaptionType t)
+text_type_to_name (TextType t)
 {
        switch (t) {
-       case CAPTION_OPEN:
-               return "open";
-       case CAPTION_CLOSED:
-               return "closed";
+       case TEXT_UNKNOWN:
+               return _("Timed text");
+       case TEXT_OPEN_SUBTITLE:
+               return _("Open subtitles");
+       case TEXT_CLOSED_CAPTION:
+               return _("Closed captions");
        default:
                DCPOMATIC_ASSERT (false);
        }