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

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

Issue 2609783002: Reland of place basictypes.h with stdint.h for int_t types. (Closed)
Patch Set: add basictypes.h to systeminfo.cc Created 3 years, 11 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 <stdint.h>
15
14 #include <map> 16 #include <map>
15 #include <memory> 17 #include <memory>
16 18
17 #include "webrtc/base/basictypes.h"
18 #include "webrtc/base/constructormagic.h" 19 #include "webrtc/base/constructormagic.h"
19 #include "webrtc/common_video/include/video_bitrate_allocator.h" 20 #include "webrtc/common_video/include/video_bitrate_allocator.h"
20 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" 21 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h"
21 #include "webrtc/video_encoder.h" 22 #include "webrtc/video_encoder.h"
22 23
23 namespace webrtc { 24 namespace webrtc {
24 25
25 class SimulcastRateAllocator : public VideoBitrateAllocator, 26 class SimulcastRateAllocator : public VideoBitrateAllocator,
26 public TemporalLayersListener { 27 public TemporalLayersListener {
27 public: 28 public:
(...skipping 13 matching lines...) Expand all
41 const VideoCodec codec_; 42 const VideoCodec codec_;
42 std::map<uint32_t, TemporalLayers*> temporal_layers_; 43 std::map<uint32_t, TemporalLayers*> temporal_layers_;
43 std::unique_ptr<TemporalLayersFactory> tl_factory_; 44 std::unique_ptr<TemporalLayersFactory> tl_factory_;
44 45
45 RTC_DISALLOW_COPY_AND_ASSIGN(SimulcastRateAllocator); 46 RTC_DISALLOW_COPY_AND_ASSIGN(SimulcastRateAllocator);
46 }; 47 };
47 48
48 } // namespace webrtc 49 } // namespace webrtc
49 50
50 #endif // WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_ 51 #endif // WEBRTC_MODULES_VIDEO_CODING_UTILITY_SIMULCAST_RATE_ALLOCATOR_H_
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/utility/default_video_bitrate_allocator.cc ('k') | webrtc/p2p/base/candidate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698