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

1 2 3 4 5 6

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
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 {
RTCVideoCapturer+Internal.h 34 @property(nonatomic, assign, readonly) const talk_base::scoped_ptr<cricket::VideoCapturer> &capturer; variable
36 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer;
  /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...]
rtc_video_capture_delegate.h 16 // Implements a simple reference counted video capturer that guarantees that
26 CAPTURE_STOPPED, // The capturer has been stopped or hasn't started yet.
27 CAPTURE_RUNNING, // The capturer has been started successfully and is now
29 CAPTURE_FAILED, // The capturer failed to start.
webrtc_audio_capturer.h 43 // Use to construct the audio capturer.
51 // the capturer is created for. Called on the main render thread.
62 // Add a audio track to the sinks of the capturer.
70 // Remove a audio track from the sinks of the capturer.
71 // If the track has been added to the capturer, it must call RemoveTrack()
99 // Audio parameters utilized by the audio capturer. Can be utilized by
101 // capturer.
117 // stopping the capturer will implicitly invalidate all its tracks.
145 // Reconfigures the capturer with a new capture parameters.
189 // The device this capturer is given permission to use
    [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_unittest.cc 36 FakeAudioThread(const scoped_refptr<WebRtcAudioCapturer>& capturer,
38 : capturer_(capturer),
41 DCHECK(capturer.get());
86 explicit MockCapturerSource(WebRtcAudioCapturer* capturer)
87 : capturer_(capturer) {}
180 // Creates a capturer and audio track, fakes its audio thread, and
182 // get data callback when the track is connected to the capturer but not when
183 // the track is disconnected from the capturer.
367 // Start one track and verify the capturer is correctly starting its source.
387 // Start/Stop tracks and verify the capturer is correctly starting/stoppin
    [all...]
media_stream_source_extra_data.h 46 void SetAudioCapturer(WebRtcAudioCapturer* capturer) {
48 audio_capturer_ = capturer;
54 // capturer is supported. See issue crbug/262117.
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...]
media_stream_dependency_factory.h 112 // based on the desired |track_id| and |capturer|.
115 cricket::VideoCapturer* capturer);
190 const scoped_refptr<WebRtcAudioCapturer>& capturer,
201 // the video source using |capturer|.
204 cricket::VideoCapturer* capturer);
209 // Returns a new capturer or existing capturer based on the |render_view_id|
211 // it reuses existing capture if any; otherwise it creates a new capturer.
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.
  /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/third_party/libjingle/source/talk/media/base/
videocapturer.h 48 // Current state of the capturer.
52 CS_STOPPED, // The capturer has been stopped or hasn't started yet.
53 CS_STARTING, // The capturer is in the process of starting. Note, it may
55 CS_RUNNING, // The capturer has been started successfully and is now
57 CS_PAUSED, // The capturer has been paused.
58 CS_FAILED, // The capturer failed to start.
59 CS_NO_DEVICE, // The capturer has no device and consequently failed to start.
97 // capturing. The subclasses implement the video capturer for various types of
101 // can be registered to the capturer or applied externally to the capturer
    [all...]
capturemanager.h 34 // class also provides APIs for attaching VideoRenderers to a specific capturer
35 // such that the VideoRenderers are fed frames directly from the capturer. In
75 // Possibly restarts the capturer. If |options| is set to kRequestRestart,
78 // kForceRestart, the capturer is restarted.
  /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>());
audio_capturer.h 31 // Stops the audio capturer, and frees the OS-specific audio capture
34 // Returns true if the audio capturer is running.
audio_capturer_linux.h 24 // Must be called to configure the capturer before the first capturer instance
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
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.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...]
  /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...]
filevideocapturer.h 31 // FileVideoCapturer, a subclass of VideoCapturer, is a simulated video capturer
50 // Utility class to record the frames captured by a video capturer into a file.
74 // Simulated video capturer that periodically reads frames from a file.
105 // Initializes the capturer with the given file.
108 // Initializes the capturer with the given device. This should only be used
147 int64 start_time_ns_; // Time when the file video capturer starts.
  /external/chromium/third_party/libjingle/source/talk/session/phone/
videocommon.h 161 // Result of video capturer start.
163 CR_SUCCESS, // The capturer starts successfully.
164 CR_PENDING, // The capturer is pending to start the capture device.
165 CR_FAILURE, // The capturer fails to start.
166 CR_NO_DEVICE, // The capturer has no device and fails to start.

Completed in 692 milliseconds

1 2 3 4 5 6