Home
last modified time | relevance | path

Searched refs:RtcpHeader (Results 1 – 7 of 7) sorted by relevance

/xiu/protocol/rtsp/src/rtp/rtcp/
H A Drtcp_header.rs15 pub struct RtcpHeader { struct
23 impl Unmarshal<&mut BytesReader, Result<Self, RtcpError>> for RtcpHeader { argument
28 let mut rtcp_header = RtcpHeader::default(); in unmarshal()
41 impl Marshal<Result<BytesMut, RtcpError>> for RtcpHeader { implementation
H A Drtcp_app.rs2 use super::rtcp_header::RtcpHeader;
23 pub header: RtcpHeader,
37 rtcp_app.header = RtcpHeader::unmarshal(&mut reader)?; in unmarshal()
H A Drtcp_bye.rs2 use super::rtcp_header::RtcpHeader;
23 pub header: RtcpHeader,
37 header: RtcpHeader::unmarshal(&mut reader)?, in unmarshal()
H A Drtcp_sr.rs2 use super::rtcp_header::RtcpHeader;
49 pub header: RtcpHeader,
64 header: RtcpHeader::unmarshal(reader)?, in unmarshal()
H A Drtcp_rr.rs2 use super::rtcp_header::RtcpHeader;
56 pub header: RtcpHeader,
69 header: RtcpHeader::unmarshal(&mut reader)?, in unmarshal()
H A Drtcp_context.rs8 rtcp_header::RtcpHeader,
157 header: RtcpHeader { in generate_bye()
203 header: RtcpHeader { in generate_rr()
/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()