summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-07-20 10:35:20 +0200
committerCarl Hetherington <cth@carlh.net>2024-07-20 10:35:20 +0200
commit6afa7d6ba7163c870e2ec17c94e762c47723ffe1 (patch)
tree77ed61bc0ba6893524596fbea22fe8690dc13653
parente9c728d964e5e9216fde2fc4224fa92cb0070d63 (diff)
Add SLV as a channel type for the CLI.
-rw-r--r--src/lib/create_cli.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/create_cli.cc b/src/lib/create_cli.cc
index 1c2f2c635..3f80c81f2 100644
--- a/src/lib/create_cli.cc
+++ b/src/lib/create_cli.cc
@@ -228,6 +228,8 @@ CreateCLI::CreateCLI (int argc, char* argv[])
return dcp::Channel::HI;
} else if (channel == "VI") {
return dcp::Channel::VI;
+ } else if (channel == "SLV") {
+ return dcp::Channel::SIGN_LANGUAGE;
} else {
return {};
}