summaryrefslogtreecommitdiff
path: root/src/lib/types.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-13 01:04:07 +0100
committerCarl Hetherington <cth@carlh.net>2022-12-13 01:11:42 +0100
commit94d5ba335224db075a95a76654f732ef54a4eabd (patch)
treed7937d18579769be088424fdc6d1fa79c5d0a5c1 /src/lib/types.cc
parent53d472f6e4531586fb91e649c386fdfaecb6ecaf (diff)
Add video_{range,frame_type}.{cc,h} and remove some types.h includes.
Diffstat (limited to 'src/lib/types.cc')
-rw-r--r--src/lib/types.cc74
1 files changed, 0 insertions, 74 deletions
diff --git a/src/lib/types.cc b/src/lib/types.cc
index 69d27a1ce..fd4b8906c 100644
--- a/src/lib/types.cc
+++ b/src/lib/types.cc
@@ -87,53 +87,6 @@ text_type_to_name (TextType t)
}
}
-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 +120,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;
-}
-