mirror of
https://github.com/livekit/livekit.git
synced 2026-04-27 12:55:31 +00:00
8b7a776af6
* remove unsed files from ion-sfu * remove comment code * go mod tidy
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")
|
|
)
|