1
Fork 0

Start RTCP up sender early.

This commit is contained in:
Juliusz Chroboczek 2020-12-25 20:10:12 +01:00
parent e3fd9a963a
commit e5fec68acf
1 changed files with 2 additions and 1 deletions

View File

@ -453,10 +453,11 @@ func newUpConn(c group.Client, id string) (*rtpUpConnection, error) {
for _, cc := range clients {
cc.PushConn(c.Group(), up.id, up, tracks, up.label)
}
go rtcpUpSender(up)
}
})
go rtcpUpSender(up)
return up, nil
}