| /webrtc/rtcp/src/ |
| H A D | header.rs | 10 pub enum PacketType { enum 39 impl std::fmt::Display for PacketType { implementation 43 PacketType::SenderReport => "SR", in fmt() 44 PacketType::ReceiverReport => "RR", in fmt() 45 PacketType::SourceDescription => "SDES", in fmt() 46 PacketType::Goodbye => "BYE", in fmt() 47 PacketType::ApplicationDefined => "APP", in fmt() 50 PacketType::ExtendedReport => "XR", in fmt() 56 impl From<u8> for PacketType { implementation 67 _ => PacketType::Unsupported, in from() [all …]
|
| H A D | packet.rs | 93 PacketType::SenderReport => Box::new(SenderReport::unmarshal(&mut in_packet)?), in unmarshaller() 94 PacketType::ReceiverReport => Box::new(ReceiverReport::unmarshal(&mut in_packet)?), in unmarshaller() 95 PacketType::SourceDescription => Box::new(SourceDescription::unmarshal(&mut in_packet)?), in unmarshaller() 96 PacketType::Goodbye => Box::new(Goodbye::unmarshal(&mut in_packet)?), in unmarshaller() 98 PacketType::TransportSpecificFeedback => match h.count { in unmarshaller() 104 PacketType::PayloadSpecificFeedback => match h.count { in unmarshaller() 111 PacketType::ExtendedReport => Box::new(ExtendedReport::unmarshal(&mut in_packet)?), in unmarshaller()
|
| /webrtc/rtcp/src/payload_feedbacks/picture_loss_indication/ |
| H A D | mod.rs | 40 packet_type: PacketType::PayloadSpecificFeedback, in header() 119 if h.packet_type != PacketType::PayloadSpecificFeedback || h.count != FORMAT_PLI { in unmarshal()
|
| H A D | picture_loss_indication_test.rs | 141 packet_type: PacketType::PayloadSpecificFeedback, in test_picture_loss_indication_unmarshal_header()
|
| /webrtc/rtcp/src/transport_feedbacks/rapid_resynchronization_request/ |
| H A D | mod.rs | 42 packet_type: PacketType::TransportSpecificFeedback, in header() 122 if h.packet_type != PacketType::TransportSpecificFeedback || h.count != FORMAT_RRR { in unmarshal()
|
| /webrtc/rtcp/src/extended_report/ |
| H A D | mod.rs | 21 use crate::header::{Header, PacketType, HEADER_LENGTH, SSRC_LENGTH}; 174 packet_type: PacketType::ExtendedReport, in header() 259 if header.packet_type != PacketType::ExtendedReport { in unmarshal()
|
| /webrtc/rtcp/src/payload_feedbacks/full_intra_request/ |
| H A D | mod.rs | 47 packet_type: PacketType::PayloadSpecificFeedback, in header() 136 if h.packet_type != PacketType::PayloadSpecificFeedback || h.count != FORMAT_FIR { in unmarshal()
|
| H A D | full_intra_request_test.rs | 187 packet_type: PacketType::PayloadSpecificFeedback, in test_full_intra_request_unmarshal_header()
|
| /webrtc/rtcp/src/goodbye/ |
| H A D | mod.rs | 40 packet_type: PacketType::Goodbye, in header() 153 if header.packet_type != PacketType::Goodbye { in unmarshal()
|
| /webrtc/rtcp/src/receiver_report/ |
| H A D | mod.rs | 54 packet_type: PacketType::ReceiverReport, in header() 196 if header.packet_type != PacketType::ReceiverReport { in unmarshal()
|
| /webrtc/rtcp/src/payload_feedbacks/slice_loss_indication/ |
| H A D | mod.rs | 55 packet_type: PacketType::TransportSpecificFeedback, in header() 144 if h.packet_type != PacketType::TransportSpecificFeedback || h.count != FORMAT_SLI { in unmarshal()
|
| /webrtc/rtcp/src/payload_feedbacks/receiver_estimated_maximum_bitrate/ |
| H A D | mod.rs | 62 packet_type: PacketType::PayloadSpecificFeedback, in header() 215 if header.packet_type != PacketType::PayloadSpecificFeedback || header.count != FORMAT_REMB in unmarshal()
|
| /webrtc/rtcp/src/sender_report/ |
| H A D | mod.rs | 89 packet_type: PacketType::SenderReport, in header() 257 if header.packet_type != PacketType::SenderReport { in unmarshal()
|
| /webrtc/rtcp/src/transport_feedbacks/transport_layer_nack/ |
| H A D | mod.rs | 131 packet_type: PacketType::TransportSpecificFeedback, in header() 217 if h.packet_type != PacketType::TransportSpecificFeedback || h.count != FORMAT_TLN { in unmarshal()
|
| /webrtc/rtcp/src/source_description/ |
| H A D | mod.rs | 296 packet_type: PacketType::SourceDescription, in header() 412 if h.packet_type != PacketType::SourceDescription { in unmarshal()
|
| /webrtc/rtcp/src/transport_feedbacks/transport_layer_cc/ |
| H A D | mod.rs | 474 packet_type: PacketType::TransportSpecificFeedback, in header() 586 if h.packet_type != PacketType::TransportSpecificFeedback || h.count != FORMAT_TCC { in unmarshal()
|