OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_DEVICE_FACTORY_H_ | 5 #ifndef MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_DEVICE_FACTORY_H_ |
6 #define MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_DEVICE_FACTORY_H_ | 6 #define MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_DEVICE_FACTORY_H_ |
7 | 7 |
8 #include "base/threading/thread_checker.h" | 8 #include "base/threading/thread_checker.h" |
9 #include "media/video/capture/video_capture_device.h" | 9 #include "media/video/capture/video_capture_device.h" |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... |
31 void(scoped_ptr<media::VideoCaptureDevice::Names>)>& callback); | 31 void(scoped_ptr<media::VideoCaptureDevice::Names>)>& callback); |
32 | 32 |
33 // Gets the supported formats of a particular device attached to the system. | 33 // Gets the supported formats of a particular device attached to the system. |
34 // This method should be called before allocating or starting a device. In | 34 // This method should be called before allocating or starting a device. In |
35 // case format enumeration is not supported, or there was a problem, the | 35 // case format enumeration is not supported, or there was a problem, the |
36 // formats array will be empty. | 36 // formats array will be empty. |
37 virtual void GetDeviceSupportedFormats( | 37 virtual void GetDeviceSupportedFormats( |
38 const VideoCaptureDevice::Name& device, | 38 const VideoCaptureDevice::Name& device, |
39 VideoCaptureFormats* supported_formats) = 0; | 39 VideoCaptureFormats* supported_formats) = 0; |
40 | 40 |
41 // Gets the supported formats for still image of a particular device attached | |
42 // to the system. In case format enumeration is not supported, or there was | |
43 // a problem, the formats array will be empty. | |
44 virtual void GetDeviceSupportedImageFormats( | |
45 const VideoCaptureDevice::Name& device, | |
46 ImageCaptureFormats* supported_formats) {} | |
47 | |
48 protected: | 41 protected: |
49 // Gets the names of all video capture devices connected to this computer. | 42 // Gets the names of all video capture devices connected to this computer. |
50 // Used by the default implementation of EnumerateDeviceNames(). | 43 // Used by the default implementation of EnumerateDeviceNames(). |
51 virtual void GetDeviceNames(VideoCaptureDevice::Names* device_names) = 0; | 44 virtual void GetDeviceNames(VideoCaptureDevice::Names* device_names) = 0; |
52 | 45 |
53 base::ThreadChecker thread_checker_; | 46 base::ThreadChecker thread_checker_; |
54 | 47 |
55 private: | 48 private: |
56 static VideoCaptureDeviceFactory* CreateVideoCaptureDeviceFactory( | 49 static VideoCaptureDeviceFactory* CreateVideoCaptureDeviceFactory( |
57 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner); | 50 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner); |
58 | 51 |
59 DISALLOW_COPY_AND_ASSIGN(VideoCaptureDeviceFactory); | 52 DISALLOW_COPY_AND_ASSIGN(VideoCaptureDeviceFactory); |
60 }; | 53 }; |
61 | 54 |
62 } // namespace media | 55 } // namespace media |
63 | 56 |
64 #endif // MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_DEVICE_FACTORY_H_ | 57 #endif // MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_DEVICE_FACTORY_H_ |
OLD | NEW |