mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-09-27 03:25:56 +08:00

- Refactor frame converter implementation - Update mp4 track to use ICodex - General refactoring and code improvements 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
34 lines
1.6 KiB
Go
34 lines
1.6 KiB
Go
package pkg
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotFound = errors.New("not found")
|
|
ErrDisposed = errors.New("disposed")
|
|
ErrDisabled = errors.New("disabled")
|
|
ErrStreamExist = errors.New("stream exist")
|
|
ErrRecordExists = errors.New("record exists")
|
|
ErrKick = errors.New("kick")
|
|
ErrDiscard = errors.New("discard")
|
|
ErrPublishMaxCount = errors.New("publish max count exceeded")
|
|
ErrPublishTimeout = errors.New("publish timeout")
|
|
ErrPublishIdleTimeout = errors.New("publish idle timeout")
|
|
ErrPublishDelayCloseTimeout = errors.New("publish delay close timeout")
|
|
ErrPushRemoteURLExist = errors.New("push remote url exist")
|
|
ErrSubscribeMaxCount = errors.New("subscribe max count exceeded")
|
|
ErrSubscribeTimeout = errors.New("subscribe timeout")
|
|
ErrRestart = errors.New("restart")
|
|
ErrInterrupt = errors.New("interrupt")
|
|
ErrUnsupportCodec = errors.New("unsupport codec")
|
|
ErrMuted = errors.New("muted")
|
|
ErrSkip = errors.New("skip")
|
|
ErrNoTrack = errors.New("no track")
|
|
ErrNoDB = errors.New("no db")
|
|
ErrLost = errors.New("lost")
|
|
ErrSeek = errors.New("seek")
|
|
ErrRecordSamePath = errors.New("record same path")
|
|
ErrTransformSame = errors.New("transform same")
|
|
ErrNotListen = errors.New("not listen")
|
|
ErrInvalidCredentials = errors.New("invalid credentials")
|
|
)
|