mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
2364facd60
* Add congestion control * Improve stream matching, add manual stream selection, add metrics * Use a ticker for bitrate estimation and make bandwidth drops switch to lower streams more aggressively * Missing signal response, fix video auto bug * Remove redundant mutex * Bitrate history queue * Get bitrate fn support h264 & float64 --------- Co-authored-by: Aleksandar Sukovic <aleksandar.sukovic@gmail.com>
49 lines
1.2 KiB
Go
49 lines
1.2 KiB
Go
package types
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/pion/webrtc/v3"
|
|
)
|
|
|
|
var (
|
|
ErrWebRTCDataChannelNotFound = errors.New("webrtc data channel not found")
|
|
ErrWebRTCConnectionNotFound = errors.New("webrtc connection not found")
|
|
)
|
|
|
|
type ICEServer struct {
|
|
URLs []string `mapstructure:"urls" json:"urls"`
|
|
Username string `mapstructure:"username" json:"username,omitempty"`
|
|
Credential string `mapstructure:"credential" json:"credential,omitempty"`
|
|
}
|
|
|
|
type WebRTCPeer interface {
|
|
CreateOffer(ICERestart bool) (*webrtc.SessionDescription, error)
|
|
CreateAnswer() (*webrtc.SessionDescription, error)
|
|
SetOffer(sdp string) error
|
|
SetAnswer(sdp string) error
|
|
SetCandidate(candidate webrtc.ICECandidateInit) error
|
|
|
|
SetVideoBitrate(bitrate int) error
|
|
SetVideoID(videoID string) error
|
|
GetVideoID() string
|
|
SetPaused(isPaused bool) error
|
|
SetVideoAuto(auto bool)
|
|
VideoAuto() bool
|
|
|
|
SendCursorPosition(x, y int) error
|
|
SendCursorImage(cur *CursorImage, img []byte) error
|
|
|
|
Destroy()
|
|
}
|
|
|
|
type WebRTCManager interface {
|
|
Start()
|
|
Shutdown() error
|
|
|
|
ICEServers() []ICEServer
|
|
|
|
CreatePeer(session Session, bitrate int, videoAuto bool) (*webrtc.SessionDescription, error)
|
|
SetCursorPosition(x, y int)
|
|
}
|