Home | History | Annotate | Download | only in voice_engine

Lines Matching refs:channel

15 #include "webrtc/voice_engine/channel.h"
46 int VoEVideoSyncImpl::GetPlayoutTimestamp(int channel,
52 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
53 voe::Channel* channel_ptr = ch.channel();
56 "GetPlayoutTimestamp() failed to locate channel");
62 int VoEVideoSyncImpl::SetInitTimestamp(int channel, unsigned int timestamp) {
64 "SetInitTimestamp(channel=%d, timestamp=%lu)", channel,
71 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
72 voe::Channel* channelPtr = ch.channel();
75 "SetInitTimestamp() failed to locate channel");
81 int VoEVideoSyncImpl::SetInitSequenceNumber(int channel, short sequenceNumber) {
83 "SetInitSequenceNumber(channel=%d, sequenceNumber=%hd)", channel,
90 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
91 voe::Channel* channelPtr = ch.channel();
94 "SetInitSequenceNumber() failed to locate channel");
100 int VoEVideoSyncImpl::SetMinimumPlayoutDelay(int channel, int delayMs) {
102 "SetMinimumPlayoutDelay(channel=%d, delayMs=%d)", channel,
109 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
110 voe::Channel* channelPtr = ch.channel();
113 "SetMinimumPlayoutDelay() failed to locate channel");
119 int VoEVideoSyncImpl::GetDelayEstimate(int channel,
126 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
127 voe::Channel* channelPtr = ch.channel();
130 "GetDelayEstimate() failed to locate channel");
156 int VoEVideoSyncImpl::GetRtpRtcp(int channel,
163 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
164 voe::Channel* channelPtr = ch.channel();
167 "GetPlayoutTimestamp() failed to locate channel");
173 int VoEVideoSyncImpl::GetLeastRequiredDelayMs(int channel) const {
178 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
179 voe::Channel* channel_ptr = ch.channel();
182 "GetLeastRequiredDelayMs() failed to locate channel");