Home
last modified time | relevance | path

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

/webrtc/rtcp/src/
H A Dreception_report.rs29 pub total_lost: u32, field
120 if self.total_lost >= (1 << 25) { in marshal_to()
124 buf.put_u8(((self.total_lost >> 16) & 0xFF) as u8); in marshal_to()
125 buf.put_u8(((self.total_lost >> 8) & 0xFF) as u8); in marshal_to()
126 buf.put_u8((self.total_lost & 0xFF) as u8); in marshal_to()
185 let total_lost = (t2 as u32) | (t1 as u32) << 8 | (t0 as u32) << 16; in unmarshal() localVariable
195 total_lost, in unmarshal()
H A Dpacket.rs163 total_lost: 0, in test_packet_unmarshal()
/webrtc/rtcp/src/receiver_report/
H A Dreceiver_report_test.rs23 total_lost: 0, in test_receiver_report_unmarshal()
52 total_lost: 0, in test_receiver_report_unmarshal()
147 total_lost: 3, in test_receiver_report_roundtrip()
164 total_lost: 3, in test_receiver_report_roundtrip()
183 total_lost: 12345, in test_receiver_report_roundtrip()
198 total_lost: 1 << 25, in test_receiver_report_roundtrip()
H A Dmod.rs38 rep.ssrc, rep.fraction_lost, rep.total_lost, rep.last_sequence_number in fmt()
/webrtc/rtcp/src/sender_report/
H A Dsender_report_test.rs37 total_lost: 0, in test_sender_report_unmarshal()
147 total_lost: 3, in test_sender_report_roundtrip()
168 total_lost: 3, in test_sender_report_roundtrip()
187 total_lost: 12345, in test_sender_report_roundtrip()
204 total_lost: 12345, in test_sender_report_roundtrip()
H A Dmod.rs73 rep.ssrc, rep.fraction_lost, rep.total_lost, rep.last_sequence_number in fmt()
/webrtc/interceptor/src/report/receiver/
H A Dreceiver_stream.rs24 total_lost: u32, field
107 self.total_lost += total_lost_since_report; in generate_report()
113 if self.total_lost > 0xFFFFFF { in generate_report()
114 self.total_lost = 0xFFFFFF in generate_report()
126 total_lost: self.total_lost, in generate_report()
182 total_lost: 0, in new()
H A Dreceiver_test.rs46 total_lost: 0, in test_receiver_interceptor_before_any_packet()
109 total_lost: 0, in test_receiver_interceptor_after_rtp_packets()
192 total_lost: 0, in test_receiver_interceptor_after_rtp_and_rtcp_packets()
270 total_lost: 0, in test_receiver_interceptor_overflow()
370 total_lost: 0, in test_receiver_interceptor_overflow_five_pkts()
442 total_lost: 1, in test_receiver_interceptor_packet_loss()
483 total_lost: 1, in test_receiver_interceptor_packet_loss()
553 total_lost: 1, in test_receiver_interceptor_overflow_and_packet_loss()
615 total_lost: 0, in test_receiver_interceptor_reordered_packets()
695 total_lost: 0, in test_receiver_interceptor_jitter()
[all …]
/webrtc/interceptor/src/stats/
H A Dinterceptor.rs74 total_lost: u32,
268 total_lost, in handle_stats_update()
276 stats.update_remote_total_lost(total_lost); in handle_stats_update()
277 stats.update_remote_inbound_packets_received(ext_seq_num, total_lost); in handle_stats_update()
417 total_lost: u32, in read() field
461 total_lost: recp.total_lost, in read()
569 total_lost: rr.total_lost, in read()
984 total_lost: 5, in test_stats_interceptor_rtcp()
992 total_lost: 8, in test_stats_interceptor_rtcp()