| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 virtual void SetRTCPStatus(bool enable); | 48 virtual void SetRTCPStatus(bool enable); |
| 49 virtual void SetLocalSSRC(uint32_t ssrc); | 49 virtual void SetLocalSSRC(uint32_t ssrc); |
| 50 virtual void SetRTCP_CNAME(const std::string& c_name); | 50 virtual void SetRTCP_CNAME(const std::string& c_name); |
| 51 virtual void SetSendAbsoluteSenderTimeStatus(bool enable, int id); | 51 virtual void SetSendAbsoluteSenderTimeStatus(bool enable, int id); |
| 52 virtual void SetSendAudioLevelIndicationStatus(bool enable, int id); | 52 virtual void SetSendAudioLevelIndicationStatus(bool enable, int id); |
| 53 virtual void SetReceiveAbsoluteSenderTimeStatus(bool enable, int id); | 53 virtual void SetReceiveAbsoluteSenderTimeStatus(bool enable, int id); |
| 54 virtual void SetReceiveAudioLevelIndicationStatus(bool enable, int id); | 54 virtual void SetReceiveAudioLevelIndicationStatus(bool enable, int id); |
| 55 virtual void EnableSendTransportSequenceNumber(int id); | 55 virtual void EnableSendTransportSequenceNumber(int id); |
| 56 virtual void EnableReceiveTransportSequenceNumber(int id); | 56 virtual void EnableReceiveTransportSequenceNumber(int id); |
| 57 virtual void EnableSendPlayoutDelayLimit(int id); |
| 58 virtual void EnableReceivePlayoutDelayLimit(int id); |
| 57 virtual void RegisterSenderCongestionControlObjects( | 59 virtual void RegisterSenderCongestionControlObjects( |
| 58 RtpPacketSender* rtp_packet_sender, | 60 RtpPacketSender* rtp_packet_sender, |
| 59 TransportFeedbackObserver* transport_feedback_observer, | 61 TransportFeedbackObserver* transport_feedback_observer, |
| 60 PacketRouter* packet_router); | 62 PacketRouter* packet_router); |
| 61 virtual void RegisterReceiverCongestionControlObjects( | 63 virtual void RegisterReceiverCongestionControlObjects( |
| 62 PacketRouter* packet_router); | 64 PacketRouter* packet_router); |
| 63 virtual void ResetCongestionControlObjects(); | 65 virtual void ResetCongestionControlObjects(); |
| 64 | 66 |
| 65 virtual CallStatistics GetRTCPStatistics() const; | 67 virtual CallStatistics GetRTCPStatistics() const; |
| 66 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; | 68 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 85 | 87 |
| 86 rtc::ThreadChecker thread_checker_; | 88 rtc::ThreadChecker thread_checker_; |
| 87 ChannelOwner channel_owner_; | 89 ChannelOwner channel_owner_; |
| 88 | 90 |
| 89 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); | 91 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); |
| 90 }; | 92 }; |
| 91 } // namespace voe | 93 } // namespace voe |
| 92 } // namespace webrtc | 94 } // namespace webrtc |
| 93 | 95 |
| 94 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ | 96 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ |
| OLD | NEW |