summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-11-15 13:37:50 +0100
committerCarl Hetherington <cth@carlh.net>2023-11-15 13:37:50 +0100
commit24ba38ed1d695a67aebc8a6084444345787112f9 (patch)
treea4eead7dfd84bcfc9ea3d98f599f96e519f032e2 /src
parent319d1b57ce0062193dac3883b264cbe7b4982113 (diff)
Tolerate VI-N as a MCA channel ID - apparently written by CineAsset.
Diffstat (limited to 'src')
-rw-r--r--src/types.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.cc b/src/types.cc
index dfabb3e2..7f1395df 100644
--- a/src/types.cc
+++ b/src/types.cc
@@ -545,7 +545,7 @@ dcp::mca_id_to_channel (string id)
return Channel::RS;
} else if (id == "hi") {
return Channel::HI;
- } else if (id == "vin") {
+ } else if (id == "vin" || id == "vi-n") {
return Channel::VI;
} else if (id == "lrs") {
return Channel::BSL;