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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 rtc::scoped_ptr<ViEChannelProtectionCallback> vcm_protection_callback_; | 457 rtc::scoped_ptr<ViEChannelProtectionCallback> vcm_protection_callback_; |
458 | 458 |
459 VideoCodingModule* const vcm_; | 459 VideoCodingModule* const vcm_; |
460 ViEReceiver vie_receiver_; | 460 ViEReceiver vie_receiver_; |
461 ViESyncModule vie_sync_; | 461 ViESyncModule vie_sync_; |
462 | 462 |
463 // Helper to report call statistics. | 463 // Helper to report call statistics. |
464 rtc::scoped_ptr<ChannelStatsObserver> stats_observer_; | 464 rtc::scoped_ptr<ChannelStatsObserver> stats_observer_; |
465 | 465 |
466 // Not owned. | 466 // Not owned. |
467 VCMReceiveStatisticsCallback* vcm_receive_stats_callback_ | 467 ReceiveStatisticsProxy* receive_stats_callback_ GUARDED_BY(crit_); |
468 GUARDED_BY(crit_); | |
469 FrameCounts receive_frame_counts_ GUARDED_BY(crit_); | 468 FrameCounts receive_frame_counts_ GUARDED_BY(crit_); |
470 IncomingVideoStream* incoming_video_stream_ GUARDED_BY(crit_); | 469 IncomingVideoStream* incoming_video_stream_ GUARDED_BY(crit_); |
471 ViEDecoderObserver* codec_observer_ GUARDED_BY(crit_); | 470 ViEDecoderObserver* codec_observer_ GUARDED_BY(crit_); |
472 RtcpIntraFrameObserver* const intra_frame_observer_; | 471 RtcpIntraFrameObserver* const intra_frame_observer_; |
473 RtcpRttStats* const rtt_stats_; | 472 RtcpRttStats* const rtt_stats_; |
474 PacedSender* const paced_sender_; | 473 PacedSender* const paced_sender_; |
475 PacketRouter* const packet_router_; | 474 PacketRouter* const packet_router_; |
476 | 475 |
477 const rtc::scoped_ptr<RtcpBandwidthObserver> bandwidth_observer_; | 476 const rtc::scoped_ptr<RtcpBandwidthObserver> bandwidth_observer_; |
478 SendTimeObserver* const send_time_observer_; | 477 SendTimeObserver* const send_time_observer_; |
(...skipping 14 matching lines...) Expand all Loading... |
493 size_t num_rtts_ GUARDED_BY(crit_); | 492 size_t num_rtts_ GUARDED_BY(crit_); |
494 | 493 |
495 // RtpRtcp modules, declared last as they use other members on construction. | 494 // RtpRtcp modules, declared last as they use other members on construction. |
496 const std::vector<RtpRtcp*> rtp_rtcp_modules_; | 495 const std::vector<RtpRtcp*> rtp_rtcp_modules_; |
497 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_); | 496 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_); |
498 }; | 497 }; |
499 | 498 |
500 } // namespace webrtc | 499 } // namespace webrtc |
501 | 500 |
502 #endif // WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_H_ | 501 #endif // WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_H_ |
OLD | NEW |