Home
last modified time | relevance | path

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

/external/chromium_org/third_party/libjingle/source/talk/media/base/
Dvideoengine_unittest.h475 EXPECT_TRUE(channel_->SetCapturer(kSsrc, video_capturer_.get())); in SetUp()
506 EXPECT_TRUE(channel_->SetCapturer(kSsrc + 2, video_capturer_2_.get())); in SetUpSecondStreamWithNoRecv()
726 EXPECT_TRUE(channel_->SetCapturer(kSsrc, video_capturer_.get())); in SetSend()
941 EXPECT_TRUE(channel_->SetCapturer(5678, capturer.get())); in GetStatsMultipleSendStreams()
965 EXPECT_TRUE(channel_->SetCapturer(5678, NULL)); in GetStatsMultipleSendStreams()
998 EXPECT_TRUE(channel_->SetCapturer(999u, video_capturer_.get())); in SetSendSsrcAfterSetCodecs()
1065 EXPECT_TRUE(channel_->SetCapturer(789u, video_capturer_.get())); in AddRemoveSendStreams()
1294 EXPECT_TRUE(channel_->SetCapturer(kSsrc, capturer.get())); in AddRemoveCapturer()
1309 EXPECT_TRUE(channel_->SetCapturer(kSsrc, NULL)); in AddRemoveCapturer()
1340 EXPECT_TRUE(channel_->SetCapturer(kSsrc, NULL)); in RemoveCapturerWithoutAdd()
[all …]
Dhybridvideoengine_unittest.cc473 TEST_F(HybridVideoEngineTest, SetCapturer) { in TEST_F() argument
478 EXPECT_TRUE(channel_->SetCapturer(0, &fake_video_capturer)); in TEST_F()
479 EXPECT_TRUE(channel_->SetCapturer(0, NULL)); in TEST_F()
484 EXPECT_TRUE(channel_->SetCapturer(0, &fake_video_capturer)); in TEST_F()
485 EXPECT_TRUE(channel_->SetCapturer(0, NULL)); in TEST_F()
Dhybridvideoengine.cc222 bool HybridVideoMediaChannel::SetCapturer(uint32 ssrc, in SetCapturer() function in cricket::HybridVideoMediaChannel
226 ret = channel1_->SetCapturer(ssrc, capturer); in SetCapturer()
229 ret = channel2_->SetCapturer(ssrc, capturer); in SetCapturer()
Dhybridvideoengine.h84 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer);
Dfilemediaengine.h297 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer) { in SetCapturer() function
Dmediachannel.h1190 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer) = 0;
Dfakemediaengine.h564 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer) { in SetCapturer() function
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtcvideoengine2.h227 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer) OVERRIDE;
284 bool SetCapturer(VideoCapturer* capturer);
Dwebrtcvideoengine.h267 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer);
Dwebrtcvideoengine2.cc1218 bool WebRtcVideoChannel2::SetCapturer(uint32 ssrc, VideoCapturer* capturer) { in SetCapturer() function in cricket::WebRtcVideoChannel2
1226 return send_streams_[ssrc]->SetCapturer(capturer); in SetCapturer()
1523 bool WebRtcVideoChannel2::WebRtcVideoSendStream::SetCapturer( in SetCapturer() function in cricket::WebRtcVideoChannel2::WebRtcVideoSendStream
Dwebrtcvideoengine_unittest.cc1679 EXPECT_TRUE(channel_->SetCapturer(kSsrcs2[i], &capturer)); in TEST_F()
2309 EXPECT_TRUE(channel_->SetCapturer(kSsrc, NULL)); in TEST_F()
2316 EXPECT_TRUE(channel_->SetCapturer(kSsrc, video_capturer_.get())); in TEST_F()
Dwebrtcvideoengine.cc2010 SetCapturer(GetDefaultChannelSsrc(), NULL); in RemoveSendStream()
2725 bool WebRtcVideoMediaChannel::SetCapturer(uint32 ssrc, in SetCapturer() function in cricket::WebRtcVideoMediaChannel
/external/chromium_org/third_party/webrtc/video/
Dcall_perf_tests.cc435 void SetCapturer(test::FrameGeneratorCapturer* capturer) { in SetCapturer() function in webrtc::CaptureNtpTimeObserver
479 observer.SetCapturer(capturer.get()); in TestCaptureNtpTime()
Dvideo_send_stream_tests.cc973 void SetCapturer(test::FrameGeneratorCapturer* capturer) { in TEST_F() function in webrtc::TEST_F::PacketObserver
1026 observer.SetCapturer(frame_generator_capturer.get()); in TEST_F()
/external/chromium_org/third_party/libjingle/source/talk/session/media/
Dcall.cc523 if (!video_channel->SetCapturer(ssrc, capturer)) { in StartScreencast()
596 video_channel->SetCapturer(ssrc, NULL); in StopScreencastWithoutSendingUpdate()
Dchannel.h525 bool SetCapturer(uint32 ssrc, VideoCapturer* capturer);
Dchannel.cc1717 bool VideoChannel::SetCapturer(uint32 ssrc, VideoCapturer* capturer) { in SetCapturer() function in cricket::VideoChannel
1718 return InvokeOnWorker(Bind(&VideoMediaChannel::SetCapturer, in SetCapturer()
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Dwebrtcsession.cc1024 if (!video_channel_->SetCapturer(ssrc, camera)) { in SetCaptureDevice()