Home
last modified time | relevance | path

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

/webrtc/rtcp/src/
H A Dpacket.rs90 let mut in_packet = h.marshal()?.chain(raw_data.take(length)); in unmarshaller() localVariable
93 PacketType::SenderReport => Box::new(SenderReport::unmarshal(&mut in_packet)?), in unmarshaller()
96 PacketType::Goodbye => Box::new(Goodbye::unmarshal(&mut in_packet)?), in unmarshaller()
99 FORMAT_TLN => Box::new(TransportLayerNack::unmarshal(&mut in_packet)?), in unmarshaller()
101 FORMAT_TCC => Box::new(TransportLayerCc::unmarshal(&mut in_packet)?), in unmarshaller()
102 _ => Box::new(RawPacket::unmarshal(&mut in_packet)?), in unmarshaller()
105 FORMAT_PLI => Box::new(PictureLossIndication::unmarshal(&mut in_packet)?), in unmarshaller()
106 FORMAT_SLI => Box::new(SliceLossIndication::unmarshal(&mut in_packet)?), in unmarshaller()
108 FORMAT_FIR => Box::new(FullIntraRequest::unmarshal(&mut in_packet)?), in unmarshaller()
109 _ => Box::new(RawPacket::unmarshal(&mut in_packet)?), in unmarshaller()
[all …]