From 7d72d5486238eb26245c956150bb8a833e489b45 Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Wed, 11 Nov 2020 12:08:30 -0700 Subject: [PATCH] Gets ExternalSourceSwitching feedback working --- PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs | 2 +- .../VideoCodec/CiscoCodec/CiscoSparkCodec.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs b/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs index 1b936420..ffc6a4db 100644 --- a/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs +++ b/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs @@ -194,7 +194,7 @@ namespace PepperDash.Essentials var vc = VideoCodec as IHasExternalSourceSwitching; if (vc != null) { - vc.SetSelectedSource(_CurrentSourceInfo.SourceKey); + vc.SetSelectedSource(CurrentSourceInfoKey); } } } diff --git a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/CiscoCodec/CiscoSparkCodec.cs b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/CiscoCodec/CiscoSparkCodec.cs index 4e94daef..429794bc 100644 --- a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/CiscoCodec/CiscoSparkCodec.cs +++ b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/CiscoCodec/CiscoSparkCodec.cs @@ -1340,7 +1340,6 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco public override void SendDtmf(string s) { SendText(string.Format("xCommand Call DTMFSend CallId: {0} DTMFString: \"{1}\"", GetCallId(), s)); - } public void SelectPresentationSource(int source)