| 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 27 matching lines...) Expand all Loading... |
| 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 ProcessThread; | 42 class ProcessThread; |
| 43 class ReceiveStatisticsProxy; | 43 class ReceiveStatisticsProxy; |
| 44 class RtcpRttStats; | 44 class RtcpRttStats; |
| 45 class ViEChannelProtectionCallback; | 45 class ViEChannelProtectionCallback; |
| 46 class ViERTPObserver; | 46 class ViERTPObserver; |
| 47 class VideoCodingModule; | 47 class VideoCodingModule; |
| 48 class VideoRenderCallback; | |
| 49 class VoEVideoSync; | 48 class VoEVideoSync; |
| 50 | 49 |
| 51 enum StreamType { | 50 enum StreamType { |
| 52 kViEStreamTypeNormal = 0, // Normal media stream | 51 kViEStreamTypeNormal = 0, // Normal media stream |
| 53 kViEStreamTypeRtx = 1 // Retransmission media stream | 52 kViEStreamTypeRtx = 1 // Retransmission media stream |
| 54 }; | 53 }; |
| 55 | 54 |
| 56 class ViEChannel : public VCMFrameTypeCallback, | 55 class ViEChannel : public VCMFrameTypeCallback, |
| 57 public VCMReceiveCallback, | 56 public VCMReceiveCallback, |
| 58 public VCMReceiveStatisticsCallback, | 57 public VCMReceiveStatisticsCallback, |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 | 301 |
| 303 int64_t last_rtt_ms_ GUARDED_BY(crit_); | 302 int64_t last_rtt_ms_ GUARDED_BY(crit_); |
| 304 | 303 |
| 305 // RtpRtcp modules, declared last as they use other members on construction. | 304 // RtpRtcp modules, declared last as they use other members on construction. |
| 306 const std::vector<RtpRtcp*> rtp_rtcp_modules_; | 305 const std::vector<RtpRtcp*> rtp_rtcp_modules_; |
| 307 }; | 306 }; |
| 308 | 307 |
| 309 } // namespace webrtc | 308 } // namespace webrtc |
| 310 | 309 |
| 311 #endif // WEBRTC_VIDEO_VIE_CHANNEL_H_ | 310 #endif // WEBRTC_VIDEO_VIE_CHANNEL_H_ |
| OLD | NEW |