mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 20:54:55 +00:00
fixes audio source feedback and setting audio source
4kz302C does not support audio breakway routing.
This commit is contained in:
@@ -109,7 +109,8 @@ namespace PepperDash.Essentials.DM
|
|||||||
});
|
});
|
||||||
AudioSourceNumericFeedback = new IntFeedback(() =>
|
AudioSourceNumericFeedback = new IntFeedback(() =>
|
||||||
{
|
{
|
||||||
return (int)Tx.AudioSourceFeedback;
|
//Doing this because 4kz302 does not allow for breakaway audio source selection
|
||||||
|
return (int)Tx.VideoSourceFeedback;
|
||||||
});
|
});
|
||||||
|
|
||||||
HdmiIn1HdcpCapabilityFeedback = new IntFeedback("HdmiIn1HdcpCapability", () =>
|
HdmiIn1HdcpCapabilityFeedback = new IntFeedback("HdmiIn1HdcpCapability", () =>
|
||||||
@@ -250,7 +251,11 @@ namespace PepperDash.Essentials.DM
|
|||||||
// NOTE: It's possible that this particular TX model may not like the AudioSource property being set.
|
// NOTE: It's possible that this particular TX model may not like the AudioSource property being set.
|
||||||
// The SIMPL definition only shows a single analog for AudioVideo Source
|
// The SIMPL definition only shows a single analog for AudioVideo Source
|
||||||
if ((signalType | eRoutingSignalType.Audio) == eRoutingSignalType.Audio)
|
if ((signalType | eRoutingSignalType.Audio) == eRoutingSignalType.Audio)
|
||||||
Tx.AudioSource = (eAst)inputSelector;
|
{
|
||||||
|
//it doesn't...
|
||||||
|
Debug.Console(2, this, "Unable to execute audio-only switch for tx {0}", Key);
|
||||||
|
//Tx.AudioSource = (eAst) inputSelector;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void InputStreamChangeEvent(EndpointInputStream inputStream, EndpointInputStreamEventArgs args)
|
void InputStreamChangeEvent(EndpointInputStream inputStream, EndpointInputStreamEventArgs args)
|
||||||
|
|||||||
Reference in New Issue
Block a user