blob: fc0e13fb676cf4b3072c52e5eeaca5bcb6709ced [file] [log] [blame]
stefan@webrtc.org82462aa2014-10-23 11:57:05 +00001/*
2 * Copyright (c) 2014 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
11#ifndef WEBRTC_MODULES_PACING_BITRATE_PROBER_H_
12#define WEBRTC_MODULES_PACING_BITRATE_PROBER_H_
13
philipeldd324862016-05-06 17:06:14 +020014#include <queue>
stefan@webrtc.org82462aa2014-10-23 11:57:05 +000015
philipel4a1ec1e2016-08-15 11:51:06 -070016#include "webrtc/base/basictypes.h"
stefan@webrtc.org82462aa2014-10-23 11:57:05 +000017#include "webrtc/typedefs.h"
18
19namespace webrtc {
20
21// Note that this class isn't thread-safe by itself and therefore relies
22// on being protected by the caller.
23class BitrateProber {
24 public:
25 BitrateProber();
26
27 void SetEnabled(bool enable);
28
29 // Returns true if the prober is in a probing session, i.e., it currently
30 // wants packets to be sent out according to the time returned by
31 // TimeUntilNextProbe().
32 bool IsProbing() const;
33
Peter Boström0453ef82016-02-16 16:23:08 +010034 // Initializes a new probing session if the prober is allowed to probe. Does
35 // not initialize the prober unless the packet size is large enough to probe
36 // with.
philipel4a1ec1e2016-08-15 11:51:06 -070037 void OnIncomingPacket(size_t packet_size);
38
39 // Create a cluster used to probe for |bitrate_bps| with |num_packets| number
40 // of packets.
41 void ProbeAtBitrate(uint32_t bitrate_bps, int num_packets);
stefan@webrtc.org82462aa2014-10-23 11:57:05 +000042
43 // Returns the number of milliseconds until the next packet should be sent to
44 // get accurate probing.
45 int TimeUntilNextProbe(int64_t now_ms);
46
philipeldd324862016-05-06 17:06:14 +020047 // Which cluster that is currently being used for probing.
48 int CurrentClusterId() const;
49
Stefan Holmer01b48882015-05-05 10:21:24 +020050 // Returns the number of bytes that the prober recommends for the next probe
51 // packet.
52 size_t RecommendedPacketSize() const;
53
stefan@webrtc.org82462aa2014-10-23 11:57:05 +000054 // Called to report to the prober that a packet has been sent, which helps the
55 // prober know when to move to the next packet in a probe.
56 void PacketSent(int64_t now_ms, size_t packet_size);
57
58 private:
Irfan Sheriff6e11efa2016-08-02 12:57:37 -070059 enum class ProbingState {
60 // Probing will not be triggered in this state at all times.
61 kDisabled,
62 // Probing is enabled and ready to trigger on the first packet arrival.
63 kInactive,
64 // Probe cluster is filled with the set of data rates to be probed and
65 // probes are being sent.
66 kActive,
67 // Probing is enabled, but currently suspended until an explicit trigger
68 // to start probing again.
69 kSuspended,
70 };
stefan@webrtc.org82462aa2014-10-23 11:57:05 +000071
philipeldd324862016-05-06 17:06:14 +020072 struct ProbeCluster {
73 int max_probe_packets = 0;
74 int sent_probe_packets = 0;
75 int probe_bitrate_bps = 0;
76 int id = -1;
77 };
78
Irfan Sheriff6e11efa2016-08-02 12:57:37 -070079 // Resets the state of the prober and clears any cluster/timing data tracked.
80 void ResetState();
81
stefan@webrtc.org82462aa2014-10-23 11:57:05 +000082 ProbingState probing_state_;
83 // Probe bitrate per packet. These are used to compute the delta relative to
84 // the previous probe packet based on the size and time when that packet was
85 // sent.
philipeldd324862016-05-06 17:06:14 +020086 std::queue<ProbeCluster> clusters_;
Irfan Sheriff6e11efa2016-08-02 12:57:37 -070087 size_t packet_size_last_sent_;
88 // The last time a probe was sent.
89 int64_t time_last_probe_sent_ms_;
philipel29dca2c2016-05-13 11:13:05 +020090 int next_cluster_id_;
stefan@webrtc.org82462aa2014-10-23 11:57:05 +000091};
92} // namespace webrtc
93#endif // WEBRTC_MODULES_PACING_BITRATE_PROBER_H_