chromium/third_party/webrtc/modules/congestion_controller/goog_cc/link_capacity_estimator.cc

/*
 *  Copyright 2018 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/congestion_controller/goog_cc/link_capacity_estimator.h"

#include <algorithm>
#include <cmath>

#include "api/units/data_rate.h"
#include "rtc_base/numerics/safe_minmax.h"

namespace webrtc {
LinkCapacityEstimator::LinkCapacityEstimator() {}

DataRate LinkCapacityEstimator::UpperBound() const {}

DataRate LinkCapacityEstimator::LowerBound() const {}

void LinkCapacityEstimator::Reset() {}

void LinkCapacityEstimator::OnOveruseDetected(DataRate acknowledged_rate) {}

void LinkCapacityEstimator::OnProbeRate(DataRate probe_rate) {}

void LinkCapacityEstimator::Update(DataRate capacity_sample, double alpha) {}

bool LinkCapacityEstimator::has_estimate() const {}

DataRate LinkCapacityEstimator::estimate() const {}

double LinkCapacityEstimator::deviation_estimate_kbps() const {}
}  // namespace webrtc