HomeSort by relevance Sort by last modified time
    Searched refs:capturer (Results 1 - 25 of 68) 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 117 - (RTCVideoSource *)videoSourceWithCapturer:(RTCVideoCapturer *)capturer
119 if (!capturer) {
123 self.nativeFactory->CreateVideoSource(capturer.capturer.get(),
  /external/chromium_org/content/renderer/media/
webrtc_audio_device_impl.cc 325 // the default capturer.
326 scoped_refptr<WebRtcAudioCapturer> capturer(GetDefaultCapturer());
327 if (!capturer.get())
330 capturer->SetVolume(volume);
338 // capturer.
340 scoped_refptr<WebRtcAudioCapturer> capturer(GetDefaultCapturer());
341 if (!capturer.get())
344 *volume = static_cast<uint32_t>(capturer->Volume());
371 scoped_refptr<WebRtcAudioCapturer> capturer(GetDefaultCapturer());
372 if (!capturer.get()
    [all...]
media_stream_source_extra_data.h 46 void SetAudioCapturer(WebRtcAudioCapturer* capturer) {
48 audio_capturer_ = capturer;
54 // capturer is supported. See issue crbug/262117.
mock_media_stream_registry.cc 38 cricket::VideoCapturer* capturer = NULL; local
39 return factory_->AddNativeVideoMediaTrack(track_id, &test_stream_, capturer);
webrtc_local_audio_track.cc 125 const scoped_refptr<WebRtcAudioCapturer>& capturer,
131 id, capturer, webaudio_source, track_source, constraints);
137 const scoped_refptr<WebRtcAudioCapturer>& capturer,
142 capturer_(capturer),
147 DCHECK(capturer.get() || webaudio_source);
167 scoped_refptr<WebRtcAudioCapturer> capturer; local
174 capturer = capturer_;
219 if (new_volume != 0 && capturer.get()) {
222 capturer->SetVolume(new_volume);
354 // capturer as its sink otherwise two streams in different clock will b
    [all...]
webaudio_capturer_source.h 47 void Start(WebRtcLocalAudioTrack* track, WebRtcAudioCapturer* capturer);
65 // A raw pointer to the capturer to get audio processing params like
webrtc_local_audio_track.h 50 const scoped_refptr<WebRtcAudioCapturer>& capturer,
78 // Method called by the capturer to deliver the capture data.
85 // Method called by the capturer to set the audio parameters used by source
97 const scoped_refptr<WebRtcAudioCapturer>& capturer,
144 // A vector of WebRtc VoE channels that the capturer sends data to.
media_stream_dependency_factory.cc 333 // TODO(xians): Create a new capturer for difference microphones when we
365 scoped_refptr<WebRtcAudioCapturer> capturer(
367 if (!capturer.get()) {
368 DLOG(WARNING) << "Failed to create the capturer for device "
377 source_data->SetAudioCapturer(capturer);
449 // Create a specific capturer for each WebAudio consumer.
462 scoped_refptr<WebRtcAudioCapturer> capturer; local
464 capturer = GetWebRtcAudioDevice()->GetDefaultCapturer();
468 capturer,
562 cricket::VideoCapturer* capturer) {
723 RtcVideoCapturer* capturer = new RtcVideoCapturer( local
931 scoped_refptr<WebRtcAudioCapturer> capturer = local
    [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 98 CreateVideoSourceParams(cricket::VideoCapturer* capturer,
100 : capturer(capturer),
103 cricket::VideoCapturer* capturer; member in struct:__anon11828::CreateVideoSourceParams
223 pdata->source = CreateVideoSource_s(pdata->capturer, pdata->constraints);
270 cricket::VideoCapturer* capturer,
273 VideoSource::Create(channel_manager_.get(), capturer, constraints));
338 cricket::VideoCapturer* capturer,
341 CreateVideoSourceParams params(capturer,
  /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>());
  /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/app/webrtc/java/src/org/webrtc/
PeerConnectionFactory.java 78 VideoCapturer capturer, MediaConstraints constraints) {
80 nativeFactory, capturer.takeNativeVideoCapturer(), constraints));
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channelmanager.h 148 VideoCapturer* capturer);
155 // Create capturer based on what has been set in SetCaptureDevice().
178 bool RegisterVideoProcessor(VideoCapturer* capturer,
180 bool UnregisterVideoProcessor(VideoCapturer* capturer,
205 bool AddVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
206 bool RemoveVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
225 // TODO(hellner): Remove this function once the engine capturer has been
270 void OnVideoCaptureStateChange(VideoCapturer* capturer,
272 bool RegisterVideoProcessor_w(VideoCapturer* capturer,
274 bool UnregisterVideoProcessor_w(VideoCapturer* capturer,
    [all...]
channelmanager.cc 65 : capturer(c),
67 cricket::VideoCapturer* capturer; member in struct:cricket::CaptureStateParams
312 LOG(LS_WARNING) << "failed to delete video capturer";
601 VideoCapturer* capturer) {
602 if (capturer == NULL) {
609 return capturer->GetId() == device.id;
678 VideoCapturer* capturer = device_manager_->CreateVideoCapturer(device); local
679 if (capturer && default_video_encoder_config_.max_codec.id != 0) {
683 capturer->UpdateAspectRatio(
687 return capturer;
    [all...]
channelmanager_unittest.cc 209 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* frame) {
213 GetCapturerFrameSize(VideoCapturer* capturer) : width(0), height(0) {
214 capturer->SignalVideoFrame.connect(this,
216 static_cast<FakeVideoCapturer*>(capturer)->CaptureFrame();
227 // A capturer created before the default encoder config is set will have no
229 VideoCapturer* capturer = cm_->CreateVideoCapturer(); local
230 ASSERT_TRUE(capturer != NULL);
231 EXPECT_EQ(CS_RUNNING, capturer->Start(format));
232 GetCapturerFrameSize size(capturer);
235 delete capturer;
    [all...]
  /external/chromium_org/content/browser/renderer_host/media/
desktop_capture_device.cc 53 scoped_ptr<webrtc::DesktopCapturer> capturer);
129 scoped_ptr<webrtc::DesktopCapturer> capturer)
131 desktop_capturer_(capturer.Pass()),
193 // If the |frame| generated by the screen capturer is inverted then we need
251 // This capturer always outputs ARGB, non-interlaced.
364 scoped_ptr<webrtc::DesktopCapturer> capturer; local
371 capturer.reset(new webrtc::DesktopAndCursorComposer(
382 capturer.reset(new webrtc::DesktopAndCursorComposer(
395 if (capturer)
396 result.reset(new DesktopCaptureDevice(task_runner, capturer.Pass()))
    [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/media/webrtc/
webrtcvideoengine.h 265 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer);
291 void SendFrame(VideoCapturer* capturer, const VideoFrame* frame);
296 void OnLocalFrame(VideoCapturer* capturer, const VideoFrame* frame) {
297 SendFrame(0u, frame, capturer->IsScreencast());
299 void OnLocalFrameFormat(VideoCapturer* capturer, const VideoFormat* format) {
373 // Get the number of the send channels |capturer| registered with.
374 int GetSendChannelNum(VideoCapturer* capturer);
408 // Connect |capturer| to WebRtcVideoMediaChannel if it is only registered
410 void MaybeConnectCapturer(VideoCapturer* capturer);
411 // Disconnect |capturer| from WebRtcVideoMediaChannel if it is only registere
    [all...]

Completed in 1239 milliseconds

1 2 3