From: Carl Hetherington Date: Wed, 15 Nov 2023 12:37:50 +0000 (+0100) Subject: Tolerate VI-N as a MCA channel ID - apparently written by CineAsset. X-Git-Tag: v1.8.88~5 X-Git-Url: https://git.carlh.net/gitweb/?p=libdcp.git;a=commitdiff_plain;h=24ba38ed1d695a67aebc8a6084444345787112f9 Tolerate VI-N as a MCA channel ID - apparently written by CineAsset. --- 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;