Home
last modified time | relevance | path

Searched refs:ChannelProxy (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/webrtc/voice_engine/
Dchannel_proxy.cc21 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()
[all …]
Dchannel_proxy.h39 class ChannelProxy {
41 ChannelProxy();
42 explicit ChannelProxy(const ChannelOwner& channel_owner);
43 virtual ~ChannelProxy();
Dvoice_engine_impl.cc66 rtc::scoped_ptr<voe::ChannelProxy> VoiceEngineImpl::GetChannelProxy( in GetChannelProxy()
71 return rtc::scoped_ptr<voe::ChannelProxy>( in GetChannelProxy()
72 new voe::ChannelProxy(channel_manager().GetChannel(channel_id))); in GetChannelProxy()
Dvoice_engine_impl.h53 class ChannelProxy; variable
137 virtual rtc::scoped_ptr<voe::ChannelProxy> GetChannelProxy(int channel_id);
/external/webrtc/webrtc/audio/
Daudio_send_stream.h24 class ChannelProxy; variable
54 rtc::scoped_ptr<voe::ChannelProxy> channel_proxy_;
Daudio_receive_stream.h24 class ChannelProxy; variable
60 rtc::scoped_ptr<voe::ChannelProxy> channel_proxy_;
/external/webrtc/webrtc/test/
Dmock_voe_channel_proxy.h21 class MockVoEChannelProxy : public voe::ChannelProxy {
Dmock_voice_engine.h43 MOCK_METHOD1(ChannelProxyFactory, voe::ChannelProxy*(int channel_id));
46 rtc::scoped_ptr<voe::ChannelProxy> GetChannelProxy(int channel_id) override { in GetChannelProxy()
47 return rtc::scoped_ptr<voe::ChannelProxy>(ChannelProxyFactory(channel_id)); in GetChannelProxy()