niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
leozwang@webrtc.org | 1745e93 | 2012-03-01 16:30:40 +0000 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef MODULES_VIDEO_CAPTURE_MAIN_SOURCE_LINUX_DEVICE_INFO_LINUX_H_ |
| 12 | #define MODULES_VIDEO_CAPTURE_MAIN_SOURCE_LINUX_DEVICE_INFO_LINUX_H_ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 13 | |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 14 | #include <stdint.h> |
| 15 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 16 | #include "modules/video_capture/device_info_impl.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 17 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 18 | namespace webrtc { |
| 19 | namespace videocapturemodule { |
| 20 | class DeviceInfoLinux : public DeviceInfoImpl { |
| 21 | public: |
| 22 | DeviceInfoLinux(); |
Mirko Bonadei | 5aec1f6 | 2018-08-29 13:27:15 +0200 | [diff] [blame] | 23 | ~DeviceInfoLinux() override; |
| 24 | uint32_t NumberOfDevices() override; |
| 25 | int32_t GetDeviceName(uint32_t deviceNumber, |
| 26 | char* deviceNameUTF8, |
| 27 | uint32_t deviceNameLength, |
| 28 | char* deviceUniqueIdUTF8, |
| 29 | uint32_t deviceUniqueIdUTF8Length, |
| 30 | char* productUniqueIdUTF8 = 0, |
| 31 | uint32_t productUniqueIdUTF8Length = 0) override; |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 32 | /* |
| 33 | * Fills the membervariable _captureCapabilities with capabilites for the |
| 34 | * given device name. |
| 35 | */ |
Mirko Bonadei | 5aec1f6 | 2018-08-29 13:27:15 +0200 | [diff] [blame] | 36 | int32_t CreateCapabilityMap(const char* deviceUniqueIdUTF8) override; |
| 37 | int32_t DisplayCaptureSettingsDialogBox(const char* /*deviceUniqueIdUTF8*/, |
| 38 | const char* /*dialogTitleUTF8*/, |
| 39 | void* /*parentWindow*/, |
| 40 | uint32_t /*positionX*/, |
| 41 | uint32_t /*positionY*/) override; |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 42 | int32_t FillCapabilities(int fd); |
Mirko Bonadei | 5aec1f6 | 2018-08-29 13:27:15 +0200 | [diff] [blame] | 43 | int32_t Init() override; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 44 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 45 | private: |
| 46 | bool IsDeviceNameMatches(const char* name, const char* deviceUniqueIdUTF8); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 47 | }; |
pbos@webrtc.org | d900e8b | 2013-07-03 15:12:26 +0000 | [diff] [blame] | 48 | } // namespace videocapturemodule |
| 49 | } // namespace webrtc |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 50 | #endif // MODULES_VIDEO_CAPTURE_MAIN_SOURCE_LINUX_DEVICE_INFO_LINUX_H_ |