mirror of
https://github.com/status-im/status-go.git
synced 2025-01-20 03:30:24 +00:00
15 lines
492 B
Go
15 lines
492 B
Go
package codecs
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
errShortPacket = errors.New("packet is not large enough")
|
|
errNilPacket = errors.New("invalid nil packet")
|
|
errTooManyPDiff = errors.New("too many PDiff")
|
|
errTooManySpatialLayers = errors.New("too many spatial layers")
|
|
errUnhandledNALUType = errors.New("NALU Type is unhandled")
|
|
|
|
// AV1 Errors
|
|
errIsKeyframeAndFragment = errors.New("bits Z and N are set. Not possible to have OBU be tail fragment and be keyframe")
|
|
)
|