diff options
Diffstat (limited to 'vendor/github.com/pion/webrtc/v3/rtpcapabilities.go')
-rw-r--r-- | vendor/github.com/pion/webrtc/v3/rtpcapabilities.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/github.com/pion/webrtc/v3/rtpcapabilities.go b/vendor/github.com/pion/webrtc/v3/rtpcapabilities.go new file mode 100644 index 0000000..dc42230 --- /dev/null +++ b/vendor/github.com/pion/webrtc/v3/rtpcapabilities.go @@ -0,0 +1,9 @@ +package webrtc + +// RTPCapabilities represents the capabilities of a transceiver +// +// https://w3c.github.io/webrtc-pc/#rtcrtpcapabilities +type RTPCapabilities struct { + Codecs []RTPCodecCapability + HeaderExtensions []RTPHeaderExtensionCapability +} |