summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/api/video/video_bitrate_allocator.cc
blob: f4e843b348323cee0738542f9ddcf280e1101ad1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 *  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