webrtc_m130/api/video/video_bitrate_allocator.cc
Dor Hen 9fb83a18e3 Apply include-cleaner to api/video
Bug: webrtc:42226242
Change-Id: I023f058f3b5e2747bd02f01a191a91636c85f12d
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/359820
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Dor Hen <dorhen@meta.com>
Cr-Commit-Position: refs/heads/main@{#42801}
2024-08-19 11:22:41 +00:00

60 lines
2.0 KiB
C++

/*
* Copyright (c) 2019 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 "api/video/video_bitrate_allocator.h"
#include <cstdint>
#include "api/units/data_rate.h"
#include "api/video/video_bitrate_allocation.h"
namespace webrtc {
VideoBitrateAllocationParameters::VideoBitrateAllocationParameters(
uint32_t total_bitrate_bps,
uint32_t framerate)
: total_bitrate(DataRate::BitsPerSec(total_bitrate_bps)),
stable_bitrate(DataRate::BitsPerSec(total_bitrate_bps)),
framerate(static_cast<double>(framerate)) {}
VideoBitrateAllocationParameters::VideoBitrateAllocationParameters(
DataRate total_bitrate,
double framerate)
: total_bitrate(total_bitrate),
stable_bitrate(total_bitrate),
framerate(framerate) {}
VideoBitrateAllocationParameters::VideoBitrateAllocationParameters(
DataRate total_bitrate,
DataRate stable_bitrate,
double framerate)
: total_bitrate(total_bitrate),
stable_bitrate(stable_bitrate),
framerate(framerate) {}
VideoBitrateAllocationParameters::~VideoBitrateAllocationParameters() = default;
VideoBitrateAllocation VideoBitrateAllocator::GetAllocation(
uint32_t total_bitrate_bps,
uint32_t framerate) {
return Allocate({DataRate::BitsPerSec(total_bitrate_bps),
DataRate::BitsPerSec(total_bitrate_bps),
static_cast<double>(framerate)});
}
VideoBitrateAllocation VideoBitrateAllocator::Allocate(
VideoBitrateAllocationParameters parameters) {
return GetAllocation(parameters.total_bitrate.bps(), parameters.framerate);
}
void VideoBitrateAllocator::SetLegacyConferenceMode(bool enabled) {}
} // namespace webrtc