pub type RTCRtpDecodingParameters = RTCRtpCodingParameters;
Expand description

RTPDecodingParameters provides information relating to both encoding and decoding. This is a subset of the RFC since Pion WebRTC doesn’t implement decoding itself http://draft.ortc.org/#dom-rtcrtpdecodingparameters

Aliased Type§

struct RTCRtpDecodingParameters {
    pub rid: SmolStr,
    pub ssrc: u32,
    pub payload_type: u8,
    pub rtx: RTCRtpRtxParameters,
}

Fields§

§rid: SmolStr§ssrc: u32§payload_type: u8§rtx: RTCRtpRtxParameters