Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

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: Rebase, handle pause case in simulcast wrapper Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
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
« no previous file with comments | « webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc ('k') | webrtc/modules/video_coding/utility/simulcast_rate_allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698