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

Send up actions synchronously.

This commit is contained in:
Juliusz Chroboczek 2021-05-17 03:54:58 +02:00
parent c00a21995e
commit fd76abb61d

View file

@ -366,15 +366,12 @@ func (up *rtpUpTrack) AddLocal(local conn.DownTrack) error {
}
}
up.local = append(up.local, local)
// do this asynchronously, to avoid deadlocks when multiple
// clients call this simultaneously.
go up.action(trackActionAdd, local)
up.action(trackActionAdd, local)
return nil
}
func (up *rtpUpTrack) RequestKeyframe() error {
go up.action(trackActionKeyframe, nil)
up.action(trackActionKeyframe, nil)
return nil
}