Commit 7c83f2fa authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Don't pass group to rtcpDownListener.

parent e2055967
...@@ -598,7 +598,7 @@ func addDownTrack(c *client, id string, remoteTrack *upTrack, remoteConn *upConn ...@@ -598,7 +598,7 @@ func addDownTrack(c *client, id string, remoteTrack *upTrack, remoteConn *upConn
conn.tracks = append(conn.tracks, track) conn.tracks = append(conn.tracks, track)
remoteTrack.addLocal(track) remoteTrack.addLocal(track)
go rtcpDownListener(c.group, conn, track, s) go rtcpDownListener(conn, track, s)
return conn, s, nil return conn, s, nil
} }
...@@ -638,7 +638,7 @@ func (track *downTrack) updateRate(loss uint8, now uint64) { ...@@ -638,7 +638,7 @@ func (track *downTrack) updateRate(loss uint8, now uint64) {
track.maxLossBitrate.Set(rate, now) track.maxLossBitrate.Set(rate, now)
} }
func rtcpDownListener(g *group, conn *downConnection, track *downTrack, s *webrtc.RTPSender) { func rtcpDownListener(conn *downConnection, track *downTrack, s *webrtc.RTPSender) {
for { for {
ps, err := s.ReadRTCP() ps, err := s.ReadRTCP()
if err != nil { if err != nil {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment