Updated join map to fix issue with audio/video source selection and feedback

This commit is contained in:
Neil Dorin
2018-10-01 19:34:53 -06:00
parent f7db0ef36c
commit a320eff13c
2 changed files with 4 additions and 2 deletions

View File

@@ -77,9 +77,11 @@ namespace PepperDash.Essentials.Bridges
IsOnline = IsOnline + joinOffset;
VideoSyncStatus = VideoSyncStatus + joinOffset;
CurrentInputResolution = CurrentInputResolution + joinOffset;
HdcpSupportOn = HdcpSupportOn + joinOffset;
HdcpSupportOff = HdcpSupportOff + joinOffset;
CurrentInputResolution = CurrentInputResolution + joinOffset;
VideoInput = VideoInput + joinOffset;
AudioInput = AudioInput + joinOffset;
HdcpSupportState = HdcpSupportState + joinOffset;
}
}