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

/*
 *  Copyright (c) 2017 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/acknowledged_bitrate_estimator.h"

#include <algorithm>
#include <memory>
#include <utility>
#include <vector>

#include "absl/types/optional.h"
#include "api/field_trials_view.h"
#include "api/transport/network_types.h"
#include "api/units/data_rate.h"
#include "api/units/data_size.h"
#include "api/units/timestamp.h"
#include "modules/congestion_controller/goog_cc/bitrate_estimator.h"
#include "rtc_base/checks.h"

namespace webrtc {

AcknowledgedBitrateEstimator::AcknowledgedBitrateEstimator(
    const FieldTrialsView* key_value_config)
    :{}

AcknowledgedBitrateEstimator::~AcknowledgedBitrateEstimator() {}

AcknowledgedBitrateEstimator::AcknowledgedBitrateEstimator(
    const FieldTrialsView* key_value_config,
    std::unique_ptr<BitrateEstimator> bitrate_estimator)
    :{}

void AcknowledgedBitrateEstimator::IncomingPacketFeedbackVector(
    const std::vector<PacketResult>& packet_feedback_vector) {}

absl::optional<DataRate> AcknowledgedBitrateEstimator::bitrate() const {}

absl::optional<DataRate> AcknowledgedBitrateEstimator::PeekRate() const {}

void AcknowledgedBitrateEstimator::SetAlrEndedTime(Timestamp alr_ended_time) {}

void AcknowledgedBitrateEstimator::SetAlr(bool in_alr) {}

}  // namespace webrtc