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

1 2 3

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCVideoCapturer+Internal.h 34 @property(nonatomic, assign, readonly) const talk_base::scoped_ptr<cricket::VideoCapturer> &capturer; variable
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);
70 // TODO(hughv): When capturer is implemented, this needs to return
72 - (const talk_base::scoped_ptr<cricket::VideoCapturer> &)capturer {
RTCPeerConnectionFactory.mm 115 - (RTCVideoSource *)videoSourceWithCapturer:(RTCVideoCapturer *)capturer
117 if (!capturer) {
121 self.nativeFactory->CreateVideoSource(capturer.capturer.get(),
  /external/chromium_org/content/renderer/media/
webrtc_local_audio_track.cc 17 const scoped_refptr<WebRtcAudioCapturer>& capturer,
21 id, capturer, track_source);
27 const scoped_refptr<WebRtcAudioCapturer>& capturer,
30 capturer_(capturer),
32 need_audio_processing_(!capturer->device_id().empty()) {
33 // The capturer with a valid device id is using microphone as source,
35 DCHECK(capturer.get());
57 scoped_refptr<WebRtcAudioCapturer> capturer; local
69 capturer = capturer_;
81 if (new_volume != 0 && capturer.get()
    [all...]
webrtc_audio_device_impl.cc 337 // capturer whether AGC is supported or not.
364 // the default capturer.
365 scoped_refptr<WebRtcAudioCapturer> capturer(GetDefaultCapturer());
366 if (!capturer.get())
369 capturer->SetVolume(volume);
377 // capturer.
379 scoped_refptr<WebRtcAudioCapturer> capturer(GetDefaultCapturer());
380 if (!capturer.get())
383 *volume = static_cast<uint32_t>(capturer->Volume());
409 scoped_refptr<WebRtcAudioCapturer> capturer(GetDefaultCapturer())
    [all...]
mock_media_stream_registry.cc 38 cricket::VideoCapturer* capturer = NULL; local
39 return factory_->AddNativeVideoMediaTrack(track_id, &test_stream_, capturer);
webrtc_local_audio_track.h 39 const scoped_refptr<WebRtcAudioCapturer>& capturer,
59 // Method called by the capturer to deliever the capture data.
66 // Method called by the capturer to set the audio parameters used by source
73 const scoped_refptr<WebRtcAudioCapturer>& capturer,
111 // A vector of WebRtc VoE channels that the capturer sends datat to.
media_stream_dependency_factory.cc 318 // TODO(xians): Create a new capturer for difference microphones when we
321 scoped_refptr<WebRtcAudioCapturer> capturer(
323 if (!capturer.get()) {
324 DLOG(WARNING) << "Failed to create the capturer for device "
392 scoped_refptr<WebRtcAudioCapturer> capturer; local
396 // Create a specific capturer for each WebAudio consumer.
397 capturer = CreateWebAudioSource(&source);
414 if (!capturer.get() && GetWebRtcAudioDevice())
415 capturer = GetWebRtcAudioDevice()->GetDefaultCapturer();
419 capturer,
584 RtcVideoCapturer* capturer = new RtcVideoCapturer( local
798 scoped_refptr<WebRtcAudioCapturer> capturer; local
    [all...]
webaudio_capturer_source.h 34 explicit WebAudioCapturerSource(WebRtcAudioCapturer* capturer);
37 // setFormat() is called early on, so that we can configure the capturer.
webaudio_capturer_source.cc 21 WebAudioCapturerSource::WebAudioCapturerSource(WebRtcAudioCapturer* capturer)
22 : capturer_(capturer),
media_stream_dependency_factory.h 106 // based on the desired |track_id| and |capturer|.
109 cricket::VideoCapturer* capturer);
170 const scoped_refptr<WebRtcAudioCapturer>& capturer,
179 // the video source using |capturer|.
182 cricket::VideoCapturer* capturer);
187 // Returns a new capturer or existing capturer based on the |render_view_id|
189 // it reuses existing capture if any; otherwise it creates a new capturer.
mock_media_stream_dependency_factory.h 33 // Set the video capturer.
34 void SetVideoCapturer(cricket::VideoCapturer* capturer);
138 cricket::VideoCapturer* capturer) OVERRIDE;
141 const scoped_refptr<WebRtcAudioCapturer>& capturer,
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
localvideosource.h 42 // The state is set depending on the result of starting the capturer.
43 // If the constraint can't be met or the capturer fails to start, the state
60 // LocalVideoSource take ownership of |capturer|.
65 cricket::VideoCapturer* capturer,
74 // |output| will be served video frames as long as the underlying capturer
81 cricket::VideoCapturer* capturer);
86 void OnStateChange(cricket::VideoCapturer* capturer,
peerconnectionfactory.cc 98 CreateVideoSourceParams(cricket::VideoCapturer* capturer,
100 : capturer(capturer),
103 cricket::VideoCapturer* capturer; member in struct:__anon13758::CreateVideoSourceParams
223 pdata->source = CreateVideoSource_s(pdata->capturer, pdata->constraints);
270 cricket::VideoCapturer* capturer,
273 LocalVideoSource::Create(channel_manager_.get(), capturer,
339 cricket::VideoCapturer* capturer,
342 CreateVideoSourceParams params(capturer,
  /external/chromium_org/remoting/host/
video_scheduler_unittest.cc 76 void StartVideoScheduler(scoped_ptr<webrtc::ScreenCapturer> capturer);
117 scoped_ptr<webrtc::ScreenCapturer> capturer) {
122 capturer.Pass(),
148 // This test mocks capturer, encoder and network layer to simulate one capture
153 scoped_ptr<webrtc::MockScreenCapturer> capturer(
156 EXPECT_CALL(*capturer, Start(_))
163 // First the capturer is called.
164 Expectation capturer_capture = EXPECT_CALL(*capturer, Capture(_))
185 StartVideoScheduler(capturer.PassAs<webrtc::ScreenCapturer>());
  /external/chromium_org/content/browser/renderer_host/media/
desktop_capture_device.cc 34 scoped_ptr<webrtc::DesktopCapturer> capturer);
116 scoped_ptr<webrtc::DesktopCapturer> capturer)
118 desktop_capturer_(capturer.Pass()),
344 scoped_ptr<webrtc::DesktopCapturer> capturer; local
351 capturer.reset(webrtc::ScreenCapturer::CreateWithXDamage(true));
355 capturer.reset(
358 capturer.reset(webrtc::ScreenCapturer::Create());
362 task_runner, capturer.Pass()));
366 scoped_ptr<webrtc::WindowCapturer> capturer(
369 if (!capturer || !capturer->SelectWindow(source.id))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
devicemanager.cc 183 // If |name| is a valid name for a file, return a file video capturer device.
208 // TODO(hellner): Throw out the creation of a file video capturer once the
211 FileVideoCapturer* capturer = new FileVideoCapturer;
212 if (!capturer->Init(device)) {
213 delete capturer;
216 LOG(LS_INFO) << "Created file video capturer " << device.name;
217 capturer->set_repeat(talk_base::kForever);
218 return capturer;
220 VideoCapturer* capturer = device_video_capturer_factory_->Create(device);
221 if (!capturer) {
    [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/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 146 VideoCapturer* capturer);
153 // Create capturer based on what has been set in SetCaptureDevice().
166 // Sets the externally provided video capturer. The ssrc is the ssrc of the
167 // (video) stream for which the video capturer should be set.
168 bool SetVideoCapturer(VideoCapturer* capturer);
179 bool RegisterVideoProcessor(VideoCapturer* capturer,
181 bool UnregisterVideoProcessor(VideoCapturer* capturer,
206 bool AddVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
207 bool RemoveVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
226 // TODO(hellner): Remove this function once the engine capturer has bee
    [all...]
channelmanager.cc 65 : capturer(c),
67 cricket::VideoCapturer* capturer; member in struct:cricket::CaptureStateParams
311 LOG(LS_WARNING) << "failed to delete video capturer";
596 VideoCapturer* capturer) {
597 if (capturer == NULL) {
604 return capturer->GetId() == device.id;
745 // voice and video engines to do the real work. Once the capturer refactoring
746 // is done, we will access the capturer using the ssrc (similar to how the
748 bool ChannelManager::RegisterVideoProcessor(VideoCapturer* capturer,
752 capturer, processor))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
PeerConnectionFactory.java 78 VideoCapturer capturer, MediaConstraints constraints) {
80 nativeFactory, capturer.nativeVideoCapturer, constraints));
  /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/media/webrtc/
webrtcvideoengine.h 261 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer);
285 void SendFrame(VideoCapturer* capturer, const VideoFrame* frame);
289 void AdaptAndSendFrame(VideoCapturer* capturer, const VideoFrame* frame);
292 void OnLocalFrame(VideoCapturer* capturer, const VideoFrame* frame) {
293 SendFrame(0u, frame, capturer->IsScreencast());
295 void OnLocalFrameFormat(VideoCapturer* capturer, const VideoFormat* format) {

Completed in 826 milliseconds

1 2 3