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

Side by Side Diff: webrtc/video_engine/vie_channel_group.h

Issue 1247293002: Add support for transport wide sequence numbers (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Moved SendTimeHistory, comment Created 5 years, 4 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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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_VIDEO_ENGINE_VIE_CHANNEL_GROUP_H_ 11 #ifndef WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_GROUP_H_
12 #define WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_GROUP_H_ 12 #define WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_GROUP_H_
13 13
14 #include <list> 14 #include <list>
15 #include <map> 15 #include <map>
16 #include <set> 16 #include <set>
17 #include <vector> 17 #include <vector>
18 18
19 #include "webrtc/base/scoped_ptr.h" 19 #include "webrtc/base/scoped_ptr.h"
20 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" 20 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h"
21 21
22 namespace webrtc { 22 namespace webrtc {
23 23
24 class AdaptedSendTimeHistory;
24 class BitrateAllocator; 25 class BitrateAllocator;
25 class CallStats; 26 class CallStats;
26 class Config; 27 class Config;
27 class EncoderStateFeedback; 28 class EncoderStateFeedback;
28 class PacedSender; 29 class PacedSender;
29 class PacketRouter; 30 class PacketRouter;
30 class ProcessThread; 31 class ProcessThread;
31 class RemoteBitrateEstimator; 32 class RemoteBitrateEstimator;
32 class ViEChannel; 33 class ViEChannel;
33 class ViEEncoder; 34 class ViEEncoder;
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 EncoderMap send_encoders_; 111 EncoderMap send_encoders_;
111 rtc::scoped_ptr<CriticalSectionWrapper> encoder_map_cs_; 112 rtc::scoped_ptr<CriticalSectionWrapper> encoder_map_cs_;
112 113
113 const rtc::scoped_ptr<Config> config_; 114 const rtc::scoped_ptr<Config> config_;
114 115
115 // Registered at construct time and assumed to outlive this class. 116 // Registered at construct time and assumed to outlive this class.
116 ProcessThread* process_thread_; 117 ProcessThread* process_thread_;
117 rtc::scoped_ptr<ProcessThread> pacer_thread_; 118 rtc::scoped_ptr<ProcessThread> pacer_thread_;
118 119
119 rtc::scoped_ptr<BitrateController> bitrate_controller_; 120 rtc::scoped_ptr<BitrateController> bitrate_controller_;
121 rtc::scoped_ptr<AdaptedSendTimeHistory> send_time_history_;
120 }; 122 };
121 123
122 } // namespace webrtc 124 } // namespace webrtc
123 125
124 #endif // WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_GROUP_H_ 126 #endif // WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_GROUP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698