mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-16 15:20:42 +01:00

This lets us change how many bytes and packets goes into the probes, as well as some other things. Bug: webrtc:10394 Change-Id: I26bb26a644e6f00366e9275228760c8744d63735 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/128424 Commit-Queue: Jonas Olsson <jonasolsson@webrtc.org> Reviewed-by: Sebastian Jansson <srte@webrtc.org> Cr-Commit-Position: refs/heads/master@{#27312}
199 lines
7.3 KiB
C++
199 lines
7.3 KiB
C++
/*
|
|
* Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "modules/pacing/bitrate_prober.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include "absl/memory/memory.h"
|
|
#include "logging/rtc_event_log/events/rtc_event.h"
|
|
#include "logging/rtc_event_log/events/rtc_event_probe_cluster_created.h"
|
|
#include "logging/rtc_event_log/rtc_event_log.h"
|
|
#include "rtc_base/checks.h"
|
|
#include "rtc_base/logging.h"
|
|
#include "system_wrappers/include/metrics.h"
|
|
|
|
namespace webrtc {
|
|
|
|
namespace {
|
|
// The min probe packet size is scaled with the bitrate we're probing at.
|
|
// This defines the max min probe packet size, meaning that on high bitrates
|
|
// we have a min probe packet size of 200 bytes.
|
|
constexpr size_t kMinProbePacketSize = 200;
|
|
|
|
constexpr int64_t kProbeClusterTimeoutMs = 5000;
|
|
|
|
} // namespace
|
|
|
|
BitrateProberConfig::BitrateProberConfig(
|
|
const WebRtcKeyValueConfig* key_value_config)
|
|
: min_probe_packets_sent("min_probe_packets_sent", 5),
|
|
min_probe_delta("min_probe_delta", TimeDelta::ms(1)),
|
|
min_probe_duration("min_probe_duration", TimeDelta::ms(15)),
|
|
max_probe_delay("max_probe_delay", TimeDelta::ms(3)) {
|
|
ParseFieldTrial({&min_probe_packets_sent, &min_probe_delta,
|
|
&min_probe_duration, &max_probe_delay},
|
|
key_value_config->Lookup("WebRTC-Bwe-ProbingConfiguration"));
|
|
}
|
|
|
|
BitrateProber::~BitrateProber() {
|
|
RTC_HISTOGRAM_COUNTS_1000("WebRTC.BWE.Probing.TotalProbeClustersRequested",
|
|
total_probe_count_);
|
|
RTC_HISTOGRAM_COUNTS_1000("WebRTC.BWE.Probing.TotalFailedProbeClusters",
|
|
total_failed_probe_count_);
|
|
}
|
|
|
|
BitrateProber::BitrateProber(const WebRtcKeyValueConfig& field_trials)
|
|
: probing_state_(ProbingState::kDisabled),
|
|
next_probe_time_ms_(-1),
|
|
total_probe_count_(0),
|
|
total_failed_probe_count_(0),
|
|
config_(&field_trials) {
|
|
SetEnabled(true);
|
|
}
|
|
|
|
void BitrateProber::SetEnabled(bool enable) {
|
|
if (enable) {
|
|
if (probing_state_ == ProbingState::kDisabled) {
|
|
probing_state_ = ProbingState::kInactive;
|
|
RTC_LOG(LS_INFO) << "Bandwidth probing enabled, set to inactive";
|
|
}
|
|
} else {
|
|
probing_state_ = ProbingState::kDisabled;
|
|
RTC_LOG(LS_INFO) << "Bandwidth probing disabled";
|
|
}
|
|
}
|
|
|
|
bool BitrateProber::IsProbing() const {
|
|
return probing_state_ == ProbingState::kActive;
|
|
}
|
|
|
|
void BitrateProber::OnIncomingPacket(size_t packet_size) {
|
|
// Don't initialize probing unless we have something large enough to start
|
|
// probing.
|
|
if (probing_state_ == ProbingState::kInactive && !clusters_.empty() &&
|
|
packet_size >=
|
|
std::min<size_t>(RecommendedMinProbeSize(), kMinProbePacketSize)) {
|
|
// Send next probe right away.
|
|
next_probe_time_ms_ = -1;
|
|
probing_state_ = ProbingState::kActive;
|
|
}
|
|
}
|
|
|
|
void BitrateProber::CreateProbeCluster(int bitrate_bps,
|
|
int64_t now_ms,
|
|
int cluster_id) {
|
|
RTC_DCHECK(probing_state_ != ProbingState::kDisabled);
|
|
RTC_DCHECK_GT(bitrate_bps, 0);
|
|
|
|
total_probe_count_++;
|
|
while (!clusters_.empty() &&
|
|
now_ms - clusters_.front().time_created_ms > kProbeClusterTimeoutMs) {
|
|
clusters_.pop();
|
|
total_failed_probe_count_++;
|
|
}
|
|
|
|
ProbeCluster cluster;
|
|
cluster.time_created_ms = now_ms;
|
|
cluster.pace_info.probe_cluster_min_probes = config_.min_probe_packets_sent;
|
|
cluster.pace_info.probe_cluster_min_bytes =
|
|
static_cast<int32_t>(static_cast<int64_t>(bitrate_bps) *
|
|
config_.min_probe_duration->ms() / 8000);
|
|
RTC_DCHECK_GE(cluster.pace_info.probe_cluster_min_bytes, 0);
|
|
cluster.pace_info.send_bitrate_bps = bitrate_bps;
|
|
cluster.pace_info.probe_cluster_id = cluster_id;
|
|
clusters_.push(cluster);
|
|
|
|
RTC_LOG(LS_INFO) << "Probe cluster (bitrate:min bytes:min packets): ("
|
|
<< cluster.pace_info.send_bitrate_bps << ":"
|
|
<< cluster.pace_info.probe_cluster_min_bytes << ":"
|
|
<< cluster.pace_info.probe_cluster_min_probes << ")";
|
|
// If we are already probing, continue to do so. Otherwise set it to
|
|
// kInactive and wait for OnIncomingPacket to start the probing.
|
|
if (probing_state_ != ProbingState::kActive)
|
|
probing_state_ = ProbingState::kInactive;
|
|
}
|
|
|
|
int BitrateProber::TimeUntilNextProbe(int64_t now_ms) {
|
|
// Probing is not active or probing is already complete.
|
|
if (probing_state_ != ProbingState::kActive || clusters_.empty())
|
|
return -1;
|
|
|
|
int time_until_probe_ms = 0;
|
|
if (next_probe_time_ms_ >= 0) {
|
|
time_until_probe_ms = next_probe_time_ms_ - now_ms;
|
|
if (time_until_probe_ms < -config_.max_probe_delay->ms()) {
|
|
RTC_DLOG(LS_WARNING) << "Probe delay too high"
|
|
<< " (next_ms:" << next_probe_time_ms_
|
|
<< ", now_ms: " << now_ms << ")";
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
return std::max(time_until_probe_ms, 0);
|
|
}
|
|
|
|
PacedPacketInfo BitrateProber::CurrentCluster() const {
|
|
RTC_DCHECK(!clusters_.empty());
|
|
RTC_DCHECK(probing_state_ == ProbingState::kActive);
|
|
return clusters_.front().pace_info;
|
|
}
|
|
|
|
// Probe size is recommended based on the probe bitrate required. We choose
|
|
// a minimum of twice |kMinProbeDeltaMs| interval to allow scheduling to be
|
|
// feasible.
|
|
size_t BitrateProber::RecommendedMinProbeSize() const {
|
|
RTC_DCHECK(!clusters_.empty());
|
|
return clusters_.front().pace_info.send_bitrate_bps * 2 *
|
|
config_.min_probe_delta->ms() / (8 * 1000);
|
|
}
|
|
|
|
void BitrateProber::ProbeSent(int64_t now_ms, size_t bytes) {
|
|
RTC_DCHECK(probing_state_ == ProbingState::kActive);
|
|
RTC_DCHECK_GT(bytes, 0);
|
|
|
|
if (!clusters_.empty()) {
|
|
ProbeCluster* cluster = &clusters_.front();
|
|
if (cluster->sent_probes == 0) {
|
|
RTC_DCHECK_EQ(cluster->time_started_ms, -1);
|
|
cluster->time_started_ms = now_ms;
|
|
}
|
|
cluster->sent_bytes += static_cast<int>(bytes);
|
|
cluster->sent_probes += 1;
|
|
next_probe_time_ms_ = GetNextProbeTime(*cluster);
|
|
if (cluster->sent_bytes >= cluster->pace_info.probe_cluster_min_bytes &&
|
|
cluster->sent_probes >= cluster->pace_info.probe_cluster_min_probes) {
|
|
RTC_HISTOGRAM_COUNTS_100000("WebRTC.BWE.Probing.ProbeClusterSizeInBytes",
|
|
cluster->sent_bytes);
|
|
RTC_HISTOGRAM_COUNTS_100("WebRTC.BWE.Probing.ProbesPerCluster",
|
|
cluster->sent_probes);
|
|
RTC_HISTOGRAM_COUNTS_10000("WebRTC.BWE.Probing.TimePerProbeCluster",
|
|
now_ms - cluster->time_started_ms);
|
|
|
|
clusters_.pop();
|
|
}
|
|
if (clusters_.empty())
|
|
probing_state_ = ProbingState::kSuspended;
|
|
}
|
|
}
|
|
|
|
int64_t BitrateProber::GetNextProbeTime(const ProbeCluster& cluster) {
|
|
RTC_CHECK_GT(cluster.pace_info.send_bitrate_bps, 0);
|
|
RTC_CHECK_GE(cluster.time_started_ms, 0);
|
|
|
|
// Compute the time delta from the cluster start to ensure probe bitrate stays
|
|
// close to the target bitrate. Result is in milliseconds.
|
|
int64_t delta_ms =
|
|
(8000ll * cluster.sent_bytes + cluster.pace_info.send_bitrate_bps / 2) /
|
|
cluster.pace_info.send_bitrate_bps;
|
|
return cluster.time_started_ms + delta_ms;
|
|
}
|
|
|
|
} // namespace webrtc
|