Lines Matching refs:ChannelProxy

21 ChannelProxy::ChannelProxy() : channel_owner_(nullptr) {}  in ChannelProxy()  function in webrtc::voe::ChannelProxy
23 ChannelProxy::ChannelProxy(const ChannelOwner& channel_owner) : in ChannelProxy() function in webrtc::voe::ChannelProxy
28 ChannelProxy::~ChannelProxy() {} in ~ChannelProxy()
30 void ChannelProxy::SetRTCPStatus(bool enable) { in SetRTCPStatus()
34 void ChannelProxy::SetLocalSSRC(uint32_t ssrc) { in SetLocalSSRC()
40 void ChannelProxy::SetRTCP_CNAME(const std::string& c_name) { in SetRTCP_CNAME()
48 void ChannelProxy::SetSendAbsoluteSenderTimeStatus(bool enable, int id) { in SetSendAbsoluteSenderTimeStatus()
54 void ChannelProxy::SetSendAudioLevelIndicationStatus(bool enable, int id) { in SetSendAudioLevelIndicationStatus()
60 void ChannelProxy::EnableSendTransportSequenceNumber(int id) { in EnableSendTransportSequenceNumber()
65 void ChannelProxy::SetReceiveAbsoluteSenderTimeStatus(bool enable, int id) { in SetReceiveAbsoluteSenderTimeStatus()
71 void ChannelProxy::SetReceiveAudioLevelIndicationStatus(bool enable, int id) { in SetReceiveAudioLevelIndicationStatus()
77 void ChannelProxy::SetCongestionControlObjects( in SetCongestionControlObjects()
86 CallStatistics ChannelProxy::GetRTCPStatistics() const { in GetRTCPStatistics()
94 std::vector<ReportBlock> ChannelProxy::GetRemoteRTCPReportBlocks() const { in GetRemoteRTCPReportBlocks()
102 NetworkStatistics ChannelProxy::GetNetworkStatistics() const { in GetNetworkStatistics()
110 AudioDecodingCallStats ChannelProxy::GetDecodingCallStatistics() const { in GetDecodingCallStatistics()
117 int32_t ChannelProxy::GetSpeechOutputLevelFullRange() const { in GetSpeechOutputLevelFullRange()
125 uint32_t ChannelProxy::GetDelayEstimate() const { in GetDelayEstimate()
130 bool ChannelProxy::SetSendTelephoneEventPayloadType(int payload_type) { in SetSendTelephoneEventPayloadType()
135 bool ChannelProxy::SendTelephoneEventOutband(uint8_t event, in SendTelephoneEventOutband()
142 void ChannelProxy::SetSink(rtc::scoped_ptr<AudioSinkInterface> sink) { in SetSink()
147 Channel* ChannelProxy::channel() const { in channel()