| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 class ProcessThread; | 48 class ProcessThread; |
| 49 class RateLimiter; | 49 class RateLimiter; |
| 50 class ReceiveStatistics; | 50 class ReceiveStatistics; |
| 51 class RemoteNtpTimeEstimator; | 51 class RemoteNtpTimeEstimator; |
| 52 class RtcEventLog; | 52 class RtcEventLog; |
| 53 class RTPPayloadRegistry; | 53 class RTPPayloadRegistry; |
| 54 class RtpReceiver; | 54 class RtpReceiver; |
| 55 class RTPReceiverAudio; | 55 class RTPReceiverAudio; |
| 56 class RtpPacketReceived; | 56 class RtpPacketReceived; |
| 57 class RtpRtcp; | 57 class RtpRtcp; |
| 58 class RtpTransportControllerSendInterface; |
| 58 class TelephoneEventHandler; | 59 class TelephoneEventHandler; |
| 59 class VoERTPObserver; | 60 class VoERTPObserver; |
| 60 class VoiceEngineObserver; | 61 class VoiceEngineObserver; |
| 61 | 62 |
| 62 struct CallStatistics; | 63 struct CallStatistics; |
| 63 struct ReportBlock; | 64 struct ReportBlock; |
| 64 struct SenderInfo; | 65 struct SenderInfo; |
| 65 | 66 |
| 66 namespace voe { | 67 namespace voe { |
| 67 | 68 |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 // VoERTP_RTCP | 269 // VoERTP_RTCP |
| 269 int SetLocalSSRC(unsigned int ssrc); | 270 int SetLocalSSRC(unsigned int ssrc); |
| 270 int GetLocalSSRC(unsigned int& ssrc); | 271 int GetLocalSSRC(unsigned int& ssrc); |
| 271 int GetRemoteSSRC(unsigned int& ssrc); | 272 int GetRemoteSSRC(unsigned int& ssrc); |
| 272 int SetSendAudioLevelIndicationStatus(bool enable, unsigned char id); | 273 int SetSendAudioLevelIndicationStatus(bool enable, unsigned char id); |
| 273 int SetReceiveAudioLevelIndicationStatus(bool enable, unsigned char id); | 274 int SetReceiveAudioLevelIndicationStatus(bool enable, unsigned char id); |
| 274 void EnableSendTransportSequenceNumber(int id); | 275 void EnableSendTransportSequenceNumber(int id); |
| 275 void EnableReceiveTransportSequenceNumber(int id); | 276 void EnableReceiveTransportSequenceNumber(int id); |
| 276 | 277 |
| 277 void RegisterSenderCongestionControlObjects( | 278 void RegisterSenderCongestionControlObjects( |
| 278 RtpPacketSender* rtp_packet_sender, | 279 RtpTransportControllerSendInterface* transport, |
| 279 TransportFeedbackObserver* transport_feedback_observer, | |
| 280 PacketRouter* packet_router, | |
| 281 RtcpBandwidthObserver* bandwidth_observer); | 280 RtcpBandwidthObserver* bandwidth_observer); |
| 282 void RegisterReceiverCongestionControlObjects(PacketRouter* packet_router); | 281 void RegisterReceiverCongestionControlObjects(PacketRouter* packet_router); |
| 283 void ResetCongestionControlObjects(); | 282 void ResetCongestionControlObjects(); |
| 284 | 283 |
| 285 void SetRTCPStatus(bool enable); | 284 void SetRTCPStatus(bool enable); |
| 286 int GetRTCPStatus(bool& enabled); | 285 int GetRTCPStatus(bool& enabled); |
| 287 int SetRTCP_CNAME(const char cName[256]); | 286 int SetRTCP_CNAME(const char cName[256]); |
| 288 int GetRemoteRTCP_CNAME(char cName[256]); | 287 int GetRemoteRTCP_CNAME(char cName[256]); |
| 289 int SendApplicationDefinedRTCPPacket(unsigned char subType, | 288 int SendApplicationDefinedRTCPPacket(unsigned char subType, |
| 290 unsigned int name, | 289 unsigned int name, |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 | 515 |
| 517 rtc::ThreadChecker construction_thread_; | 516 rtc::ThreadChecker construction_thread_; |
| 518 | 517 |
| 519 const bool use_twcc_plr_for_ana_; | 518 const bool use_twcc_plr_for_ana_; |
| 520 }; | 519 }; |
| 521 | 520 |
| 522 } // namespace voe | 521 } // namespace voe |
| 523 } // namespace webrtc | 522 } // namespace webrtc |
| 524 | 523 |
| 525 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ | 524 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ |
| OLD | NEW |