Home
last modified time | relevance | path

Searched refs:SourceDescription (Results 1 – 6 of 6) sorted by relevance

/webrtc/rtcp/src/source_description/
H A Dsource_description_test.rs9 SourceDescription::default(), in test_source_description_unmarshal()
84 SourceDescription { in test_source_description_unmarshal()
121 SourceDescription { in test_source_description_unmarshal()
142 SourceDescription { in test_source_description_unmarshal()
174 SourceDescription { in test_source_description_unmarshal()
236 SourceDescription { in test_source_description_roundtrip()
264 SourceDescription { in test_source_description_roundtrip()
277 SourceDescription { in test_source_description_roundtrip()
287 SourceDescription { in test_source_description_roundtrip()
300 SourceDescription { in test_source_description_roundtrip()
[all …]
H A Dmod.rs273 pub struct SourceDescription { struct
277 impl fmt::Display for SourceDescription { implementation
290 impl Packet for SourceDescription { implementation
296 packet_type: PacketType::SourceDescription, in header()
322 .downcast_ref::<SourceDescription>() in equal()
331 impl MarshalSize for SourceDescription { implementation
339 impl Marshal for SourceDescription { implementation
385 impl Unmarshal for SourceDescription { implementation
412 if h.packet_type != PacketType::SourceDescription { in unmarshal()
434 Ok(SourceDescription { chunks }) in unmarshal()
/webrtc/rtcp/src/compound_packet/
H A Dcompound_packet_test.rs91 let cname = SourceDescription { in test_valid_packet()
111 Box::<SourceDescription>::default(), in test_valid_packet()
171 let cname = SourceDescription { in test_cname()
192 Box::<SourceDescription>::default(), in test_cname()
273 let cname = SourceDescription { in test_compound_packet_roundtrip()
H A Dmod.rs143 } else if let Some(e) = pkt.as_any().downcast_ref::<SourceDescription>() { in validate()
176 if let Some(sdes) = pkt.as_any().downcast_ref::<SourceDescription>() { in cname()
/webrtc/rtcp/src/
H A Dheader.rs15 SourceDescription = 202, // RFC 3550, 6.5 enumerator
45 PacketType::SourceDescription => "SDES", in fmt()
61 202 => PacketType::SourceDescription, // RFC 3550, 6.5 in from()
H A Dpacket.rs95 PacketType::SourceDescription => Box::new(SourceDescription::unmarshal(&mut in_packet)?), in unmarshaller()
172 let b = SourceDescription { in test_packet_unmarshal()