mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 12:44:58 +00:00
Limits max video participant list size to 50
This commit is contained in:
@@ -503,7 +503,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|||||||
|
|
||||||
private string UpdateParticipantsXSig(List<Participant> currentParticipants)
|
private string UpdateParticipantsXSig(List<Participant> currentParticipants)
|
||||||
{
|
{
|
||||||
const int maxParticipants = 255;
|
const int maxParticipants = 50;
|
||||||
const int maxDigitals = 5;
|
const int maxDigitals = 5;
|
||||||
const int maxStrings = 1;
|
const int maxStrings = 1;
|
||||||
const int offset = maxDigitals + maxStrings;
|
const int offset = maxDigitals + maxStrings;
|
||||||
|
|||||||
Reference in New Issue
Block a user