mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-23 10:07:30 +00:00
8 lines
305 B
Go
8 lines
305 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
|
|
}
|