rtpdecodingparameters.go 401 B

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