chromium/third_party/webrtc/video/rate_utilization_tracker.cc

/*
 *  Copyright (c) 2024 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 "video/rate_utilization_tracker.h"

#include <algorithm>

namespace webrtc {

RateUtilizationTracker::RateUtilizationTracker(
    size_t max_num_encoded_data_points,
    TimeDelta max_duration)
    :{}

void RateUtilizationTracker::OnDataRateChanged(DataRate rate, Timestamp time) {}

void RateUtilizationTracker::OnDataProduced(DataSize size, Timestamp time) {}

absl::optional<double> RateUtilizationTracker::GetRateUtilizationFactor(
    Timestamp time) const {}

void RateUtilizationTracker::CullOldData(Timestamp time) {}

}  // namespace webrtc