OLD | NEW |
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 |
(...skipping 24 matching lines...) Expand all Loading... |
35 class Config; | 35 class Config; |
36 class EncodedImageCallback; | 36 class EncodedImageCallback; |
37 class I420FrameCallback; | 37 class I420FrameCallback; |
38 class IncomingVideoStream; | 38 class IncomingVideoStream; |
39 class PacedSender; | 39 class PacedSender; |
40 class PacketRouter; | 40 class PacketRouter; |
41 class PayloadRouter; | 41 class PayloadRouter; |
42 class ReceiveStatisticsProxy; | 42 class ReceiveStatisticsProxy; |
43 class RtcpRttStats; | 43 class RtcpRttStats; |
44 class ViERTPObserver; | 44 class ViERTPObserver; |
45 class VideoRenderCallback; | |
46 class VoEVideoSync; | 45 class VoEVideoSync; |
47 | 46 |
48 namespace vcm { | 47 namespace vcm { |
49 class VideoReceiver; | 48 class VideoReceiver; |
50 } // namespace vcm | 49 } // namespace vcm |
51 | 50 |
52 enum StreamType { | 51 enum StreamType { |
53 kViEStreamTypeNormal = 0, // Normal media stream | 52 kViEStreamTypeNormal = 0, // Normal media stream |
54 kViEStreamTypeRtx = 1 // Retransmission media stream | 53 kViEStreamTypeRtx = 1 // Retransmission media stream |
55 }; | 54 }; |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 | 151 |
153 int max_nack_reordering_threshold_; | 152 int max_nack_reordering_threshold_; |
154 I420FrameCallback* pre_render_callback_ GUARDED_BY(crit_); | 153 I420FrameCallback* pre_render_callback_ GUARDED_BY(crit_); |
155 | 154 |
156 int64_t last_rtt_ms_ GUARDED_BY(crit_); | 155 int64_t last_rtt_ms_ GUARDED_BY(crit_); |
157 }; | 156 }; |
158 | 157 |
159 } // namespace webrtc | 158 } // namespace webrtc |
160 | 159 |
161 #endif // WEBRTC_VIDEO_VIE_CHANNEL_H_ | 160 #endif // WEBRTC_VIDEO_VIE_CHANNEL_H_ |
OLD | NEW |