Limits max video participant list size to 50

This commit is contained in:
Alex Johnson
2020-10-07 15:41:04 -04:00
parent f4fb9cd173
commit c58a1874ca

View File

@@ -503,7 +503,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
private string UpdateParticipantsXSig(List<Participant> currentParticipants)
{
const int maxParticipants = 255;
const int maxParticipants = 50;
const int maxDigitals = 5;
const int maxStrings = 1;
const int offset = maxDigitals + maxStrings;