1
Fork 0

Remove dead code.

This commit is contained in:
Juliusz Chroboczek 2021-05-08 16:03:32 +02:00
parent 8ec0a44c09
commit 65972fabe8
1 changed files with 0 additions and 5 deletions

View File

@ -238,7 +238,6 @@ type upTrackAtomics struct {
type rtpUpTrack struct {
track *webrtc.TrackRemote
label string
rate *estimator.Estimator
cache *packetcache.Cache
jitter *jitter.Estimator
@ -312,10 +311,6 @@ func (up *rtpUpTrack) GetRTP(seqno uint16, result []byte) uint16 {
return up.cache.Get(seqno, result)
}
func (up *rtpUpTrack) Label() string {
return up.label
}
func (up *rtpUpTrack) Kind() webrtc.RTPCodecType {
return up.track.Kind()
}