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

1 2 3 4

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCVideoCapturer+Internal.h 36 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer;
RTCVideoCapturer.mm 52 talk_base::scoped_ptr<cricket::VideoCapturer> capturer(
55 [[RTCVideoCapturer alloc] initWithCapturer:capturer.release()];
63 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer {
65 _capturer.reset(capturer);
RTCPeerConnectionFactory.mm 110 - (RTCVideoSource*)videoSourceWithCapturer:(RTCVideoCapturer*)capturer
112 if (!capturer) {
116 self.nativeFactory->CreateVideoSource([capturer takeNativeCapturer],
  /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/content/renderer/media/
media_stream_audio_source.h 35 void SetAudioCapturer(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);
54 scoped_refptr<WebRtcAudioCapturer> capturer; local
59 capturer = capturer_;
89 if (new_volume != 0 && capturer.get() && !webaudio_source_) {
92 capturer->SetVolume(new_volume);
195 // 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/devices/
devicemanager.cc 180 // return a fake video capturer device.
215 VideoCapturer* capturer = ConstructFakeVideoCapturer(device); local
216 if (capturer) {
217 return capturer;
220 capturer = device_video_capturer_factory_->Create(device);
221 if (!capturer) {
227 capturer->set_enable_camera_list(has_max);
229 capturer->ConstrainSupportedFormats(video_format);
231 return capturer;
236 // TODO(hellner): Throw out the creation of a file video capturer once th
239 FileVideoCapturer* capturer = new FileVideoCapturer; local
250 YuvFramesCapturer* capturer = new YuvFramesCapturer(); local
    [all...]
devicemanager_unittest.cc 381 scoped_ptr<cricket::VideoCapturer> capturer(dm->CreateWindowCapturer(
383 EXPECT_FALSE(capturer.get() == NULL);
384 // TODO(hellner): creating a window capturer and immediately deleting it
404 scoped_ptr<cricket::VideoCapturer> capturer(dm->CreateDesktopCapturer(
406 EXPECT_FALSE(capturer.get() == NULL);
413 scoped_ptr<cricket::VideoCapturer> capturer(
416 capturer->set_enable_camera_list(true);
417 EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &best_format));
423 scoped_ptr<cricket::VideoCapturer> capturer(
426 capturer->set_enable_camera_list(true)
    [all...]
  /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 83 CreateVideoSourceParams(cricket::VideoCapturer* capturer,
85 : capturer(capturer),
88 cricket::VideoCapturer* capturer; member in struct:__anon16309::CreateVideoSourceParams
219 pdata->source = CreateVideoSource_s(pdata->capturer, pdata->constraints);
273 cricket::VideoCapturer* capturer,
276 VideoSource::Create(channel_manager_.get(), capturer, constraints));
336 cricket::VideoCapturer* capturer,
339 CreateVideoSourceParams params(capturer,
videosource.cc 153 // is supported by the capturer.
304 explicit FrameInputWrapper(cricket::VideoCapturer* capturer)
305 : capturer_(capturer) {
342 cricket::VideoCapturer* capturer,
345 ASSERT(capturer != NULL);
348 capturer));
354 cricket::VideoCapturer* capturer)
356 video_capturer_(capturer),
375 // The screen capturer can accept any resolution and we will derive the
378 // since desktop capturer does not respect the VideoFormat passed in
    [all...]
  /external/chromium_org/remoting/host/
video_scheduler_unittest.cc 77 void StartVideoScheduler(scoped_ptr<webrtc::ScreenCapturer> capturer);
118 scoped_ptr<webrtc::ScreenCapturer> capturer) {
123 capturer.Pass(),
149 // This test mocks capturer, encoder and network layer to simulate one capture
154 scoped_ptr<webrtc::MockScreenCapturer> capturer(
157 EXPECT_CALL(*capturer, Start(_))
163 // First the capturer is called.
164 Expectation capturer_capture = EXPECT_CALL(*capturer, Capture(_))
185 StartVideoScheduler(capturer.PassAs<webrtc::ScreenCapturer>());
shaped_screen_capturer_unittest.cc 90 ShapedScreenCapturer capturer(
93 capturer.Start(this);
94 capturer.Capture(webrtc::DesktopRegion());
  /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);
141 ViECapturer* capturer = is.Capture(provider->Id()); local
142 if (capturer) {
144 capturer->GetCpuOveruseMetrics(&metrics);
169 ViECapturer* capturer = is.Capture(provider->Id()) local
    [all...]
  /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 151 VideoCapturer* capturer);
158 // Create capturer based on what has been set in SetCaptureDevice().
181 bool RegisterVideoProcessor(VideoCapturer* capturer,
183 bool UnregisterVideoProcessor(VideoCapturer* capturer,
208 bool AddVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
209 bool RemoveVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
231 // TODO(hellner): Remove this function once the engine capturer has been
273 void OnVideoCaptureStateChange(VideoCapturer* capturer,
275 bool RegisterVideoProcessor_w(VideoCapturer* capturer,
277 bool UnregisterVideoProcessor_w(VideoCapturer* capturer,
    [all...]
channelmanager.cc 65 : capturer(c),
67 cricket::VideoCapturer* capturer; member in struct:cricket::CaptureStateParams
316 LOG(LS_WARNING) << "failed to delete video capturer";
628 VideoCapturer* capturer) {
629 if (capturer == NULL) {
636 return capturer->GetId() == device.id;
705 VideoCapturer* capturer = device_manager_->CreateVideoCapturer(device); local
706 if (capturer && default_video_encoder_config_.max_codec.id != 0) {
710 capturer->UpdateAspectRatio(
714 return capturer;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
capturerenderadapter.h 76 // Callback for frames received from the capturer.
77 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* video_frame);
mutedvideocapturer_unittest.cc 41 void OnVideoFrame(cricket::VideoCapturer* capturer,
43 EXPECT_EQ(capturer, &capturer_);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
PeerConnectionFactory.java 82 VideoCapturer capturer, MediaConstraints constraints) {
84 nativeFactory, capturer.takeNativeVideoCapturer(), constraints));
  /external/chromium_org/content/browser/media/capture/
desktop_capture_device.cc 58 scoped_ptr<webrtc::DesktopCapturer> capturer,
102 // The thread on which the capturer is running.
141 // The type of the capturer.
152 scoped_ptr<webrtc::DesktopCapturer> capturer,
156 desktop_capturer_(capturer.Pass()),
267 // If the |frame| generated by the screen capturer is inverted then we need
325 // This capturer always outputs ARGB, non-interlaced.
441 scoped_ptr<webrtc::DesktopCapturer> capturer; local
453 // The magnification capturer requires running on a dedicated UI thread.
464 capturer.reset(new webrtc::DesktopAndCursorComposer
    [all...]

Completed in 2626 milliseconds

1 2 3 4