1
Fork 0

Send up actions synchronously.

This commit is contained in:
Juliusz Chroboczek 2021-05-17 03:54:58 +02:00
parent c00a21995e
commit fd76abb61d
1 changed files with 2 additions and 5 deletions

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
}