blob: 60d20294a87744e83b7640df4b006e8fd179a038 [file] [log] [blame]
bcornell30409b42015-07-10 18:10:05 -07001/*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef MODULES_RTP_RTCP_SOURCE_PACKET_LOSS_STATS_H_
12#define MODULES_RTP_RTCP_SOURCE_PACKET_LOSS_STATS_H_
bcornell30409b42015-07-10 18:10:05 -070013
14#include <stdint.h>
Jonas Olssona4d87372019-07-05 19:08:33 +020015
bcornell30409b42015-07-10 18:10:05 -070016#include <set>
17
18namespace webrtc {
19
20// Keeps track of statistics of packet loss including whether losses are a
21// single packet or multiple packets in a row.
22class PacketLossStats {
23 public:
24 PacketLossStats();
Danil Chapovalov2a5ce2b2018-02-07 09:38:31 +010025 ~PacketLossStats();
bcornell30409b42015-07-10 18:10:05 -070026
27 // Adds a lost packet to the stats by sequence number.
28 void AddLostPacket(uint16_t sequence_number);
29
30 // Queries the number of packets that were lost by themselves, no neighboring
31 // packets were lost.
32 int GetSingleLossCount() const;
33
34 // Queries the number of times that multiple packets with sequential numbers
35 // were lost. This is the number of events with more than one packet lost,
36 // regardless of the size of the event;
37 int GetMultipleLossEventCount() const;
38
39 // Queries the number of packets lost in multiple packet loss events. Combined
40 // with the event count, this can be used to determine the average event size.
41 int GetMultipleLossPacketCount() const;
42
43 private:
44 std::set<uint16_t> lost_packets_buffer_;
45 std::set<uint16_t> lost_packets_wrapped_buffer_;
46 int single_loss_historic_count_;
47 int multiple_loss_historic_event_count_;
48 int multiple_loss_historic_packet_count_;
49
50 void ComputeLossCounts(int* out_single_loss_count,
51 int* out_multiple_loss_event_count,
52 int* out_multiple_loss_packet_count) const;
53 void PruneBuffer();
54};
55
56} // namespace webrtc
57
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020058#endif // MODULES_RTP_RTCP_SOURCE_PACKET_LOSS_STATS_H_