mirror of
https://github.com/jech/galene.git
synced 2024-11-10 02:35:58 +01:00
Inline activateDownTrack.
This commit is contained in:
parent
9488d4a7c8
commit
d9f2a93615
1 changed files with 1 additions and 5 deletions
|
@ -736,10 +736,6 @@ func addDownTrack(c *client, conn *downConnection, remoteTrack *upTrack, remoteC
|
|||
return s, nil
|
||||
}
|
||||
|
||||
func activateDownTrack(conn *downConnection, track *downTrack) {
|
||||
track.remote.addLocal(track)
|
||||
}
|
||||
|
||||
const (
|
||||
minLossRate = 9600
|
||||
initLossRate = 512 * 1000
|
||||
|
@ -1058,7 +1054,7 @@ func gotAnswer(c *client, id string, answer webrtc.SessionDescription) error {
|
|||
}
|
||||
|
||||
for _, t := range down.tracks {
|
||||
activateDownTrack(down, t)
|
||||
t.remote.addLocal(t)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue