status-go/vendor/github.com/pion/webrtc/v3/rtpsender_js.go

13 lines
295 B
Go
Raw Normal View History

2022-03-10 09:44:48 +00:00
//go:build js && wasm
// +build js,wasm
package webrtc
import "syscall/js"
// RTPSender allows an application to control how a given Track is encoded and transmitted to a remote peer
type RTPSender struct {
// Pointer to the underlying JavaScript RTCRTPSender object.
underlying js.Value
}