Searched refs:RtcpHeader (Results 1 – 7 of 7) sorted by relevance
| /xiu/protocol/rtsp/src/rtp/rtcp/ |
| H A D | rtcp_header.rs | 15 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 D | rtcp_app.rs | 2 use super::rtcp_header::RtcpHeader; 23 pub header: RtcpHeader, 37 rtcp_app.header = RtcpHeader::unmarshal(&mut reader)?; in unmarshal()
|
| H A D | rtcp_bye.rs | 2 use super::rtcp_header::RtcpHeader; 23 pub header: RtcpHeader, 37 header: RtcpHeader::unmarshal(&mut reader)?, in unmarshal()
|
| H A D | rtcp_sr.rs | 2 use super::rtcp_header::RtcpHeader; 49 pub header: RtcpHeader, 64 header: RtcpHeader::unmarshal(reader)?, in unmarshal()
|
| H A D | rtcp_rr.rs | 2 use super::rtcp_header::RtcpHeader; 56 pub header: RtcpHeader, 69 header: RtcpHeader::unmarshal(&mut reader)?, in unmarshal()
|
| H A D | rtcp_context.rs | 8 rtcp_header::RtcpHeader, 157 header: RtcpHeader { in generate_bye() 203 header: RtcpHeader { in generate_rr()
|
| /xiu/protocol/rtsp/src/ |
| H A D | rtsp_channel.rs | 3 use crate::rtp::rtcp::rtcp_header::RtcpHeader; 173 if let Ok(rtcp_header) = RtcpHeader::unmarshal(&mut reader_clone) { in on_rtcp()
|