1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-12 19:55:59 +01:00

Increase the size of the NACK cache.

This commit is contained in:
Juliusz Chroboczek 2020-04-29 20:57:26 +02:00
parent 4996cf6931
commit f1deb84576

View file

@ -289,7 +289,7 @@ func addUpConn(c *client, id string) (*upConnection, error) {
} }
track := &upTrack{ track := &upTrack{
track: remote, track: remote,
cache: packetcache.New(32), cache: packetcache.New(96),
maxBitrate: ^uint64(0), maxBitrate: ^uint64(0),
} }
u.tracks = append(u.tracks, track) u.tracks = append(u.tracks, track)