mirror of
https://github.com/jech/galene.git
synced 2024-11-10 02:35:58 +01:00
Increase receiver report timeout.
This commit is contained in:
parent
f0dcd0b1d9
commit
fb17778ba6
1 changed files with 2 additions and 2 deletions
|
@ -53,6 +53,8 @@ func (s *receiverStats) Set(loss uint8, jitter uint32, now uint64) {
|
|||
atomic.StoreUint64(&s.jiffies, now)
|
||||
}
|
||||
|
||||
const receiverReportTimeout = 30 * rtptime.JiffiesPerSec
|
||||
|
||||
func (s *receiverStats) Get(now uint64) (uint8, uint32) {
|
||||
ts := atomic.LoadUint64(&s.jiffies)
|
||||
if now < ts || now > ts+receiverReportTimeout {
|
||||
|
@ -61,8 +63,6 @@ func (s *receiverStats) Get(now uint64) (uint8, uint32) {
|
|||
return uint8(atomic.LoadUint32(&s.loss)), atomic.LoadUint32(&s.jitter)
|
||||
}
|
||||
|
||||
const receiverReportTimeout = 8 * rtptime.JiffiesPerSec
|
||||
|
||||
type iceConnection interface {
|
||||
addICECandidate(candidate *webrtc.ICECandidateInit) error
|
||||
flushICECandidates() error
|
||||
|
|
Loading…
Reference in a new issue