mirror of
https://github.com/livekit/livekit.git
synced 2026-05-15 07:25:30 +00:00
c20a91d2b2
* enable red by default * fix test case
12 lines
257 B
Go
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"
|
|
}
|