blob: 955739d700c90d3fd020e6c96577642202067628 [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
leozwang@webrtc.org1745e932012-03-01 16:30:40 +00002 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
niklase@google.com470e71d2011-07-07 08:21:25 +00003 *
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 Bonadei92ea95e2017-09-15 06:47:31 +020011#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.com470e71d2011-07-07 08:21:25 +000013
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020014#include "modules/video_capture/device_info_impl.h"
15#include "modules/video_capture/video_capture_impl.h"
niklase@google.com470e71d2011-07-07 08:21:25 +000016
Yves Gerey665174f2018-06-19 15:03:05 +020017namespace webrtc {
18namespace videocapturemodule {
19class DeviceInfoLinux : public DeviceInfoImpl {
20 public:
21 DeviceInfoLinux();
Mirko Bonadei5aec1f62018-08-29 13:27:15 +020022 ~DeviceInfoLinux() override;
23 uint32_t NumberOfDevices() override;
24 int32_t GetDeviceName(uint32_t deviceNumber,
25 char* deviceNameUTF8,
26 uint32_t deviceNameLength,
27 char* deviceUniqueIdUTF8,
28 uint32_t deviceUniqueIdUTF8Length,
29 char* productUniqueIdUTF8 = 0,
30 uint32_t productUniqueIdUTF8Length = 0) override;
Yves Gerey665174f2018-06-19 15:03:05 +020031 /*
32 * Fills the membervariable _captureCapabilities with capabilites for the
33 * given device name.
34 */
Mirko Bonadei5aec1f62018-08-29 13:27:15 +020035 int32_t CreateCapabilityMap(const char* deviceUniqueIdUTF8) override;
36 int32_t DisplayCaptureSettingsDialogBox(const char* /*deviceUniqueIdUTF8*/,
37 const char* /*dialogTitleUTF8*/,
38 void* /*parentWindow*/,
39 uint32_t /*positionX*/,
40 uint32_t /*positionY*/) override;
Yves Gerey665174f2018-06-19 15:03:05 +020041 int32_t FillCapabilities(int fd);
Mirko Bonadei5aec1f62018-08-29 13:27:15 +020042 int32_t Init() override;
niklase@google.com470e71d2011-07-07 08:21:25 +000043
Yves Gerey665174f2018-06-19 15:03:05 +020044 private:
45 bool IsDeviceNameMatches(const char* name, const char* deviceUniqueIdUTF8);
niklase@google.com470e71d2011-07-07 08:21:25 +000046};
pbos@webrtc.orgd900e8b2013-07-03 15:12:26 +000047} // namespace videocapturemodule
48} // namespace webrtc
Yves Gerey665174f2018-06-19 15:03:05 +020049#endif // MODULES_VIDEO_CAPTURE_MAIN_SOURCE_LINUX_DEVICE_INFO_LINUX_H_