| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 * bursts to minimize packet loss. | 58 * bursts to minimize packet loss. |
| 59 */ | 59 */ |
| 60 int32_t id; | 60 int32_t id; |
| 61 bool audio; | 61 bool audio; |
| 62 bool receiver_only; | 62 bool receiver_only; |
| 63 Clock* clock; | 63 Clock* clock; |
| 64 ReceiveStatistics* receive_statistics; | 64 ReceiveStatistics* receive_statistics; |
| 65 Transport* outgoing_transport; | 65 Transport* outgoing_transport; |
| 66 RtcpIntraFrameObserver* intra_frame_callback; | 66 RtcpIntraFrameObserver* intra_frame_callback; |
| 67 RtcpBandwidthObserver* bandwidth_callback; | 67 RtcpBandwidthObserver* bandwidth_callback; |
| 68 SendTimeObserver* send_time_callback; | 68 TransportFeedbackObserver* transport_feedback_callback; |
| 69 RtcpRttStats* rtt_stats; | 69 RtcpRttStats* rtt_stats; |
| 70 RtcpPacketTypeCounterObserver* rtcp_packet_type_counter_observer; | 70 RtcpPacketTypeCounterObserver* rtcp_packet_type_counter_observer; |
| 71 RtpAudioFeedback* audio_messages; | 71 RtpAudioFeedback* audio_messages; |
| 72 RemoteBitrateEstimator* remote_bitrate_estimator; | 72 RemoteBitrateEstimator* remote_bitrate_estimator; |
| 73 PacedSender* paced_sender; | 73 PacedSender* paced_sender; |
| 74 PacketRouter* packet_router; | 74 PacketRouter* packet_router; |
| 75 BitrateStatisticsObserver* send_bitrate_observer; | 75 BitrateStatisticsObserver* send_bitrate_observer; |
| 76 FrameCountObserver* send_frame_count_observer; | 76 FrameCountObserver* send_frame_count_observer; |
| 77 SendSideDelayObserver* send_side_delay_observer; | 77 SendSideDelayObserver* send_side_delay_observer; |
| 78 }; | 78 }; |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 | 635 |
| 636 /* | 636 /* |
| 637 * send a request for a keyframe | 637 * send a request for a keyframe |
| 638 * | 638 * |
| 639 * return -1 on failure else 0 | 639 * return -1 on failure else 0 |
| 640 */ | 640 */ |
| 641 virtual int32_t RequestKeyFrame() = 0; | 641 virtual int32_t RequestKeyFrame() = 0; |
| 642 }; | 642 }; |
| 643 } // namespace webrtc | 643 } // namespace webrtc |
| 644 #endif // WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_H_ | 644 #endif // WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_H_ |
| OLD | NEW |