| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 virtual void SetNACKStatus(bool enable, int max_packets); | 60 virtual void SetNACKStatus(bool enable, int max_packets); |
| 61 virtual void SetSendAudioLevelIndicationStatus(bool enable, int id); | 61 virtual void SetSendAudioLevelIndicationStatus(bool enable, int id); |
| 62 virtual void SetReceiveAudioLevelIndicationStatus(bool enable, int id); | 62 virtual void SetReceiveAudioLevelIndicationStatus(bool enable, int id); |
| 63 virtual void EnableSendTransportSequenceNumber(int id); | 63 virtual void EnableSendTransportSequenceNumber(int id); |
| 64 virtual void EnableReceiveTransportSequenceNumber(int id); | 64 virtual void EnableReceiveTransportSequenceNumber(int id); |
| 65 virtual void RegisterSenderCongestionControlObjects( | 65 virtual void RegisterSenderCongestionControlObjects( |
| 66 RtpTransportControllerSendInterface* transport, | 66 RtpTransportControllerSendInterface* transport, |
| 67 RtcpBandwidthObserver* bandwidth_observer); | 67 RtcpBandwidthObserver* bandwidth_observer); |
| 68 virtual void RegisterReceiverCongestionControlObjects( | 68 virtual void RegisterReceiverCongestionControlObjects( |
| 69 PacketRouter* packet_router); | 69 PacketRouter* packet_router); |
| 70 virtual void ResetCongestionControlObjects(); | 70 virtual void ResetSenderCongestionControlObjects(); |
| 71 virtual void ResetReceiverCongestionControlObjects(); |
| 71 virtual CallStatistics GetRTCPStatistics() const; | 72 virtual CallStatistics GetRTCPStatistics() const; |
| 72 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; | 73 virtual std::vector<ReportBlock> GetRemoteRTCPReportBlocks() const; |
| 73 virtual NetworkStatistics GetNetworkStatistics() const; | 74 virtual NetworkStatistics GetNetworkStatistics() const; |
| 74 virtual AudioDecodingCallStats GetDecodingCallStatistics() const; | 75 virtual AudioDecodingCallStats GetDecodingCallStatistics() const; |
| 75 virtual int GetSpeechOutputLevel() const; | 76 virtual int GetSpeechOutputLevel() const; |
| 76 virtual int GetSpeechOutputLevelFullRange() const; | 77 virtual int GetSpeechOutputLevelFullRange() const; |
| 77 virtual uint32_t GetDelayEstimate() const; | 78 virtual uint32_t GetDelayEstimate() const; |
| 78 virtual bool SetSendTelephoneEventPayloadType(int payload_type, | 79 virtual bool SetSendTelephoneEventPayloadType(int payload_type, |
| 79 int payload_frequency); | 80 int payload_frequency); |
| 80 virtual bool SendTelephoneEventOutband(int event, int duration_ms); | 81 virtual bool SendTelephoneEventOutband(int event, int duration_ms); |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 rtc::RaceChecker audio_thread_race_checker_; | 138 rtc::RaceChecker audio_thread_race_checker_; |
| 138 rtc::RaceChecker video_capture_thread_race_checker_; | 139 rtc::RaceChecker video_capture_thread_race_checker_; |
| 139 ChannelOwner channel_owner_; | 140 ChannelOwner channel_owner_; |
| 140 | 141 |
| 141 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); | 142 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); |
| 142 }; | 143 }; |
| 143 } // namespace voe | 144 } // namespace voe |
| 144 } // namespace webrtc | 145 } // namespace webrtc |
| 145 | 146 |
| 146 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ | 147 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ |
| OLD | NEW |