rtpencodingparameters.go 401 B

1234567891011
  1. // SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
  2. // SPDX-License-Identifier: MIT
  3. package webrtc
  4. // RTPEncodingParameters provides information relating to both encoding and decoding.
  5. // This is a subset of the RFC since Pion WebRTC doesn't implement encoding itself
  6. // http://draft.ortc.org/#dom-rtcrtpencodingparameters
  7. type RTPEncodingParameters struct {
  8. RTPCodingParameters
  9. }