rtpcapabilities.go 360 B

123456789101112
  1. // SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
  2. // SPDX-License-Identifier: MIT
  3. package webrtc
  4. // RTPCapabilities represents the capabilities of a transceiver
  5. //
  6. // https://w3c.github.io/webrtc-pc/#rtcrtpcapabilities
  7. type RTPCapabilities struct {
  8. Codecs []RTPCodecCapability
  9. HeaderExtensions []RTPHeaderExtensionCapability
  10. }