| * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| * Use of this source code is governed by a BSD-style license |
| * that can be found in the LICENSE file in the root of the source |
| * tree. An additional intellectual property rights grant can be found |
| * in the file PATENTS. All contributing project authors may |
| * be found in the AUTHORS file in the root of the source tree. |
| #include "video_capture_ds.h" |
| #include "video_capture_mf.h" |
| namespace videocapturemodule { |
| VideoCaptureModule::DeviceInfo* VideoCaptureImpl::CreateDeviceInfo( |
| // TODO(tommi): Use the Media Foundation version on Vista and up. |
| return DeviceInfoDS::Create(id); |
| VideoCaptureModule* VideoCaptureImpl::Create(const int32_t id, |
| // TODO(tommi): Use Media Foundation implementation for Vista and up. |
| RefCountImpl<VideoCaptureDS>* capture = new RefCountImpl<VideoCaptureDS>(id); |
| if (capture->Init(id, device_id) != 0) { |
| } // namespace videocapturemodule |