Home
last modified time | relevance | path

Searched refs:SetCapturer (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/talk/media/base/
Dvideoengine_unittest.h160 EXPECT_TRUE(channel_->SetCapturer(kSsrc, video_capturer_.get())); in SetUp()
197 EXPECT_TRUE(channel_->SetCapturer(kSsrc + 2, video_capturer_2_.get())); in SetUpSecondStreamWithNoRecv()
414 EXPECT_TRUE(channel_->SetCapturer(kSsrc, video_capturer_.get())); in SetSend()
632 EXPECT_TRUE(channel_->SetCapturer(5678, capturer.get())); in GetStatsMultipleSendStreams()
668 EXPECT_TRUE(channel_->SetCapturer(5678, NULL)); in GetStatsMultipleSendStreams()
706 EXPECT_TRUE(channel_->SetCapturer(999u, video_capturer_.get())); in SetSendSsrcAfterSetCodecs()
773 EXPECT_TRUE(channel_->SetCapturer(789u, video_capturer_.get())); in AddRemoveSendStreams()
980 EXPECT_TRUE(channel_->SetCapturer(kSsrc, capturer.get())); in AddRemoveCapturer()
995 EXPECT_TRUE(channel_->SetCapturer(kSsrc, NULL)); in AddRemoveCapturer()
1030 EXPECT_TRUE(channel_->SetCapturer(kSsrc, NULL)); in RemoveCapturerWithoutAdd()
[all …]
Dfakemediaengine.h527 virtual bool SetCapturer(uint32_t ssrc, VideoCapturer* capturer) { in SetCapturer() function
Dmediachannel.h1087 virtual bool SetCapturer(uint32_t ssrc, VideoCapturer* capturer) = 0;
/external/webrtc/talk/media/webrtc/
Dwebrtcvideoengine2_unittest.cc301 EXPECT_TRUE(channel->SetCapturer(kSsrc, &capturer)); in TEST_F()
325 EXPECT_TRUE(channel->SetCapturer(kSsrc, &capturer)); in TEST_F()
379 EXPECT_TRUE(channel->SetCapturer(kSsrc, &capturer)); in TEST_F()
429 EXPECT_TRUE(channel->SetCapturer(kSsrc, &capturer)); in TEST_F()
491 EXPECT_TRUE(channel->SetCapturer(kSsrc, &capturer1)); in TEST_F()
516 EXPECT_TRUE(channel->SetCapturer(kSsrc, &capturer2)); in TEST_F()
576 EXPECT_TRUE(channel->SetCapturer(ssrcs.front(), &capturer)); in TEST_F()
594 EXPECT_TRUE(channel->SetCapturer(ssrcs.front(), NULL)); in TEST_F()
657 EXPECT_TRUE(channel->SetCapturer(ssrcs.front(), &capturer)); in TEST_F()
874 EXPECT_TRUE(channel_->SetCapturer(kSsrc, NULL)); in TEST_F()
[all …]
Dwebrtcvideoengine2.h177 bool SetCapturer(uint32_t ssrc, VideoCapturer* capturer) override;
260 bool SetCapturer(VideoCapturer* capturer);
Dwebrtcvideoengine2.cc1253 bool WebRtcVideoChannel2::SetCapturer(uint32_t ssrc, VideoCapturer* capturer) { in SetCapturer() function in cricket::WebRtcVideoChannel2
1263 if (!send_streams_[ssrc]->SetCapturer(capturer)) { in SetCapturer()
1703 bool WebRtcVideoChannel2::WebRtcVideoSendStream::SetCapturer( in SetCapturer() function in cricket::WebRtcVideoChannel2::WebRtcVideoSendStream
/external/webrtc/talk/session/media/
Dchannel.h465 bool SetCapturer(uint32_t ssrc, VideoCapturer* capturer);
Dchannel.cc1697 bool VideoChannel::SetCapturer(uint32_t ssrc, VideoCapturer* capturer) { in SetCapturer() function in cricket::VideoChannel
1698 return InvokeOnWorker(Bind(&VideoMediaChannel::SetCapturer, in SetCapturer()
/external/webrtc/talk/app/webrtc/
Dwebrtcsession.cc1350 if (!video_channel_->SetCapturer(ssrc, camera)) { in SetCaptureDevice()