OLD | NEW |
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 #include <memory> |
15 | 16 |
16 #include "webrtc/base/basictypes.h" | 17 #include "webrtc/base/basictypes.h" |
17 #include "webrtc/base/constructormagic.h" | 18 #include "webrtc/base/constructormagic.h" |
| 19 #include "webrtc/common_video/include/video_bitrate_allocator.h" |
| 20 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" |
18 #include "webrtc/video_encoder.h" | 21 #include "webrtc/video_encoder.h" |
19 | 22 |
20 namespace webrtc { | 23 namespace webrtc { |
21 | 24 |
22 class SimulcastRateAllocator { | 25 class SimulcastRateAllocator : public VideoBitrateAllocator, |
| 26 public TemporalLayersListener { |
23 public: | 27 public: |
24 explicit SimulcastRateAllocator(const VideoCodec& codec); | 28 explicit SimulcastRateAllocator( |
| 29 const VideoCodec& codec, |
| 30 std::unique_ptr<TemporalLayersFactory> tl_factory); |
25 | 31 |
26 std::vector<uint32_t> GetAllocation(uint32_t bitrate_kbps) const; | 32 void OnTemporalLayersCreated(int simulcast_id, |
27 uint32_t GetPreferedBitrate() const; | 33 TemporalLayers* layers) override; |
| 34 |
| 35 BitrateAllocation GetAllocation(uint32_t total_bitrate_bps, |
| 36 uint32_t framerate) override; |
| 37 uint32_t GetPreferedBitrate(int frame_rate) override; |
28 const VideoCodec& GetCodec() const; | 38 const VideoCodec& GetCodec() const; |
29 | 39 |
30 private: | 40 private: |
31 const VideoCodec codec_; | 41 const VideoCodec codec_; |
| 42 std::map<uint32_t, TemporalLayers*> temporal_layers_; |
| 43 std::unique_ptr<TemporalLayersFactory> tl_factory_; |
32 | 44 |
33 RTC_DISALLOW_COPY_AND_ASSIGN(SimulcastRateAllocator); | 45 RTC_DISALLOW_COPY_AND_ASSIGN(SimulcastRateAllocator); |
34 }; | 46 }; |
35 | 47 |
36 } // namespace webrtc | 48 } // namespace webrtc |
37 | 49 |
38 #endif // WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_ | 50 #endif // WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_ |
OLD | NEW |