OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 19 matching lines...) Expand all Loading... |
30 RtpAudioFeedback* incoming_audio_messages_callback, | 30 RtpAudioFeedback* incoming_audio_messages_callback, |
31 RtpFeedback* incoming_messages_callback, | 31 RtpFeedback* incoming_messages_callback, |
32 RTPPayloadRegistry* rtp_payload_registry, | 32 RTPPayloadRegistry* rtp_payload_registry, |
33 RTPReceiverStrategy* rtp_media_receiver); | 33 RTPReceiverStrategy* rtp_media_receiver); |
34 | 34 |
35 virtual ~RtpReceiverImpl(); | 35 virtual ~RtpReceiverImpl(); |
36 | 36 |
37 int32_t RegisterReceivePayload(const char payload_name[RTP_PAYLOAD_NAME_SIZE], | 37 int32_t RegisterReceivePayload(const char payload_name[RTP_PAYLOAD_NAME_SIZE], |
38 const int8_t payload_type, | 38 const int8_t payload_type, |
39 const uint32_t frequency, | 39 const uint32_t frequency, |
40 const uint8_t channels, | 40 const size_t channels, |
41 const uint32_t rate) override; | 41 const uint32_t rate) override; |
42 | 42 |
43 int32_t DeRegisterReceivePayload(const int8_t payload_type) override; | 43 int32_t DeRegisterReceivePayload(const int8_t payload_type) override; |
44 | 44 |
45 bool IncomingRtpPacket(const RTPHeader& rtp_header, | 45 bool IncomingRtpPacket(const RTPHeader& rtp_header, |
46 const uint8_t* payload, | 46 const uint8_t* payload, |
47 size_t payload_length, | 47 size_t payload_length, |
48 PayloadUnion payload_specific, | 48 PayloadUnion payload_specific, |
49 bool in_order) override; | 49 bool in_order) override; |
50 | 50 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 uint32_t current_remote_csrc_[kRtpCsrcSize]; | 93 uint32_t current_remote_csrc_[kRtpCsrcSize]; |
94 | 94 |
95 uint32_t last_received_timestamp_; | 95 uint32_t last_received_timestamp_; |
96 int64_t last_received_frame_time_ms_; | 96 int64_t last_received_frame_time_ms_; |
97 uint16_t last_received_sequence_number_; | 97 uint16_t last_received_sequence_number_; |
98 | 98 |
99 NACKMethod nack_method_; | 99 NACKMethod nack_method_; |
100 }; | 100 }; |
101 } // namespace webrtc | 101 } // namespace webrtc |
102 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RECEIVER_IMPL_H_ | 102 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RECEIVER_IMPL_H_ |
OLD | NEW |