Updated zh_CN translation from Danbo Song.
[dcpomatic.git] / src / lib / types.cc
index 69d27a1ce2776bea1bbabf9ea592fedcfd78becb..3ac3690c0bd8dfccb567b67ae693a389d63e6d71 100644 (file)
@@ -43,97 +43,6 @@ using std::vector;
 using dcp::raw_convert;
 
 
-TextType
-string_to_text_type (string s)
-{
-       if (s == "unknown") {
-               return TextType::UNKNOWN;
-       } else if (s == "open-subtitle") {
-               return TextType::OPEN_SUBTITLE;
-       } else if (s == "closed-caption") {
-               return TextType::CLOSED_CAPTION;
-       } else {
-               throw MetadataError (String::compose ("Unknown text type %1", s));
-       }
-}
-
-string
-text_type_to_string (TextType t)
-{
-       switch (t) {
-       case TextType::UNKNOWN:
-               return "unknown";
-       case TextType::OPEN_SUBTITLE:
-               return "open-subtitle";
-       case TextType::CLOSED_CAPTION:
-               return "closed-caption";
-       default:
-               DCPOMATIC_ASSERT (false);
-       }
-}
-
-string
-text_type_to_name (TextType t)
-{
-       switch (t) {
-       case TextType::UNKNOWN:
-               return _("Timed text");
-       case TextType::OPEN_SUBTITLE:
-               return _("Open subtitles");
-       case TextType::CLOSED_CAPTION:
-               return _("Closed captions");
-       default:
-               DCPOMATIC_ASSERT (false);
-       }
-}
-
-string
-video_frame_type_to_string (VideoFrameType t)
-{
-       switch (t) {
-       case VideoFrameType::TWO_D:
-               return "2d";
-       case VideoFrameType::THREE_D:
-               return "3d";
-       case VideoFrameType::THREE_D_LEFT_RIGHT:
-               return "3d-left-right";
-       case VideoFrameType::THREE_D_TOP_BOTTOM:
-               return "3d-top-bottom";
-       case VideoFrameType::THREE_D_ALTERNATE:
-               return "3d-alternate";
-       case VideoFrameType::THREE_D_LEFT:
-               return "3d-left";
-       case VideoFrameType::THREE_D_RIGHT:
-               return "3d-right";
-       default:
-               DCPOMATIC_ASSERT (false);
-       }
-
-       DCPOMATIC_ASSERT (false);
-}
-
-VideoFrameType
-string_to_video_frame_type (string s)
-{
-       if (s == "2d") {
-               return VideoFrameType::TWO_D;
-       } else if (s == "3d") {
-               return VideoFrameType::THREE_D;
-       } else if (s == "3d-left-right") {
-               return VideoFrameType::THREE_D_LEFT_RIGHT;
-       } else if (s == "3d-top-bottom") {
-               return VideoFrameType::THREE_D_TOP_BOTTOM;
-       } else if (s == "3d-alternate") {
-               return VideoFrameType::THREE_D_ALTERNATE;
-       } else if (s == "3d-left") {
-               return VideoFrameType::THREE_D_LEFT;
-       } else if (s == "3d-right") {
-               return VideoFrameType::THREE_D_RIGHT;
-       }
-
-       DCPOMATIC_ASSERT (false);
-}
-
 CPLSummary::CPLSummary (boost::filesystem::path p)
        : dcp_directory (p.leaf().string())
 {
@@ -167,30 +76,3 @@ CPLSummary::CPLSummary (boost::filesystem::path p)
 }
 
 
-string
-video_range_to_string (VideoRange r)
-{
-       switch (r) {
-       case VideoRange::FULL:
-               return "full";
-       case VideoRange::VIDEO:
-               return "video";
-       default:
-               DCPOMATIC_ASSERT (false);
-       }
-}
-
-
-VideoRange
-string_to_video_range (string s)
-{
-       if (s == "full") {
-               return VideoRange::FULL;
-       } else if (s == "video") {
-               return VideoRange::VIDEO;
-       }
-
-       DCPOMATIC_ASSERT (false);
-       return VideoRange::FULL;
-}
-