/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
D | videoengine_unittest.h | 475 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 …]
|
D | hybridvideoengine_unittest.cc | 473 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()
|
D | hybridvideoengine.cc | 222 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()
|
D | hybridvideoengine.h | 84 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer);
|
D | filemediaengine.h | 297 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer) { in SetCapturer() function
|
D | mediachannel.h | 1190 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer) = 0;
|
D | fakemediaengine.h | 564 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer) { in SetCapturer() function
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
D | webrtcvideoengine2.h | 227 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer) OVERRIDE; 284 bool SetCapturer(VideoCapturer* capturer);
|
D | webrtcvideoengine.h | 267 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer);
|
D | webrtcvideoengine2.cc | 1218 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
|
D | webrtcvideoengine_unittest.cc | 1679 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()
|
D | webrtcvideoengine.cc | 2010 SetCapturer(GetDefaultChannelSsrc(), NULL); in RemoveSendStream() 2725 bool WebRtcVideoMediaChannel::SetCapturer(uint32 ssrc, in SetCapturer() function in cricket::WebRtcVideoMediaChannel
|
/external/chromium_org/third_party/webrtc/video/ |
D | call_perf_tests.cc | 435 void SetCapturer(test::FrameGeneratorCapturer* capturer) { in SetCapturer() function in webrtc::CaptureNtpTimeObserver 479 observer.SetCapturer(capturer.get()); in TestCaptureNtpTime()
|
D | video_send_stream_tests.cc | 973 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/ |
D | call.cc | 523 if (!video_channel->SetCapturer(ssrc, capturer)) { in StartScreencast() 596 video_channel->SetCapturer(ssrc, NULL); in StopScreencastWithoutSendingUpdate()
|
D | channel.h | 525 bool SetCapturer(uint32 ssrc, VideoCapturer* capturer);
|
D | channel.cc | 1717 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/ |
D | webrtcsession.cc | 1024 if (!video_channel_->SetCapturer(ssrc, camera)) { in SetCaptureDevice()
|