Documentation ¶
Index ¶
- func Init(r *Registry)
- type AVP
- type Config
- type Element
- type Pipeline
- type Registry
- type WebRTCTransport
- func (t *WebRTCTransport) AddICECandidate(candidate webrtc.ICECandidateInit) error
- func (t *WebRTCTransport) CreateAnswer() (webrtc.SessionDescription, error)
- func (t *WebRTCTransport) CreateOffer() (webrtc.SessionDescription, error)
- func (t *WebRTCTransport) OnICECandidate(f func(c *webrtc.ICECandidate))
- func (t *WebRTCTransport) Process(pid, tid, eid string)
- func (t *WebRTCTransport) SetLocalDescription(desc webrtc.SessionDescription) error
- func (t *WebRTCTransport) SetRemoteDescription(desc webrtc.SessionDescription) error
- type WebRTCTransportConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type AVP ¶
type AVP struct {
// contains filtered or unexported fields
}
AVP represents an avp instance
type Config ¶
type Config struct { Log log.Config `mapstructure:"log"` Pipeline pipeline `mapstructure:"pipeline"` SampleBuilder samplebuilder `mapstructure:"samplebuilder"` WebRTC webrtcconf `mapstructure:"webrtc"` }
Config for base AVP
type Element ¶
type Element interface { ID() string Write(*samples.Sample) error Attach(Element) error Read() <-chan *samples.Sample Close() }
Element interface
type Pipeline ¶
type Pipeline struct {
// contains filtered or unexported fields
}
Pipeline constructs a processing graph
+--->elementCh--->element |
builder--+--->elementCh--->element
| +--->elementCh--->element
type Registry ¶
type Registry struct {
// contains filtered or unexported fields
}
Registry provides a registry of elements
func (*Registry) AddElement ¶
AddElement to registry
type WebRTCTransport ¶
type WebRTCTransport struct {
// contains filtered or unexported fields
}
WebRTCTransport represents a webrtc transport
func NewWebRTCTransport ¶
func NewWebRTCTransport(id string, cfg WebRTCTransportConfig) *WebRTCTransport
NewWebRTCTransport creates a new webrtc transport
func (*WebRTCTransport) AddICECandidate ¶
func (t *WebRTCTransport) AddICECandidate(candidate webrtc.ICECandidateInit) error
AddICECandidate accepts an ICE candidate string and adds it to the existing set of candidates
func (*WebRTCTransport) CreateAnswer ¶
func (t *WebRTCTransport) CreateAnswer() (webrtc.SessionDescription, error)
CreateAnswer starts the PeerConnection and generates the localDescription
func (*WebRTCTransport) CreateOffer ¶
func (t *WebRTCTransport) CreateOffer() (webrtc.SessionDescription, error)
CreateOffer starts the PeerConnection and generates the localDescription
func (*WebRTCTransport) OnICECandidate ¶
func (t *WebRTCTransport) OnICECandidate(f func(c *webrtc.ICECandidate))
OnICECandidate sets an event handler which is invoked when a new ICE candidate is found. Take note that the handler is gonna be called with a nil pointer when gathering is finished.
func (*WebRTCTransport) Process ¶
func (t *WebRTCTransport) Process(pid, tid, eid string)
Process creates a pipeline
func (*WebRTCTransport) SetLocalDescription ¶
func (t *WebRTCTransport) SetLocalDescription(desc webrtc.SessionDescription) error
SetLocalDescription sets the SessionDescription of the local peer
func (*WebRTCTransport) SetRemoteDescription ¶
func (t *WebRTCTransport) SetRemoteDescription(desc webrtc.SessionDescription) error
SetRemoteDescription sets the SessionDescription of the remote peer
type WebRTCTransportConfig ¶ added in v0.0.4
type WebRTCTransportConfig struct {
// contains filtered or unexported fields
}
WebRTCTransportConfig represents configuration options