Home
last modified time | relevance | path

Searched refs:RtcpSenderReport (Results 1 – 3 of 3) sorted by relevance

/xiu/protocol/rtsp/src/rtp/rtcp/
H A Drtcp_sr.rs48 pub struct RtcpSenderReport { struct
58 impl Unmarshal<&mut BytesReader, Result<Self, RtcpError>> for RtcpSenderReport { argument
63 let mut sender_report = RtcpSenderReport { in unmarshal()
82 impl Marshal<Result<BytesMut, RtcpError>> for RtcpSenderReport { implementation
H A Drtcp_context.rs10 rtcp_sr::RtcpSenderReport,
221 pub fn received_sr(&mut self, sr: &RtcpSenderReport) { in received_sr() argument
/xiu/protocol/rtsp/src/
H A Drtsp_channel.rs20 use super::rtp::rtcp::rtcp_sr::RtcpSenderReport;
176 if let Ok(sr) = RtcpSenderReport::unmarshal(reader) { in on_rtcp()