Searched defs:sending (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoengine2.h273 bool sending() const { return sending_; } function in class:cricket::WebRtcVideoChannel2
H A Dwebrtcvideoengine.h246 bool sending() const { return sending_; } function in class:cricket::WebRtcVideoMediaChannel
337 // true |ssrc| is the remote ssrc. If |sending| is true the ssrc is
338 // local ssrc. If both |receiving| and |sending| is true the ssrc
373 // Helper function for starting the sending of media on all channels or
377 // Helper function for stop the sending of media on all channels or
H A Dwebrtcvoiceengine.h387 bool sending() const { return send_ != SEND_NOTHING; } function in class:cricket::WebRtcVoiceMediaChannel
465 // send_channels_ contains the channels which are being used for sending.
466 // When the default channel (voe_channel) is used for sending, it is
H A Dwebrtcvideoengine.cc556 // TODO(mflodman): Consider sending resolution as part of event, to let
612 void set_sending(bool sending) { sending_ = sending; } argument
613 bool sending() const { return sending_; } function in class:cricket::WebRtcVideoChannelSendInfo
1860 if (send == sending()) {
1865 // We've been asked to start sending.
1875 // We've been asked to stop sending.
1903 // If the default channel is already used for sending create a new channel
1904 // otherwise use the default channel for sending.
2887 // Extension closer to the network, @ socket level before sending
3319 const bool sending = (direction == MD_SEND) || (direction == MD_SENDRECV); local
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel.h90 sending(false),
98 bool sending; member in struct:webrtc::voe::ChannelState::State
143 state_.sending = enable;
448 return channel_state_.Get().sending;
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideoengine_unittest.h580 bool sending = channel_->sending(); local
585 success = SetSend(sending);
764 EXPECT_FALSE(channel_->sending());
767 EXPECT_FALSE(channel_->sending());
769 EXPECT_TRUE(channel_->sending());
773 EXPECT_FALSE(channel_->sending());
777 EXPECT_FALSE(channel_->sending());
779 EXPECT_FALSE(channel_->sending());
1755 // Test sending an
[all...]
H A Dfakemediaengine.h51 // A common helper class that handles sending and receiving RTP/RTCP packets.
67 bool sending() const { return sending_; } function in class:cricket::RtpHelper
169 // sending stream.
177 // sending stream.
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtcp_sender.cc214 RTCPSender::SetSendingStatus(const FeedbackState& feedback_state, bool sending) argument
222 if(sending == false && _sending == true)
228 _sending = sending;
1113 // Before sending the TMMBR check the received TMMBN, only an owner is allowed to raise the bitrate
H A Drtp_rtcp_impl.cc135 // for all outgoing messages sending packets etc.
449 int32_t ModuleRtpRtcpImpl::SetSendingStatus(const bool sending) { argument
450 if (rtcp_sender_.Sending() != sending) {
452 if (rtcp_sender_.SetSendingStatus(GetFeedbackState(), sending) != 0) {
460 rtp_sender_.SetSendingStatus(sending);
461 if (sending) {
481 int32_t ModuleRtpRtcpImpl::SetSendingMediaStatus(const bool sending) { argument
482 rtp_sender_.SetSendingMediaStatus(sending);
604 // No RTP sender is interested in sending this packet.
615 // Send padding on one of the modules sending medi
[all...]

Completed in 205 milliseconds