Home | History | Annotate | Download | only in voice_engine

Lines Matching refs:channel

18 #include "webrtc/voice_engine/channel.h"
48 int VoERTP_RTCPImpl::SetLocalSSRC(int channel, unsigned int ssrc) {
50 "SetLocalSSRC(channel=%d, %lu)", channel, ssrc);
55 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
56 voe::Channel* channelPtr = ch.channel();
59 "SetLocalSSRC() failed to locate channel");
65 int VoERTP_RTCPImpl::GetLocalSSRC(int channel, unsigned int& ssrc) {
70 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
71 voe::Channel* channelPtr = ch.channel();
74 "GetLocalSSRC() failed to locate channel");
80 int VoERTP_RTCPImpl::GetRemoteSSRC(int channel, unsigned int& ssrc) {
85 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
86 voe::Channel* channelPtr = ch.channel();
89 "GetRemoteSSRC() failed to locate channel");
95 int VoERTP_RTCPImpl::SetSendAudioLevelIndicationStatus(int channel,
99 "SetSendAudioLevelIndicationStatus(channel=%d, enable=%d,"
101 channel, enable, id);
116 // Set state and id for the specified channel.
117 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
118 voe::Channel* channelPtr = ch.channel();
122 "SetSendAudioLevelIndicationStatus() failed to locate channel");
128 int VoERTP_RTCPImpl::SetReceiveAudioLevelIndicationStatus(int channel,
133 "SetReceiveAudioLevelIndicationStatus(channel=%d, enable=%d, id=%u)",
134 channel, enable, id);
148 // Set state and id for the specified channel.
149 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
150 voe::Channel* channel_ptr = ch.channel();
154 "SetReceiveAudioLevelIndicationStatus() failed to locate channel");
160 int VoERTP_RTCPImpl::SetSendAbsoluteSenderTimeStatus(int channel,
164 "SetSendAbsoluteSenderTimeStatus(channel=%d, enable=%d, id=%u)",
165 channel, enable, id);
179 // Set state and id for the specified channel.
180 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
181 voe::Channel* channelPtr = ch.channel();
185 "SetSendAbsoluteSenderTimeStatus() failed to locate channel");
191 int VoERTP_RTCPImpl::SetReceiveAbsoluteSenderTimeStatus(int channel,
196 "SetReceiveAbsoluteSenderTimeStatus(channel=%d, enable=%d, id=%u)",
197 channel, enable, id);
211 // Set state and id for the specified channel.
212 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
213 voe::Channel* channelPtr = ch.channel();
217 "SetReceiveAbsoluteSenderTimeStatus() failed to locate channel");
223 int VoERTP_RTCPImpl::SetRTCPStatus(int channel, bool enable) {
225 "SetRTCPStatus(channel=%d, enable=%d)", channel, enable);
230 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
231 voe::Channel* channelPtr = ch.channel();
234 "SetRTCPStatus() failed to locate channel");
241 int VoERTP_RTCPImpl::GetRTCPStatus(int channel, bool& enabled) {
246 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
247 voe::Channel* channelPtr = ch.channel();
250 "GetRTCPStatus() failed to locate channel");
256 int VoERTP_RTCPImpl::SetRTCP_CNAME(int channel, const char cName[256]) {
258 "SetRTCP_CNAME(channel=%d, cName=%s)", channel, cName);
263 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
264 voe::Channel* channelPtr = ch.channel();
267 "SetRTCP_CNAME() failed to locate channel");
273 int VoERTP_RTCPImpl::GetRemoteRTCP_CNAME(int channel, char cName[256]) {
278 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
279 voe::Channel* channelPtr = ch.channel();
282 "GetRemoteRTCP_CNAME() failed to locate channel");
289 int channel,
301 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
302 voe::Channel* channelPtr = ch.channel();
305 "GetRemoteRTCP_CNAME() failed to locate channel");
312 int VoERTP_RTCPImpl::GetRTPStatistics(int channel,
320 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
321 voe::Channel* channelPtr = ch.channel();
324 "GetRTPStatistics() failed to locate channel");
331 int VoERTP_RTCPImpl::GetRTCPStatistics(int channel, CallStatistics& stats) {
336 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
337 voe::Channel* channelPtr = ch.channel();
340 "GetRTPStatistics() failed to locate channel");
347 int channel, std::vector<ReportBlock>* report_blocks) {
352 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
353 voe::Channel* channel_ptr = ch.channel();
357 "GetRemoteRTCPReportBlocks() failed to locate channel");
363 int VoERTP_RTCPImpl::SetREDStatus(int channel,
367 "SetREDStatus(channel=%d, enable=%d, redPayloadtype=%d)",
368 channel, enable, redPayloadtype);
374 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
375 voe::Channel* channelPtr = ch.channel();
378 "SetREDStatus() failed to locate channel");
389 int VoERTP_RTCPImpl::GetREDStatus(int channel,
397 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
398 voe::Channel* channelPtr = ch.channel();
401 "GetREDStatus() failed to locate channel");
412 int VoERTP_RTCPImpl::SetNACKStatus(int channel, bool enable, int maxNoPackets) {
414 "SetNACKStatus(channel=%d, enable=%d, maxNoPackets=%d)", channel,
417 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
418 voe::Channel* channelPtr = ch.channel();
421 "SetNACKStatus() failed to locate channel");