HomeSort by relevance Sort by last modified time
    Searched refs:capturer_ (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturer_unittest.cc 48 capturer_(new cricket::WebRtcVideoCapturer(factory_)),
49 listener_(capturer_.get()) {
61 FakeWebRtcVcmFactory* factory_; // owned by capturer_
62 talk_base::scoped_ptr<cricket::WebRtcVideoCapturer> capturer_; member in class:WebRtcVideoCapturerTest
67 EXPECT_EQ("", capturer_->GetId());
68 EXPECT_TRUE(capturer_->GetSupportedFormats()->empty());
69 EXPECT_TRUE(capturer_->GetCaptureFormat() == NULL);
70 EXPECT_FALSE(capturer_->IsRunning());
74 EXPECT_FALSE(capturer_->Init(cricket::Device("bad-name", "bad-id")));
75 EXPECT_FALSE(capturer_->IsRunning())
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
mutedvideocapturer_unittest.cc 38 capturer_.SignalVideoFrame
43 EXPECT_EQ(capturer, &capturer_);
50 return (received_width_ == capturer_.GetCaptureFormat()->width) &&
51 (received_height_ == capturer_.GetCaptureFormat()->height);
54 cricket::MutedVideoCapturer capturer_; member in class:MutedVideoCapturerTest
65 EXPECT_TRUE(capturer_.GetBestCaptureFormat(format, &best_format));
73 EXPECT_FALSE(capturer_.IsScreencast());
78 EXPECT_TRUE(capturer_.GetPreferredFourccs(&fourccs));
80 EXPECT_TRUE(capturer_.GetPreferredFourccs(&fourccs));
88 EXPECT_EQ(capturer_.Start(format), cricket::CS_RUNNING)
    [all...]
videocapturer_unittest.cc 65 capturer_.SignalVideoFrame.connect(this, &VideoCapturerTest::OnVideoFrame);
66 capturer_.SignalStateChange.connect(this,
88 cricket::FakeVideoCapturer capturer_; member in class:VideoCapturerTest
97 EXPECT_EQ(cricket::CS_RUNNING, capturer_.Start(cricket::VideoFormat(
102 EXPECT_TRUE(capturer_.IsRunning());
105 capturer_.Stop();
108 capturer_.Stop();
114 EXPECT_EQ(cricket::CS_RUNNING, capturer_.Start(cricket::VideoFormat(
119 EXPECT_TRUE(capturer_.IsRunning());
122 EXPECT_TRUE(capturer_.Restart(cricket::VideoFormat
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
filevideocapturer_unittest.cc 44 capturer_.reset(new cricket::FileVideoCapturer);
48 return capturer_->Init(cricket::GetTestFilePath(filename));
85 talk_base::scoped_ptr<cricket::FileVideoCapturer> capturer_; member in class:__anon13825::FileVideoCapturerTest
90 EXPECT_EQ("", capturer_->GetId());
91 EXPECT_TRUE(capturer_->GetSupportedFormats()->empty());
92 EXPECT_EQ(NULL, capturer_->GetCaptureFormat());
93 EXPECT_FALSE(capturer_->IsRunning());
102 EXPECT_NE("", capturer_->GetId());
103 EXPECT_TRUE(NULL != capturer_->GetSupportedFormats());
104 EXPECT_EQ(1U, capturer_->GetSupportedFormats()->size())
    [all...]
filevideocapturer.cc 107 : capturer_(capturer),
116 if (capturer_ && capturer_->ReadFrame(true, &waiting_time_ms)) {
126 if (capturer_ && capturer_->ReadFrame(false, &waiting_time_ms)) {
137 FileVideoCapturer* capturer_; member in class:cricket::FileVideoCapturer::FileReadThread
  /external/chromium_org/content/renderer/media/
webrtc_local_audio_track.cc 30 capturer_(capturer),
69 capturer = capturer_;
173 if (capturer_.get())
174 capturer_->AddTrack(this);
180 if (!capturer_.get())
183 capturer_->RemoveTrack(this);
186 // setting the |capturer_| to NULL.
191 capturer_ = NULL;
webrtc_local_audio_track_unittest.cc 34 : capturer_(capturer),
38 audio_bus_ = media::AudioBus::Create(capturer_->audio_parameters());
51 capturer_.get());
74 scoped_refptr<WebRtcAudioCapturer> capturer_; member in class:content::__anon10429::FakeAudioThread
128 capturer_ = WebRtcAudioCapturer::CreateCapturer();
130 EXPECT_CALL(*capturer_source_.get(), Initialize(_, capturer_.get(), 0))
132 capturer_->SetCapturerSource(capturer_source_,
140 audio_thread_.reset(new FakeAudioThread(capturer_));
150 scoped_refptr<WebRtcAudioCapturer> capturer_; member in class:content::WebRtcLocalAudioTrackTest
161 WebRtcLocalAudioTrack::Create(std::string(), capturer_, NULL)
    [all...]
webaudio_capturer_source.h 57 WebRtcAudioCapturer* capturer_; member in class:content::WebAudioCapturerSource
webaudio_capturer_source.cc 22 : capturer_(capturer),
39 capturer_->SetCapturerSource(this, channel_layout, sample_rate);
webrtc_local_audio_track.h 93 scoped_refptr<WebRtcAudioCapturer> capturer_; member in class:content::WebRtcLocalAudioTrack
96 // TODO(xians): merge |track_source_| to |capturer_|.
mock_media_stream_dependency_factory.h 44 scoped_ptr<cricket::VideoCapturer> capturer_; member in class:content::MockVideoSource
mock_media_stream_dependency_factory.cc 161 capturer_.reset(capturer);
165 return capturer_.get();
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
localvideosource_unittest.cc 136 capturer_ = new TestVideoCapturer();
145 // VideoSource take ownership of |capturer_|
147 capturer_,
151 EXPECT_EQ(capturer_, local_source_->GetVideoCapturer());
158 TestVideoCapturer* capturer_; // Raw pointer. Owned by local_source_. member in class:LocalVideoSourceTest
175 ASSERT_TRUE(capturer_->CaptureFrame());
178 capturer_->Stop();
190 capturer_->SignalStateChange(capturer_, cricket::CS_FAILED);
206 const cricket::VideoFormat* format = capturer_->GetCaptureFormat()
    [all...]
  /external/chromium_org/remoting/host/
video_scheduler.cc 45 capturer_(capturer.Pass()),
55 DCHECK(capturer_);
97 if (!capturer_)
172 capturer_->SetMouseShapeObserver(this);
173 capturer_->Start(this);
186 capturer_.reset();
204 // If we are stopping (|capturer_| is NULL), or paused, then don't capture.
205 if (!capturer_ || is_paused_)
228 capturer_->Capture(webrtc::DesktopRegion());
video_scheduler.h 164 scoped_ptr<webrtc::ScreenCapturer> capturer_; member in class:remoting::VideoScheduler

Completed in 1774 milliseconds