Home
last modified time | relevance | path

Searched refs:rtcp_header (Results 1 – 8 of 8) sorted by relevance

/xiu/protocol/rtsp/src/rtp/rtcp/
H A Drtcp_header.rs28 let mut rtcp_header = RtcpHeader::default(); in unmarshal() localVariable
31 rtcp_header.version = byte_1st >> 6; in unmarshal()
32 rtcp_header.padding_flag = (byte_1st >> 5) & 0x01; in unmarshal()
33 rtcp_header.report_count = byte_1st & 0x1F; in unmarshal()
34 rtcp_header.payload_type = reader.read_u8()?; in unmarshal()
35 rtcp_header.length = reader.read_u16::<BigEndian>()?; in unmarshal()
37 Ok(rtcp_header) in unmarshal()
H A Dmod.rs5 pub mod rtcp_header; module
H A Drtcp_app.rs2 use super::rtcp_header::RtcpHeader;
H A Drtcp_bye.rs2 use super::rtcp_header::RtcpHeader;
H A Drtcp_sr.rs2 use super::rtcp_header::RtcpHeader;
H A Drtcp_rr.rs2 use super::rtcp_header::RtcpHeader;
H A Drtcp_context.rs8 rtcp_header::RtcpHeader,
/xiu/protocol/rtsp/src/
H A Drtsp_channel.rs3 use crate::rtp::rtcp::rtcp_header::RtcpHeader;
173 if let Ok(rtcp_header) = RtcpHeader::unmarshal(&mut reader_clone) { in on_rtcp()
174 match rtcp_header.payload_type { in on_rtcp()