1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-10 02:35:58 +01:00

Remove dead code.

This commit is contained in:
Juliusz Chroboczek 2021-05-08 16:03:32 +02:00
parent 8ec0a44c09
commit 65972fabe8

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()
}