More player debugging for butler video-full states.
[dcpomatic.git] / src / lib / types.cc
index e3bedd667f7a716daee156db5451e2b6b376cc9c..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.
 
 */
 
 #include "types.h"
+#include "compose.hpp"
 #include "dcpomatic_assert.h"
 #include <dcp/raw_convert.h>
 #include <libxml++/libxml++.h>
 #include <libcxml/cxml.h>
 
+#include "i18n.h"
+
 using std::max;
 using std::min;
 using std::string;
@@ -90,6 +93,50 @@ Crop::as_xml (xmlpp::Node* node) const
        node->add_child("BottomCrop")->add_child_text (raw_convert<string> (bottom));
 }
 
+TextType
+string_to_text_type (string s)
+{
+       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 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
+text_type_to_name (TextType t)
+{
+       switch (t) {
+       case TEXT_UNKNOWN:
+               return _("Timed text");
+       case TEXT_OPEN_SUBTITLE:
+               return _("Open subtitles");
+       case TEXT_CLOSED_CAPTION:
+               return _("Closed captions");
+       default:
+               DCPOMATIC_ASSERT (false);
+       }
+}
+
 string
 video_frame_type_to_string (VideoFrameType t)
 {