diff options
Diffstat (limited to 'vendor/github.com/pion/webrtc/v3/rtpcodingparameters.go')
-rw-r--r-- | vendor/github.com/pion/webrtc/v3/rtpcodingparameters.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/pion/webrtc/v3/rtpcodingparameters.go b/vendor/github.com/pion/webrtc/v3/rtpcodingparameters.go new file mode 100644 index 0000000..8a08c33 --- /dev/null +++ b/vendor/github.com/pion/webrtc/v3/rtpcodingparameters.go @@ -0,0 +1,10 @@ +package webrtc + +// RTPCodingParameters provides information relating to both encoding and decoding. +// This is a subset of the RFC since Pion WebRTC doesn't implement encoding/decoding itself +// http://draft.ortc.org/#dom-rtcrtpcodingparameters +type RTPCodingParameters struct { + RID string `json:"rid"` + SSRC SSRC `json:"ssrc"` + PayloadType PayloadType `json:"payloadType"` +} |