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