pub type RTCRtpEncodingParameters = RTCRtpCodingParameters;
Expand description

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

Aliased Type§

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

Fields§

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