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

1 2

  /external/webrtc/webrtc/modules/video_capture/
video_capture_factory.h 11 // This file contains interfaces used for creating the VideoCaptureModule
27 static VideoCaptureModule* Create(const int32_t id,
33 static VideoCaptureModule* Create(const int32_t id,
36 static VideoCaptureModule::DeviceInfo* CreateDeviceInfo(
video_capture_factory.cc 18 VideoCaptureModule* VideoCaptureFactory::Create(const int32_t id,
23 return videocapturemodule::VideoCaptureImpl::Create(id, deviceUniqueIdUTF8);
27 VideoCaptureModule* VideoCaptureFactory::Create(const int32_t id,
29 return videocapturemodule::VideoCaptureImpl::Create(id, externalCapture);
32 VideoCaptureModule::DeviceInfo* VideoCaptureFactory::CreateDeviceInfo(
37 return videocapturemodule::VideoCaptureImpl::CreateDeviceInfo(id);
video_capture_impl.h 29 namespace videocapturemodule { namespace in namespace:webrtc
31 class VideoCaptureImpl: public VideoCaptureModule, public VideoCaptureExternal
41 static VideoCaptureModule* Create(const int32_t id,
50 static VideoCaptureModule* Create(const int32_t id,
140 } // namespace videocapturemodule
video_capture.h 20 class VideoCaptureModule: public RefCountedModule {
156 virtual ~VideoCaptureModule() {};
device_info_impl.h 22 namespace videocapturemodule namespace in namespace:webrtc
24 class DeviceInfoImpl: public VideoCaptureModule::DeviceInfo
66 } // namespace videocapturemodule
video_capture_impl.cc 28 namespace videocapturemodule namespace in namespace:webrtc
30 VideoCaptureModule* VideoCaptureImpl::Create(
398 } // namespace videocapturemodule
  /external/webrtc/talk/media/webrtc/
fakewebrtcvcmfactory.h 40 virtual webrtc::VideoCaptureModule* Create(int module_id,
48 virtual webrtc::VideoCaptureModule::DeviceInfo* CreateDeviceInfo(int id) {
51 virtual void DestroyDeviceInfo(webrtc::VideoCaptureModule::DeviceInfo* info) {
53 void OnDestroyed(webrtc::VideoCaptureModule* module) {
webrtcvideocapturer.h 51 virtual webrtc::VideoCaptureModule* Create(
53 virtual webrtc::VideoCaptureModule::DeviceInfo* CreateDeviceInfo(int id) = 0;
55 webrtc::VideoCaptureModule::DeviceInfo* info) = 0;
67 bool Init(webrtc::VideoCaptureModule* module);
98 webrtc::VideoCaptureModule* module_;
webrtcvideocapturer.cc 73 virtual webrtc::VideoCaptureModule* Create(int id, const char* device) {
76 virtual webrtc::VideoCaptureModule::DeviceInfo* CreateDeviceInfo(int id) {
79 virtual void DestroyDeviceInfo(webrtc::VideoCaptureModule::DeviceInfo* info) {
162 webrtc::VideoCaptureModule::DeviceInfo* info = factory_->CreateDeviceInfo(0);
229 bool WebRtcVideoCapturer::Init(webrtc::VideoCaptureModule* module) {
382 // possibly other implementations of WebRTC's VideoCaptureModule.
fakewebrtcvideocapturemodule.h 39 // Fake class for mocking out webrtc::VideoCaptureModule.
40 class FakeWebRtcVideoCaptureModule : public webrtc::VideoCaptureModule {
fakewebrtcdeviceinfo.h 36 // Fake class for mocking out webrtc::VideoCaptureModule::DeviceInfo.
37 class FakeWebRtcDeviceInfo : public webrtc::VideoCaptureModule::DeviceInfo {
  /external/webrtc/webrtc/modules/video_capture/external/
video_capture_external.cc 16 namespace videocapturemodule { namespace in namespace:webrtc
18 VideoCaptureModule* VideoCaptureImpl::Create(
26 } // namespace videocapturemodule
device_info_external.cc 16 namespace videocapturemodule { namespace in namespace:webrtc
46 VideoCaptureModule::DeviceInfo* VideoCaptureImpl::CreateDeviceInfo(
51 } // namespace videocapturemodule
  /external/webrtc/webrtc/modules/video_capture/windows/
video_capture_factory_windows.cc 16 namespace videocapturemodule { namespace in namespace:webrtc
19 VideoCaptureModule::DeviceInfo* VideoCaptureImpl::CreateDeviceInfo(
25 VideoCaptureModule* VideoCaptureImpl::Create(const int32_t id,
40 } // namespace videocapturemodule
  /external/webrtc/webrtc/modules/video_capture/ios/
video_capture_ios.h 19 namespace videocapturemodule { namespace in namespace:webrtc
25 static VideoCaptureModule* Create(const int32_t capture_id,
41 } // namespace videocapturemodule
video_capture_ios.mm 21 using namespace videocapturemodule;
23 VideoCaptureModule* VideoCaptureImpl::Create(const int32_t capture_id,
43 VideoCaptureModule* VideoCaptureIos::Create(const int32_t capture_id,
device_info_ios.mm 25 using namespace videocapturemodule;
41 VideoCaptureModule::DeviceInfo* VideoCaptureImpl::CreateDeviceInfo(
  /external/webrtc/webrtc/test/
vcm_capturer.h 44 VideoCaptureModule* vcm_;
vcm_capturer.cc 24 VideoCaptureModule::DeviceInfo* device_info =
90 // TODO(pbos): How do I destroy the VideoCaptureModule? This still leaves
  /external/webrtc/talk/media/devices/
mobiledevicemanager.cc 51 rtc::scoped_ptr<webrtc::VideoCaptureModule::DeviceInfo> info(
  /external/webrtc/webrtc/modules/video_capture/mac/qtkit/
video_capture_qtkit.h 26 namespace videocapturemodule namespace in namespace:webrtc
43 static void Destroy(VideoCaptureModule* module);
76 } // namespace videocapturemodule
  /external/webrtc/webrtc/modules/video_capture/test/
video_capture_unittest.cc 38 using webrtc::VideoCaptureModule;
242 rtc::scoped_refptr<VideoCaptureModule> OpenVideoCaptureDevice(
251 rtc::scoped_refptr<VideoCaptureModule> module(
262 void StartCapture(VideoCaptureModule* capture_module,
273 scoped_ptr<VideoCaptureModule::DeviceInfo> device_info_;
288 rtc::scoped_refptr<VideoCaptureModule> module(
336 rtc::scoped_refptr<VideoCaptureModule> module(
398 rtc::scoped_refptr<VideoCaptureModule> module1(
413 rtc::scoped_refptr<VideoCaptureModule> module2(
474 rtc::scoped_refptr<VideoCaptureModule> capture_module_
    [all...]
  /external/webrtc/webrtc/examples/peerconnection/client/
conductor.h 27 class VideoCaptureModule;
  /external/webrtc/webrtc/modules/video_capture/mac/
video_capture_mac.mm 36 namespace videocapturemodule
98 * Create/Destroy a VideoCaptureModule
112 VideoCaptureModule* VideoCaptureImpl::Create(
116 if (webrtc::videocapturemodule::CheckOSVersion() == false)
125 if (webrtc::videocapturemodule::CheckQTVersion() == false)
138 RefCountImpl<videocapturemodule::VideoCaptureMacQuickTime>*
140 new RefCountImpl<videocapturemodule::VideoCaptureMacQuickTime>(id);
172 RefCountImpl<videocapturemodule::VideoCaptureMacQTKit>* newCaptureModule =
173 new RefCountImpl<videocapturemodule::VideoCaptureMacQTKit>(id);
205 VideoCaptureModule::DeviceInfo
    [all...]
  /external/webrtc/webrtc/modules/video_capture/linux/
device_info_linux.cc 29 namespace videocapturemodule namespace in namespace:webrtc
31 VideoCaptureModule::DeviceInfo*
34 videocapturemodule::DeviceInfoLinux *deviceInfo =
35 new videocapturemodule::DeviceInfoLinux(id);
66 /* detect /dev/video [0-63]VideoCaptureModule entries */
338 } // namespace videocapturemodule

Completed in 108 milliseconds

1 2