HomeSort by relevance Sort by last modified time
    Searched refs:capturer (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturerfactory.cc 35 rtc::scoped_ptr<WebRtcVideoCapturer> capturer(
37 if (!capturer->Init(device)) {
40 return capturer.release();
  /external/chromium_org/remoting/host/
host_extension_session.cc 13 scoped_ptr<webrtc::DesktopCapturer>* capturer) {
host_extension_session.h 32 // modify the pipeline (see below). They may replace or wrap |capturer| and/or
34 // If either |capturer| or |encoder| are reset then the video pipeline is not
37 scoped_ptr<webrtc::DesktopCapturer>* capturer);
shaped_desktop_capturer_unittest.cc 59 ShapedDesktopCapturer capturer(
62 capturer.Start(this);
63 capturer.Capture(webrtc::DesktopRegion());
video_scheduler_unittest.cc 135 scoped_ptr<webrtc::DesktopCapturer> capturer,
195 scoped_ptr<webrtc::DesktopCapturer> capturer,
202 capturer.Pass(),
267 // This test mocks capturer, encoder and network layer to simulate one capture
272 scoped_ptr<webrtc::MockScreenCapturer> capturer(
289 EXPECT_CALL(*capturer, Start(_))
292 // First the capturer is called.
293 Expectation capturer_capture = EXPECT_CALL(*capturer, Capture(_))
320 StartVideoScheduler(capturer.PassAs<webrtc::DesktopCapturer>(),
325 // Otherwise, a lingering frame capture might attempt to trigger a capturer
    [all...]
cast_video_capturer_adapter.h 37 scoped_ptr<webrtc::DesktopCapturer> capturer);
host_extension_session_manager.h 49 void OnCreateVideoCapturer(scoped_ptr<webrtc::DesktopCapturer>* capturer);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCVideoCapturer+Internal.h 36 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer;
RTCVideoCapturer.mm 52 rtc::scoped_ptr<cricket::VideoCapturer> capturer(
55 [[RTCVideoCapturer alloc] initWithCapturer:capturer.release()];
63 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer {
65 _capturer.reset(capturer);
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
mouse_cursor_monitor_unittest.cc 65 scoped_ptr<MouseCursorMonitor> capturer(MouseCursorMonitor::CreateForScreen(
67 assert(capturer.get());
68 capturer->Init(this, MouseCursorMonitor::SHAPE_AND_POSITION);
69 capturer->Capture();
101 scoped_ptr<MouseCursorMonitor> capturer(
104 assert(capturer.get());
106 capturer->Init(this, MouseCursorMonitor::SHAPE_AND_POSITION);
107 capturer->Capture();
116 scoped_ptr<MouseCursorMonitor> capturer(MouseCursorMonitor::CreateForScreen(
118 assert(capturer.get())
    [all...]
  /external/chromium_org/third_party/webrtc/test/
frame_generator_capturer.cc 30 FrameGeneratorCapturer* capturer = new FrameGeneratorCapturer( local
32 if (!capturer->Init()) {
33 delete capturer;
37 return capturer;
47 FrameGeneratorCapturer* capturer = new FrameGeneratorCapturer( local
52 if (!capturer->Init()) {
53 delete capturer;
57 return capturer;
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
devicemanager.cc 158 // return a fake video capturer device.
193 VideoCapturer* capturer = MaybeConstructFakeVideoCapturer(device); local
194 if (capturer) {
195 return capturer;
199 LOG(LS_ERROR) << "No video capturer factory for devices.";
202 capturer = video_device_capturer_factory_->Create(device);
203 if (!capturer) {
209 capturer->set_enable_camera_list(has_max);
211 capturer->ConstrainSupportedFormats(video_format);
213 return capturer;
221 FileVideoCapturer* capturer = new FileVideoCapturer; local
232 YuvFramesCapturer* capturer = new YuvFramesCapturer(); local
    [all...]
  /external/chromium_org/content/renderer/media/
media_stream_audio_source.h 35 void SetAudioCapturer(const scoped_refptr<WebRtcAudioCapturer>& capturer) {
37 audio_capturer_ = capturer;
webrtc_audio_device_impl.cc 367 // the default capturer.
368 scoped_refptr<WebRtcAudioCapturer> capturer(GetDefaultCapturer());
369 if (!capturer.get())
372 capturer->SetVolume(volume);
380 // capturer.
382 scoped_refptr<WebRtcAudioCapturer> capturer(GetDefaultCapturer());
383 if (!capturer.get())
386 *volume = static_cast<uint32_t>(capturer->Volume());
413 scoped_refptr<WebRtcAudioCapturer> capturer(GetDefaultCapturer());
414 if (!capturer.get()
    [all...]
webrtc_local_audio_track.cc 21 const scoped_refptr<WebRtcAudioCapturer>& capturer,
25 capturer_(capturer),
27 DCHECK(capturer.get() || webaudio_source);
55 scoped_refptr<WebRtcAudioCapturer> capturer; local
60 capturer = capturer_;
90 if (new_volume != 0 && capturer.get() && !webaudio_source_.get()) {
93 capturer->SetVolume(new_volume);
196 // capturer as its sink otherwise two streams in different clock will be
webaudio_capturer_source.h 47 void Start(WebRtcLocalAudioTrack* track, WebRtcAudioCapturer* capturer);
65 // A raw pointer to the capturer to get audio processing params like
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
fakescreencapturerfactory.h 63 void OnWindowCapturerDestroyed(cricket::FakeVideoCapturer* capturer) {
64 if (capturer == window_capturer_) {
capturerenderadapter.h 76 // Callback for frames received from the capturer.
77 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* video_frame);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
videosource.h 43 // The state is set depending on the result of starting the capturer.
44 // If the constraint can't be met or the capturer fails to start, the state
61 // VideoSource take ownership of |capturer|.
66 cricket::VideoCapturer* capturer,
76 // |output| will be served video frames as long as the underlying capturer
83 cricket::VideoCapturer* capturer);
88 void OnStateChange(cricket::VideoCapturer* capturer,
remotevideocapturer_unittest.cc 74 void OnStateChange(VideoCapturer* capturer,
76 EXPECT_EQ(&capturer_, capturer);
80 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* frame) {
81 EXPECT_EQ(&capturer_, capturer);
peerconnectionfactory.cc 84 CreateVideoSourceParams(cricket::VideoCapturer* capturer,
86 : capturer(capturer),
89 cricket::VideoCapturer* capturer; member in struct:__anon17257::CreateVideoSourceParams
220 pdata->source = CreateVideoSource_s(pdata->capturer, pdata->constraints);
274 cricket::VideoCapturer* capturer,
277 VideoSource::Create(channel_manager_.get(), capturer, constraints));
337 cricket::VideoCapturer* capturer,
340 CreateVideoSourceParams params(capturer,
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
RTCPeerConnectionFactory.h 58 // Creates a RTCVideoSource. The new source takes ownership of |capturer|.
60 - (RTCVideoSource *)videoSourceWithCapturer:(RTCVideoCapturer *)capturer
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channelmanager.h 153 VideoCapturer* capturer);
160 // Create capturer based on what has been set in SetCaptureDevice().
162 // Create capturer from a screen.
183 bool RegisterVideoProcessor(VideoCapturer* capturer,
185 bool UnregisterVideoProcessor(VideoCapturer* capturer,
210 bool AddVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
211 bool RemoveVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
233 // TODO(hellner): Remove this function once the engine capturer has been
246 // capturer factories to use.
278 void OnVideoCaptureStateChange(VideoCapturer* capturer,
    [all...]
channelmanager.cc 65 : capturer(c),
67 cricket::VideoCapturer* capturer; member in struct:cricket::CaptureStateParams
314 LOG(LS_WARNING) << "failed to delete video capturer";
626 VideoCapturer* capturer) {
627 if (capturer == NULL) {
634 return capturer->GetId() == device.id;
703 VideoCapturer* capturer = device_manager_->CreateVideoCapturer(device); local
704 if (capturer && default_video_encoder_config_.max_codec.id != 0) {
708 capturer->UpdateAspectRatio(
712 return capturer;
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/
vie_base_impl.cc 91 ViECapturer* capturer = is.Capture(provider->Id()); local
92 assert(capturer);
93 capturer->RegisterCpuOveruseObserver(observer);
115 ViECapturer* capturer = is.Capture(provider->Id()); local
116 if (capturer) {
117 capturer->SetCpuOveruseOptions(options);
138 ViECapturer* capturer = is.Capture(provider->Id()); local
139 if (capturer) {
140 capturer->GetCpuOveruseMetrics(metrics);

Completed in 383 milliseconds

1 2 3 4