mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
Additional updates to resolve external switching with multiple upstream tie lines
This commit is contained in:
parent
f9ba562b0b
commit
48585469f6
3 changed files with 18 additions and 1 deletions
|
|
@ -11,6 +11,7 @@ namespace PepperDash.Essentials.Devices.Common.Codec
|
||||||
public interface IHasExternalSourceSwitching
|
public interface IHasExternalSourceSwitching
|
||||||
{
|
{
|
||||||
bool ExternalSourceListEnabled { get; }
|
bool ExternalSourceListEnabled { get; }
|
||||||
|
string ExternalSourceInputPort { get; }
|
||||||
void AddExternalSource(string connectorId, string key, string name, eExternalSourceType type);
|
void AddExternalSource(string connectorId, string key, string name, eExternalSourceType type);
|
||||||
void SetExternalSourceState(string key, eExternalSourceMode mode);
|
void SetExternalSourceState(string key, eExternalSourceMode mode);
|
||||||
void ClearExternalSources();
|
void ClearExternalSources();
|
||||||
|
|
|
||||||
|
|
@ -407,6 +407,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
||||||
CreateOsdSource();
|
CreateOsdSource();
|
||||||
|
|
||||||
ExternalSourceListEnabled = props.ExternalSourceListEnabled;
|
ExternalSourceListEnabled = props.ExternalSourceListEnabled;
|
||||||
|
ExternalSourceInputPort = props.ExternalSourceInputPort;
|
||||||
|
|
||||||
if (props.UiBranding == null)
|
if (props.UiBranding == null)
|
||||||
{
|
{
|
||||||
|
|
@ -416,6 +417,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
||||||
props.UiBranding.BrandingUrl);
|
props.UiBranding.BrandingUrl);
|
||||||
|
|
||||||
BrandingEnabled = props.UiBranding.Enable;
|
BrandingEnabled = props.UiBranding.Enable;
|
||||||
|
|
||||||
_brandingUrl = props.UiBranding.BrandingUrl;
|
_brandingUrl = props.UiBranding.BrandingUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1917,7 +1919,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
||||||
#region IHasExternalSourceSwitching Members
|
#region IHasExternalSourceSwitching Members
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Weather the Cisco supports External Source Lists or not
|
/// Wheather the Cisco supports External Source Lists or not
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool ExternalSourceListEnabled
|
public bool ExternalSourceListEnabled
|
||||||
{
|
{
|
||||||
|
|
@ -1925,6 +1927,11 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
||||||
private set;
|
private set;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The name of the RoutingInputPort to which the upstream external switcher is connected
|
||||||
|
/// </summary>
|
||||||
|
public string ExternalSourceInputPort { get; private set; }
|
||||||
|
|
||||||
public bool BrandingEnabled { get; private set; }
|
public bool BrandingEnabled { get; private set; }
|
||||||
private string _brandingUrl;
|
private string _brandingUrl;
|
||||||
private bool _sendMcUrl;
|
private bool _sendMcUrl;
|
||||||
|
|
|
||||||
|
|
@ -31,9 +31,18 @@ namespace PepperDash.Essentials.Devices.Common.Codec
|
||||||
[JsonProperty("sharing")]
|
[JsonProperty("sharing")]
|
||||||
public SharingProperties Sharing { get; set; }
|
public SharingProperties Sharing { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Enables external source switching capability
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("externalSourceListEnabled")]
|
[JsonProperty("externalSourceListEnabled")]
|
||||||
public bool ExternalSourceListEnabled { get; set; }
|
public bool ExternalSourceListEnabled { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The name of the routing input port on the codec to which the external switch is connected
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("externalSourceInputPort")]
|
||||||
|
public string ExternalSourceInputPort { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Optionsal property to set the limit of any phonebook queries for directory or searching
|
/// Optionsal property to set the limit of any phonebook queries for directory or searching
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue