Merge branch 'development' into feature/add-hdbasettx-support

This commit is contained in:
Andrew Welker
2021-01-20 17:06:20 -07:00
committed by GitHub

View File

@@ -74,10 +74,10 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
{ {
get get
{ {
return new List<Feedback> return new List<Feedback>
{ {
PrivacyModeIsOnFeedback, PrivacyModeIsOnFeedback,
SharingSourceFeedback SharingSourceFeedback
}; };
} }
} }
@@ -677,19 +677,19 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
var meetingIndex = 0; var meetingIndex = 0;
var tokenArray = new XSigToken[maxMeetings * offset]; var tokenArray = new XSigToken[maxMeetings * offset];
/* /*
* Digitals * Digitals
* IsJoinable - 1 * IsJoinable - 1
* IsDialable - 2 * IsDialable - 2
* *
* Serials * Serials
* Organizer - 1 * Organizer - 1
* Title - 2 * Title - 2
* Start Date - 3 * Start Date - 3
* Start Time - 4 * Start Time - 4
* End Date - 5 * End Date - 5
* End Time - 6 * End Time - 6
* Id - 7 * Id - 7
*/ */
@@ -848,7 +848,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
Debug.Console(1, this, "Call Direction: {0}", args.CallItem.Direction); Debug.Console(1, this, "Call Direction: {0}", args.CallItem.Direction);
Debug.Console(1, this, "Call is incoming: {0}", args.CallItem.Direction == eCodecCallDirection.Incoming); Debug.Console(1, this, "Call is incoming: {0}", args.CallItem.Direction == eCodecCallDirection.Incoming);
trilist.SetBool(joinMap.IncomingCall.JoinNumber, args.CallItem.Direction == eCodecCallDirection.Incoming && args.CallItem.Status != eCodecCallStatus.Disconnected); trilist.SetBool(joinMap.IncomingCall.JoinNumber, args.CallItem.Direction == eCodecCallDirection.Incoming && args.CallItem.Status == eCodecCallStatus.Ringing);
if (args.CallItem.Direction == eCodecCallDirection.Incoming) if (args.CallItem.Direction == eCodecCallDirection.Incoming)
{ {