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

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

Issue 2434073003: Extract bitrate allocation of spatial/temporal layers out of codec impl. (Closed)
Patch Set: Updated tl listener registration. Fixed tests. Created 4 years, 2 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
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_ 11 #ifndef WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_
12 #define WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_ 12 #define WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_
13 13
14 #include <vector> 14 #include <map>
15 15
16 #include "webrtc/base/basictypes.h" 16 #include "webrtc/base/basictypes.h"
17 #include "webrtc/base/constructormagic.h" 17 #include "webrtc/base/constructormagic.h"
18 #include "webrtc/common_video/include/video_bitrate_allocator.h"
19 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h"
18 #include "webrtc/video_encoder.h" 20 #include "webrtc/video_encoder.h"
19 21
20 namespace webrtc { 22 namespace webrtc {
21 23
22 class SimulcastRateAllocator { 24 class SimulcastRateAllocator : public VideoBitrateAllocator,
25 public TemporalLayersListener {
23 public: 26 public:
24 explicit SimulcastRateAllocator(const VideoCodec& codec); 27 explicit SimulcastRateAllocator(const VideoCodec& codec);
25 28
26 std::vector<uint32_t> GetAllocation(uint32_t bitrate_kbps) const; 29 void OnTemporalLayersCreated(int simulcast_id,
27 uint32_t GetPreferedBitrate() const; 30 TemporalLayers* layers) override;
31
32 BitrateAllocation GetAllocation(uint32_t total_bitrate_bps,
33 uint32_t framerate) override;
34 uint32_t GetPreferedBitrate(int frame_rate) override;
28 const VideoCodec& GetCodec() const; 35 const VideoCodec& GetCodec() const;
29 36
30 private: 37 private:
31 const VideoCodec codec_; 38 const VideoCodec codec_;
39 std::map<uint32_t, TemporalLayers*> temporal_layers_;
32 40
33 RTC_DISALLOW_COPY_AND_ASSIGN(SimulcastRateAllocator); 41 RTC_DISALLOW_COPY_AND_ASSIGN(SimulcastRateAllocator);
34 }; 42 };
35 43
36 } // namespace webrtc 44 } // namespace webrtc
37 45
38 #endif // WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_ 46 #endif // WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698