mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-13 19:54:59 +00:00
feat: add bridge to show number of HDCP-Compatible DM Endpoints
feat: expose HDCP Settings for DM-RMC-4K-XXX endpoints resolve: #1088 resolve: #1089
This commit is contained in:
@@ -411,9 +411,22 @@ namespace PepperDash.Essentials.DM
|
||||
|
||||
SetHdcpCapabilityAction(hdcpTypeSimple, port, joinMap.Port3HdcpState.JoinNumber, trilist);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
var hdcpInputPortCount =
|
||||
(ushort)
|
||||
txR.InputPorts.Where(
|
||||
x => (x.Type == eRoutingSignalType.Video) || (x.Type == eRoutingSignalType.AudioVideo))
|
||||
.Where(
|
||||
x =>
|
||||
(x.ConnectionType == eRoutingPortConnectionType.DmCat) ||
|
||||
(x.ConnectionType == eRoutingPortConnectionType.Hdmi) ||
|
||||
(x.ConnectionType == eRoutingPortConnectionType.DisplayPort))
|
||||
.ToList().Count();
|
||||
|
||||
trilist.SetUshort(joinMap.HdcpInputPortCount.JoinNumber, hdcpInputPortCount);
|
||||
|
||||
}
|
||||
|
||||
var txFreeRun = tx as IHasFreeRun;
|
||||
|
||||
Reference in New Issue
Block a user