1
Fork 0

Remove dead code.

This commit is contained in:
Juliusz Chroboczek 2020-06-03 23:40:50 +02:00
parent 4da03a3ce5
commit b1542af47c
1 changed files with 0 additions and 20 deletions

View File

@ -975,26 +975,6 @@ func handleReport(track *rtpDownTrack, report rtcp.ReceptionReport, jiffies uint
}
}
func trackKinds(down *rtpDownConnection) (audio bool, video bool) {
if down.pc == nil {
return
}
for _, s := range down.pc.GetSenders() {
track := s.Track()
if track == nil {
continue
}
switch track.Kind() {
case webrtc.RTPCodecTypeAudio:
audio = true
case webrtc.RTPCodecTypeVideo:
video = true
}
}
return
}
func updateUpBitrate(up *upConnection, maxVideoRate uint64) {
now := rtptime.Jiffies()