Home
last modified time | relevance | path

Searched refs:capture_module (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/video_capture/ios/
Dvideo_capture_ios.mm49 RefCountImpl<VideoCaptureIos>* capture_module =
56 capture_module->_deviceUniqueId = new char[name_length + 1];
57 strncpy(capture_module->_deviceUniqueId, deviceUniqueIdUTF8, name_length + 1);
58 capture_module->_deviceUniqueId[name_length] = '\0';
60 capture_module->capture_device_ =
61 [[RTCVideoCaptureIosObjC alloc] initWithOwner:capture_module
62 captureId:capture_module->id_];
63 if (!capture_module->capture_device_) {
67 if (![capture_module->capture_device_ setCaptureDeviceByUniqueId:[
72 return capture_module;
/external/webrtc/talk/app/webrtc/test/
Dfakeaudiocapturemodule.cc79 rtc::scoped_refptr<FakeAudioCaptureModule> capture_module( in Create() local
81 if (!capture_module->Initialize()) { in Create()
84 return capture_module; in Create()
/external/webrtc/webrtc/modules/video_capture/test/
Dvideo_capture_unittest.cc262 void StartCapture(VideoCaptureModule* capture_module, in StartCapture() argument
264 ASSERT_EQ(0, capture_module->StartCapture(capability)); in StartCapture()
265 EXPECT_TRUE(capture_module->CaptureStarted()); in StartCapture()
268 EXPECT_EQ(0, capture_module->CaptureSettings(resulting_capability)); in StartCapture()