diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-08 12:45:33 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-12-08 12:45:33 +0100 |
| commit | fdb43b413996d13651895640a31fac319573431d (patch) | |
| tree | ed6e7bfc28dda9bb190f6655502098a9edb0c9b0 /src | |
| parent | fec5d308e853b1218a983623129ac01597263f5c (diff) | |
Recognise dbox2 channel ID used by SMPTE example.v1.8.113
Diffstat (limited to 'src')
| -rw-r--r-- | src/types.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.cc b/src/types.cc index 899d5c25..572d3bdb 100644 --- a/src/types.cc +++ b/src/types.cc @@ -563,7 +563,7 @@ dcp::mca_id_to_channel (string id) return Channel::BSL; } else if (id == "rrs" || id == "rsr") { return Channel::BSR; - } else if (id == "dbox" || id == "mtn") { + } else if (id == "dbox" || id == "dbox2" || id == "mtn") { return Channel::MOTION_DATA; } else if (id == "sync" || id == "fsksync") { return Channel::SYNC_SIGNAL; |
