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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 | 322 |
323 // VoERTP_RTCP | 323 // VoERTP_RTCP |
324 int SetLocalSSRC(unsigned int ssrc); | 324 int SetLocalSSRC(unsigned int ssrc); |
325 int GetLocalSSRC(unsigned int& ssrc); | 325 int GetLocalSSRC(unsigned int& ssrc); |
326 int GetRemoteSSRC(unsigned int& ssrc); | 326 int GetRemoteSSRC(unsigned int& ssrc); |
327 int SetSendAudioLevelIndicationStatus(bool enable, unsigned char id); | 327 int SetSendAudioLevelIndicationStatus(bool enable, unsigned char id); |
328 int SetReceiveAudioLevelIndicationStatus(bool enable, unsigned char id); | 328 int SetReceiveAudioLevelIndicationStatus(bool enable, unsigned char id); |
329 int SetSendAbsoluteSenderTimeStatus(bool enable, unsigned char id); | 329 int SetSendAbsoluteSenderTimeStatus(bool enable, unsigned char id); |
330 int SetReceiveAbsoluteSenderTimeStatus(bool enable, unsigned char id); | 330 int SetReceiveAbsoluteSenderTimeStatus(bool enable, unsigned char id); |
331 void EnableSendTransportSequenceNumber(int id); | 331 void EnableSendTransportSequenceNumber(int id); |
| 332 void EnableReceiveTransportSequenceNumber(int id); |
332 | 333 |
333 void SetCongestionControlObjects( | 334 void SetCongestionControlObjects( |
334 RtpPacketSender* rtp_packet_sender, | 335 RtpPacketSender* rtp_packet_sender, |
335 TransportFeedbackObserver* transport_feedback_observer, | 336 TransportFeedbackObserver* transport_feedback_observer, |
336 PacketRouter* packet_router); | 337 PacketRouter* packet_router); |
337 | 338 |
338 void SetRTCPStatus(bool enable); | 339 void SetRTCPStatus(bool enable); |
339 int GetRTCPStatus(bool& enabled); | 340 int GetRTCPStatus(bool& enabled); |
340 int SetRTCP_CNAME(const char cName[256]); | 341 int SetRTCP_CNAME(const char cName[256]); |
341 int GetRemoteRTCP_CNAME(char cName[256]); | 342 int GetRemoteRTCP_CNAME(char cName[256]); |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 PacketRouter* packet_router_ = nullptr; | 605 PacketRouter* packet_router_ = nullptr; |
605 rtc::scoped_ptr<TransportFeedbackProxy> feedback_observer_proxy_; | 606 rtc::scoped_ptr<TransportFeedbackProxy> feedback_observer_proxy_; |
606 rtc::scoped_ptr<TransportSequenceNumberProxy> seq_num_allocator_proxy_; | 607 rtc::scoped_ptr<TransportSequenceNumberProxy> seq_num_allocator_proxy_; |
607 rtc::scoped_ptr<RtpPacketSenderProxy> rtp_packet_sender_proxy_; | 608 rtc::scoped_ptr<RtpPacketSenderProxy> rtp_packet_sender_proxy_; |
608 }; | 609 }; |
609 | 610 |
610 } // namespace voe | 611 } // namespace voe |
611 } // namespace webrtc | 612 } // namespace webrtc |
612 | 613 |
613 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ | 614 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ |
OLD | NEW |