Files
livekit/pkg/rtc/clientinfo.go
T
cnderrauber c20a91d2b2 enable red by default (#940)
* enable red by default

* fix test case
2022-08-22 17:40:12 +08:00

12 lines
257 B
Go

package rtc
import "github.com/livekit/protocol/livekit"
type ClientInfo struct {
*livekit.ClientInfo
}
func (c ClientInfo) SupportsAudioRED() bool {
return c.ClientInfo != nil && c.ClientInfo.Browser != "firefox" && c.ClientInfo.Browser != "safari"
}