github.com/pion/webrtc/v4@v4.0.1/rtpdecodingparameters.go (about)

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