Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2019 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 MODULES_PACING_PACING_CONTROLLER_H_ |
| 12 | #define MODULES_PACING_PACING_CONTROLLER_H_ |
| 13 | |
| 14 | #include <stddef.h> |
| 15 | #include <stdint.h> |
| 16 | |
| 17 | #include <atomic> |
| 18 | #include <memory> |
| 19 | #include <vector> |
| 20 | |
| 21 | #include "absl/types/optional.h" |
| 22 | #include "api/function_view.h" |
| 23 | #include "api/rtc_event_log/rtc_event_log.h" |
| 24 | #include "api/transport/field_trial_based_config.h" |
| 25 | #include "api/transport/network_types.h" |
| 26 | #include "api/transport/webrtc_key_value_config.h" |
| 27 | #include "modules/pacing/bitrate_prober.h" |
| 28 | #include "modules/pacing/interval_budget.h" |
| 29 | #include "modules/pacing/round_robin_packet_queue.h" |
| 30 | #include "modules/pacing/rtp_packet_pacer.h" |
| 31 | #include "modules/rtp_rtcp/include/rtp_packet_sender.h" |
| 32 | #include "modules/rtp_rtcp/source/rtp_packet_to_send.h" |
| 33 | #include "rtc_base/critical_section.h" |
| 34 | #include "rtc_base/experiments/field_trial_parser.h" |
| 35 | #include "rtc_base/thread_annotations.h" |
| 36 | |
| 37 | namespace webrtc { |
| 38 | |
| 39 | // This class implements a leaky-buck packet pacing algorithm. It handles the |
| 40 | // logic of determining which packets to send when, but the actual timing of |
| 41 | // the processing is done externally (e.g. PacedSender). Furthermore, the |
| 42 | // forwarding of packets when they are ready to be sent is also handled |
| 43 | // externally, via the PacedSendingController::PacketSender interface. |
| 44 | // |
| 45 | class PacingController { |
| 46 | public: |
Erik Språng | eb48799 | 2019-11-14 14:15:15 +0100 | [diff] [blame] | 47 | // Periodic mode uses the IntervalBudget class for tracking bitrate |
| 48 | // budgets, and expected ProcessPackets() to be called a fixed rate, |
| 49 | // e.g. every 5ms as implemented by PacedSender. |
| 50 | // Dynamic mode allows for arbitrary time delta between calls to |
| 51 | // ProcessPackets. |
| 52 | enum class ProcessMode { kPeriodic, kDynamic }; |
| 53 | |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 54 | class PacketSender { |
| 55 | public: |
| 56 | virtual ~PacketSender() = default; |
| 57 | virtual void SendRtpPacket(std::unique_ptr<RtpPacketToSend> packet, |
| 58 | const PacedPacketInfo& cluster_info) = 0; |
| 59 | virtual std::vector<std::unique_ptr<RtpPacketToSend>> GeneratePadding( |
| 60 | DataSize size) = 0; |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 61 | }; |
| 62 | |
| 63 | // Expected max pacer delay. If ExpectedQueueTime() is higher than |
| 64 | // this value, the packet producers should wait (eg drop frames rather than |
| 65 | // encoding them). Bitrate sent may temporarily exceed target set by |
| 66 | // UpdateBitrate() so that this limit will be upheld. |
| 67 | static const TimeDelta kMaxExpectedQueueLength; |
| 68 | // Pacing-rate relative to our target send rate. |
| 69 | // Multiplicative factor that is applied to the target bitrate to calculate |
| 70 | // the number of bytes that can be transmitted per interval. |
| 71 | // Increasing this factor will result in lower delays in cases of bitrate |
| 72 | // overshoots from the encoder. |
| 73 | static const float kDefaultPaceMultiplier; |
| 74 | // If no media or paused, wake up at least every |kPausedProcessIntervalMs| in |
| 75 | // order to send a keep-alive packet so we don't get stuck in a bad state due |
| 76 | // to lack of feedback. |
| 77 | static const TimeDelta kPausedProcessInterval; |
| 78 | |
Erik Språng | eb48799 | 2019-11-14 14:15:15 +0100 | [diff] [blame] | 79 | static const TimeDelta kMinSleepTime; |
| 80 | |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 81 | PacingController(Clock* clock, |
| 82 | PacketSender* packet_sender, |
| 83 | RtcEventLog* event_log, |
Erik Språng | eb48799 | 2019-11-14 14:15:15 +0100 | [diff] [blame] | 84 | const WebRtcKeyValueConfig* field_trials, |
| 85 | ProcessMode mode); |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 86 | |
| 87 | ~PacingController(); |
| 88 | |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 89 | // Adds the packet to the queue and calls PacketRouter::SendPacket() when |
| 90 | // it's time to send. |
| 91 | void EnqueuePacket(std::unique_ptr<RtpPacketToSend> packet); |
| 92 | |
| 93 | void CreateProbeCluster(DataRate bitrate, int cluster_id); |
| 94 | |
| 95 | void Pause(); // Temporarily pause all sending. |
| 96 | void Resume(); // Resume sending packets. |
| 97 | bool IsPaused() const; |
| 98 | |
| 99 | void SetCongestionWindow(DataSize congestion_window_size); |
| 100 | void UpdateOutstandingData(DataSize outstanding_data); |
| 101 | |
| 102 | // Sets the pacing rates. Must be called once before packets can be sent. |
| 103 | void SetPacingRates(DataRate pacing_rate, DataRate padding_rate); |
| 104 | |
| 105 | // Currently audio traffic is not accounted by pacer and passed through. |
| 106 | // With the introduction of audio BWE audio traffic will be accounted for |
| 107 | // the pacer budget calculation. The audio traffic still will be injected |
| 108 | // at high priority. |
| 109 | void SetAccountForAudioPackets(bool account_for_audio); |
| 110 | |
| 111 | // Returns the time since the oldest queued packet was enqueued. |
| 112 | TimeDelta OldestPacketWaitTime() const; |
| 113 | |
| 114 | size_t QueueSizePackets() const; |
| 115 | DataSize QueueSizeData() const; |
| 116 | |
| 117 | // Returns the time when the first packet was sent; |
| 118 | absl::optional<Timestamp> FirstSentPacketTime() const; |
| 119 | |
| 120 | // Returns the number of milliseconds it will take to send the current |
| 121 | // packets in the queue, given the current size and bitrate, ignoring prio. |
| 122 | TimeDelta ExpectedQueueTime() const; |
| 123 | |
| 124 | void SetQueueTimeLimit(TimeDelta limit); |
| 125 | |
| 126 | // Enable bitrate probing. Enabled by default, mostly here to simplify |
| 127 | // testing. Must be called before any packets are being sent to have an |
| 128 | // effect. |
| 129 | void SetProbingEnabled(bool enabled); |
| 130 | |
Erik Språng | eb48799 | 2019-11-14 14:15:15 +0100 | [diff] [blame] | 131 | // Returns the next time we expect ProcessPackets() to be called. |
| 132 | Timestamp NextSendTime() const; |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 133 | |
| 134 | // Check queue of pending packets and send them or padding packets, if budget |
| 135 | // is available. |
| 136 | void ProcessPackets(); |
| 137 | |
| 138 | bool Congested() const; |
| 139 | |
| 140 | private: |
Erik Språng | 78c82a4 | 2019-10-03 18:46:04 +0200 | [diff] [blame] | 141 | void EnqueuePacketInternal(std::unique_ptr<RtpPacketToSend> packet, |
| 142 | int priority); |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 143 | TimeDelta UpdateTimeAndGetElapsed(Timestamp now); |
| 144 | bool ShouldSendKeepalive(Timestamp now) const; |
| 145 | |
| 146 | // Updates the number of bytes that can be sent for the next time interval. |
| 147 | void UpdateBudgetWithElapsedTime(TimeDelta delta); |
| 148 | void UpdateBudgetWithSentData(DataSize size); |
| 149 | |
| 150 | DataSize PaddingToAdd(absl::optional<DataSize> recommended_probe_size, |
Erik Språng | eb48799 | 2019-11-14 14:15:15 +0100 | [diff] [blame] | 151 | DataSize data_sent) const; |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 152 | |
Erik Språng | f660e81 | 2019-09-01 12:26:44 +0000 | [diff] [blame] | 153 | RoundRobinPacketQueue::QueuedPacket* GetPendingPacket( |
Erik Språng | eb48799 | 2019-11-14 14:15:15 +0100 | [diff] [blame] | 154 | const PacedPacketInfo& pacing_info, |
| 155 | Timestamp target_send_time, |
| 156 | Timestamp now); |
| 157 | void OnPacketSent(RoundRobinPacketQueue::QueuedPacket* packet, |
| 158 | Timestamp send_time); |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 159 | void OnPaddingSent(DataSize padding_sent); |
| 160 | |
| 161 | Timestamp CurrentTime() const; |
| 162 | |
Erik Språng | eb48799 | 2019-11-14 14:15:15 +0100 | [diff] [blame] | 163 | const ProcessMode mode_; |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 164 | Clock* const clock_; |
| 165 | PacketSender* const packet_sender_; |
| 166 | const std::unique_ptr<FieldTrialBasedConfig> fallback_field_trials_; |
| 167 | const WebRtcKeyValueConfig* field_trials_; |
| 168 | |
| 169 | const bool drain_large_queues_; |
| 170 | const bool send_padding_if_silent_; |
| 171 | const bool pace_audio_; |
Erik Språng | 78c82a4 | 2019-10-03 18:46:04 +0200 | [diff] [blame] | 172 | const bool small_first_probe_packet_; |
Erik Språng | eb48799 | 2019-11-14 14:15:15 +0100 | [diff] [blame] | 173 | |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 174 | TimeDelta min_packet_limit_; |
| 175 | |
| 176 | // TODO(webrtc:9716): Remove this when we are certain clocks are monotonic. |
| 177 | // The last millisecond timestamp returned by |clock_|. |
| 178 | mutable Timestamp last_timestamp_; |
| 179 | bool paused_; |
Erik Språng | eb48799 | 2019-11-14 14:15:15 +0100 | [diff] [blame] | 180 | |
| 181 | // If |use_interval_budget_| is true, |media_budget_| and |padding_budget_| |
| 182 | // will be used to track when packets can be sent. Otherwise the media and |
| 183 | // padding debt counters will be used together with the target rates. |
| 184 | |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 185 | // This is the media budget, keeping track of how many bits of media |
| 186 | // we can pace out during the current interval. |
| 187 | IntervalBudget media_budget_; |
| 188 | // This is the padding budget, keeping track of how many bits of padding we're |
| 189 | // allowed to send out during the current interval. This budget will be |
| 190 | // utilized when there's no media to send. |
| 191 | IntervalBudget padding_budget_; |
| 192 | |
Erik Språng | eb48799 | 2019-11-14 14:15:15 +0100 | [diff] [blame] | 193 | DataSize media_debt_; |
| 194 | DataSize padding_debt_; |
| 195 | DataRate media_rate_; |
| 196 | DataRate padding_rate_; |
| 197 | |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 198 | BitrateProber prober_; |
| 199 | bool probing_send_failure_; |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 200 | |
| 201 | DataRate pacing_bitrate_; |
| 202 | |
Erik Språng | eb48799 | 2019-11-14 14:15:15 +0100 | [diff] [blame] | 203 | Timestamp last_process_time_; |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 204 | Timestamp last_send_time_; |
| 205 | absl::optional<Timestamp> first_sent_packet_time_; |
| 206 | |
| 207 | RoundRobinPacketQueue packet_queue_; |
| 208 | uint64_t packet_counter_; |
| 209 | |
| 210 | DataSize congestion_window_size_; |
| 211 | DataSize outstanding_data_; |
| 212 | |
| 213 | TimeDelta queue_time_limit; |
| 214 | bool account_for_audio_; |
Erik Språng | d05edec | 2019-08-14 10:43:47 +0200 | [diff] [blame] | 215 | }; |
| 216 | } // namespace webrtc |
| 217 | |
| 218 | #endif // MODULES_PACING_PACING_CONTROLLER_H_ |