OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_MODULES_VIDEO_CAPTURE_OBJC_DEVICE_INFO_H_ | 11 #ifndef WEBRTC_MODULES_VIDEO_CAPTURE_OBJC_DEVICE_INFO_H_ |
12 #define WEBRTC_MODULES_VIDEO_CAPTURE_OBJC_DEVICE_INFO_H_ | 12 #define WEBRTC_MODULES_VIDEO_CAPTURE_OBJC_DEVICE_INFO_H_ |
13 | 13 |
14 #include "webrtc/modules/video_capture/device_info_impl.h" | 14 #include "webrtc/modules/video_capture/device_info_impl.h" |
15 | 15 |
16 #include <map> | 16 #include <map> |
17 #include <string> | 17 #include <string> |
18 | 18 |
19 namespace webrtc { | 19 namespace webrtc { |
20 namespace videocapturemodule { | 20 namespace videocapturemodule { |
21 class DeviceInfoIos : public DeviceInfoImpl { | 21 class DeviceInfoIos : public DeviceInfoImpl { |
22 public: | 22 public: |
23 explicit DeviceInfoIos(const int32_t device_id); | 23 DeviceInfoIos(); |
24 virtual ~DeviceInfoIos(); | 24 virtual ~DeviceInfoIos(); |
25 | 25 |
26 // Implementation of DeviceInfoImpl. | 26 // Implementation of DeviceInfoImpl. |
27 int32_t Init() override; | 27 int32_t Init() override; |
28 uint32_t NumberOfDevices() override; | 28 uint32_t NumberOfDevices() override; |
29 int32_t GetDeviceName(uint32_t deviceNumber, | 29 int32_t GetDeviceName(uint32_t deviceNumber, |
30 char* deviceNameUTF8, | 30 char* deviceNameUTF8, |
31 uint32_t deviceNameLength, | 31 uint32_t deviceNameLength, |
32 char* deviceUniqueIdUTF8, | 32 char* deviceUniqueIdUTF8, |
33 uint32_t deviceUniqueIdUTF8Length, | 33 uint32_t deviceUniqueIdUTF8Length, |
(...skipping 18 matching lines...) Expand all Loading... |
52 int32_t CreateCapabilityMap(const char* device_unique_id_utf8) override; | 52 int32_t CreateCapabilityMap(const char* device_unique_id_utf8) override; |
53 | 53 |
54 private: | 54 private: |
55 std::map<std::string, VideoCaptureCapabilities> _capabilitiesMap; | 55 std::map<std::string, VideoCaptureCapabilities> _capabilitiesMap; |
56 }; | 56 }; |
57 | 57 |
58 } // namespace videocapturemodule | 58 } // namespace videocapturemodule |
59 } // namespace webrtc | 59 } // namespace webrtc |
60 | 60 |
61 #endif // WEBRTC_MODULES_VIDEO_CAPTURE_OBJC_DEVICE_INFO_H_ | 61 #endif // WEBRTC_MODULES_VIDEO_CAPTURE_OBJC_DEVICE_INFO_H_ |
OLD | NEW |