Searched refs:MuteStream (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dtypingmonitor.cc58 channel_->MuteStream(0, false);
68 // code. The MuteStream() call below is a ::Send and is synchronous as well
75 channel_->MuteStream(0, true);
114 channel_->MuteStream(0, false);
H A Dchannel_unittest.cc940 EXPECT_TRUE(channel1_->MuteStream(0, true));
942 EXPECT_TRUE(channel1_->MuteStream(0, false));
946 EXPECT_FALSE(channel1_->MuteStream(kSsrc1, true));
951 EXPECT_TRUE(channel1_->MuteStream(kSsrc1, true));
953 EXPECT_TRUE(channel1_->MuteStream(kSsrc1, false));
2150 // Test that MuteStream properly forwards to the media channel and does
2156 EXPECT_TRUE(channel1_->MuteStream(0, true));
2159 EXPECT_TRUE(channel1_->MuteStream(0, false));
H A Dcall.cc436 it->second.voice_channel->MuteStream(0, mute);
445 it->second.video_channel->MuteStream(0, mute);
H A Dchannel.h122 bool MuteStream(uint32 ssrc, bool mute);
H A Dchannel.cc241 bool BaseChannel::MuteStream(uint32 ssrc, bool mute) { function in class:cricket::BaseChannel
678 bool ret = media_channel()->MuteStream(ssrc, mute);
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dfilemediaengine.h243 virtual bool MuteStream(uint32 ssrc, bool on) { return false; } function in class:cricket::FileVoiceChannel
314 virtual bool MuteStream(uint32 ssrc, bool on) { return false; } function in class:cricket::FileVideoChannel
H A Dvideoengine_unittest.h1675 void MuteStream() { function in class:VideoMediaChannelTest
1691 EXPECT_TRUE(channel_->MuteStream(kSsrc, true));
1698 EXPECT_TRUE(channel_->MuteStream(kSsrc, false));
1706 EXPECT_TRUE(channel_->MuteStream(kSsrc, true));
1713 EXPECT_TRUE(channel_->MuteStream(kSsrc, false));
1721 EXPECT_TRUE(channel_->MuteStream(kSsrc, true));
1722 EXPECT_TRUE(channel_->MuteStream(kSsrc, true));
1725 EXPECT_TRUE(channel_->MuteStream(kSsrc, false));
1726 EXPECT_TRUE(channel_->MuteStream(kSsrc, false));
1729 EXPECT_FALSE(channel_->MuteStream(kSsr
[all...]
H A Dmediachannel.h598 virtual bool MuteStream(uint32 ssrc, bool on) = 0;
1274 virtual bool MuteStream(uint32 ssrc, bool on) { return false; } function in class:cricket::DataMediaChannel
H A Dfakemediaengine.h138 virtual bool MuteStream(uint32 ssrc, bool on) { function in class:cricket::RtpHelper
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoengine2.h252 virtual bool MuteStream(uint32 ssrc, bool mute) OVERRIDE;
310 void MuteStream(bool mute);
H A Dwebrtcvideoengine.h275 virtual bool MuteStream(uint32 ssrc, bool on);
H A Dwebrtcvoiceengine.h376 virtual bool MuteStream(uint32 ssrc, bool on);
H A Dwebrtcvideoengine2.cc1174 bool WebRtcVideoChannel2::MuteStream(uint32 ssrc, bool mute) { function in class:cricket::WebRtcVideoChannel2
1175 LOG(LS_VERBOSE) << "MuteStream: " << ssrc << " -> "
1183 send_streams_[ssrc]->MuteStream(mute);
1475 void WebRtcVideoChannel2::WebRtcVideoSendStream::MuteStream(bool mute) { function in class:cricket::WebRtcVideoChannel2::WebRtcVideoSendStream
H A Dwebrtcvideoengine2_unittest.cc552 WEBRTC_BASE_TEST(MuteStream);
H A Dwebrtcvideoengine_unittest.cc2564 TEST_F(WebRtcVideoMediaChannelTest, MuteStream) {
2565 Base::MuteStream();
H A Dwebrtcvideoengine.cc2817 bool WebRtcVideoMediaChannel::MuteStream(uint32 ssrc, bool muted) { function in class:cricket::WebRtcVideoMediaChannel
H A Dwebrtcvoiceengine.cc3179 bool WebRtcVoiceMediaChannel::MuteStream(uint32 ssrc, bool muted) { function in class:cricket::WebRtcVoiceMediaChannel
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dwebrtcsession.cc987 if (!voice_channel_->MuteStream(ssrc, !enable)) {
988 // Allow that MuteStream fail if |enable| is false but assert otherwise.
1053 if (!video_channel_->MuteStream(ssrc, !enable)) {
1054 // Allow that MuteStream fail if |enable| is false but assert otherwise.

Completed in 374 milliseconds