webrtc-sdp icon indicating copy to clipboard operation
webrtc-sdp copied to clipboard

Unknown rtcpfb feedback type: "rrtr“ ?

Open yuebinyun opened this issue 4 years ago • 3 comments

Some(x) => match *x {
    "ack" => SdpAttributeRtcpFbType::Ack,
    "ccm" => SdpAttributeRtcpFbType::Ccm,
    "nack" => SdpAttributeRtcpFbType::Nack,
    "trr-int" => SdpAttributeRtcpFbType::TrrInt,
    "goog-remb" => SdpAttributeRtcpFbType::Remb,
    "transport-cc" => SdpAttributeRtcpFbType::TransCc,
    _ => {
        return Err(SdpParserInternalError::Unsupported(format!(
            "Unknown rtcpfb feedback type: {:?}",
            x
        )));
    }
},

Unsupported { error: Unsupported("Unknown rtcpfb feedback type: "rrtr""), line: "a=rtcp-fb:111 rrtr", line_number: 26 }

yuebinyun avatar Jun 16 '21 07:06 yuebinyun

@yuebinyun I am not familiar with the rrtr feedback type. Is there an RFC you could point me to?

fuzzy-coats avatar Jul 26 '21 23:07 fuzzy-coats

I've noticed that rrtr feedback type is used in Google Meet. Found definition of rrtr in Chromium source.

mstyura avatar Sep 07 '21 15:09 mstyura

Firefox issue filed: https://bugzilla.mozilla.org/show_bug.cgi?id=1729757

na-g avatar Sep 08 '21 18:09 na-g