mirror of
https://github.com/livekit/livekit.git
synced 2026-04-05 08:05:41 +00:00
9 lines
200 B
Go
9 lines
200 B
Go
package sfu
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrSpatialNotSupported = errors.New("current track does not support simulcast/SVC")
|
|
ErrSpatialLayerNotFound = errors.New("the requested layer does not exist")
|
|
)
|