Ai
1 Star 0 Fork 62

greatitman/webrtc-src

forked from egege/webrtc-src 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
video_bitrate_allocator.cc 1.87 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* 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"
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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/greatitman/webrtc-src.git
git@gitee.com:greatitman/webrtc-src.git
greatitman
webrtc-src
webrtc-src
master

搜索帮助