From 414a4a956462da623ef70910264de1550bd610b9 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Thu, 9 Jul 2020 14:23:13 -0600 Subject: [PATCH] Remove Check for HdcpSupportedLevel --- .../Essentials_DM/Chassis/DmChassisController.cs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmChassisController.cs b/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmChassisController.cs index e097550d..1e291da9 100644 --- a/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmChassisController.cs +++ b/essentials-framework/Essentials DM/Essentials_DM/Chassis/DmChassisController.cs @@ -1163,12 +1163,9 @@ namespace PepperDash.Essentials.DM var hdmiInPortWCec = port as HdmiInputWithCEC; - Debug.Console(0,this,"Input card slot: {0} HdcpSupportedLevel: {1}", ioSlot, hdmiInPortWCec.HdcpSupportedLevelFeedback); - if (hdmiInPortWCec.HdcpSupportedLevelFeedback != eHdcpSupportedLevel.Unknown) - { - SetHdcpStateAction(true, hdmiInPortWCec, joinMap.HdcpSupportState.JoinNumber + ioSlotJoin, - trilist); - } + + SetHdcpStateAction(true, hdmiInPortWCec, joinMap.HdcpSupportState.JoinNumber + ioSlotJoin, trilist); + InputCardHdcpStateFeedbacks[ioSlot].LinkInputSig( trilist.UShortInput[joinMap.HdcpSupportState.JoinNumber + ioSlotJoin]);