Chromium Code Reviews

Side by Side Diff: webrtc/modules/video_coding/utility/simulcast_rate_allocator.h

Issue 2288223002: Extract simulcast rate allocation outside of video encoder. (Closed)
Patch Set: Clean up some dead code Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #ifndef WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_
12 #define WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_
13
14 #include <vector>
15
16 #include "webrtc/base/basictypes.h"
17 #include "webrtc/base/constructormagic.h"
18 #include "webrtc/video_encoder.h"
19
20 namespace webrtc {
21
22 class SimulcastRateAllocator {
23 public:
24 explicit SimulcastRateAllocator(const VideoCodec& codec);
25
26 std::vector<uint32_t> GetAllocation(uint32_t bitrate_kbps) const;
27 const VideoCodec& GetCodec() const;
28
29 private:
30 const VideoCodec codec_;
31
32 RTC_DISALLOW_COPY_AND_ASSIGN(SimulcastRateAllocator);
33 };
34
35 } // namespace webrtc
36
37 #endif // WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_
OLDNEW

Powered by Google App Engine