Increase sequence number cache to handle higb rate tracks. (#1560)

Hopefully temporary while we can find a better solution.
Adds 36 KB per SSRC. So, if a node can handle 10K SSRCs (roughly 10K
tracks), that will be 360 MB of extra memory.
This commit is contained in:
Raja Subramanian
2023-03-29 22:32:39 +05:30
committed by GitHub
parent 2c439b3063
commit de80f521de
+1 -1
View File
@@ -19,7 +19,7 @@ const (
GapHistogramNumBins = 101
NumSequenceNumbers = 65536
FirstSnapshotId = 1
SnInfoSize = 2048
SnInfoSize = 8192
SnInfoMask = SnInfoSize - 1
TooLargeOWDDelta = 400 * time.Millisecond
)