mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
Rename rate.Add to rate.Accumulate.
This commit is contained in:
parent
c4284a45c5
commit
70dee15f5c
4 changed files with 6 additions and 6 deletions
2
conn.go
2
conn.go
|
@ -286,7 +286,7 @@ func (down *rtpDownTrack) WriteRTP(packet *rtp.Packet) error {
|
|||
}
|
||||
|
||||
func (down *rtpDownTrack) Accumulate(bytes uint32) {
|
||||
down.rate.Add(bytes)
|
||||
down.rate.Accumulate(bytes)
|
||||
}
|
||||
|
||||
func (down *rtpDownTrack) GetMaxBitrate(now uint64) uint64 {
|
||||
|
|
|
@ -33,7 +33,7 @@ func (e *Estimator) swap(now time.Time) {
|
|||
e.time = now
|
||||
}
|
||||
|
||||
func (e *Estimator) Add(count uint32) {
|
||||
func (e *Estimator) Accumulate(count uint32) {
|
||||
atomic.AddUint32(&e.count, count)
|
||||
}
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@ func TestEstimator(t *testing.T) {
|
|||
e := New(time.Second)
|
||||
|
||||
e.estimate(now)
|
||||
e.Add(42)
|
||||
e.Add(128)
|
||||
e.Accumulate(42)
|
||||
e.Accumulate(128)
|
||||
e.estimate(now.Add(time.Second))
|
||||
rate := e.estimate(now.Add(time.Second + time.Millisecond))
|
||||
|
||||
|
|
|
@ -422,7 +422,7 @@ func readLoop(conn *upConnection, track *upTrack) {
|
|||
}
|
||||
break
|
||||
}
|
||||
track.rate.Add(uint32(bytes))
|
||||
track.rate.Accumulate(uint32(bytes))
|
||||
|
||||
err = packet.Unmarshal(buf[:bytes])
|
||||
if err != nil {
|
||||
|
@ -1050,7 +1050,7 @@ func sendRecovery(p *rtcp.TransportLayerNack, track *rtpDownTrack) {
|
|||
log.Printf("WriteRTP: %v", err)
|
||||
continue
|
||||
}
|
||||
track.rate.Add(uint32(l))
|
||||
track.rate.Accumulate(uint32(l))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue