mirror of
https://github.com/pion/webrtc.git
synced 2025-12-24 11:51:03 +08:00
11 lines
372 B
Go
11 lines
372 B
Go
package webrtc
|
|
|
|
// RTPTransceiverInit dictionary is used when calling the WebRTC function addTransceiver() to provide configuration options for the new transceiver.
|
|
type RTPTransceiverInit struct {
|
|
Direction RTPTransceiverDirection
|
|
SendEncodings []RTPEncodingParameters
|
|
// Streams []*Track
|
|
}
|
|
|
|
type RtpTransceiverInit = RTPTransceiverInit //nolint: stylecheck
|