From 31bab22b5ee7bc18ad4bdb2fb74ed4948a900cc0 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 6 May 2019 03:52:45 +0200 Subject: compat/camera-names: move to original location Issue: #946 --- compat/CMakeLists.txt | 6 ++- compat/camera-names.cpp | 106 ++++++++++++++++++++++++++++++++++++++++++++++++ compat/camera-names.hpp | 18 ++++++++ 3 files changed, 129 insertions(+), 1 deletion(-) create mode 100644 compat/camera-names.cpp create mode 100644 compat/camera-names.hpp (limited to 'compat') diff --git a/compat/CMakeLists.txt b/compat/CMakeLists.txt index 3fddefb4..5ef9ab67 100644 --- a/compat/CMakeLists.txt +++ b/compat/CMakeLists.txt @@ -1,7 +1,11 @@ otr_module(compat NO-COMPAT BIN) if(NOT WIN32 AND NOT APPLE) - target_link_libraries(opentrack-compat rt) + target_link_libraries(${self} rt) +endif() + +if(WIN32) + target_link_libraries(${self} strmiids) endif() if(CMAKE_COMPILER_IS_GNUCXX) diff --git a/compat/camera-names.cpp b/compat/camera-names.cpp new file mode 100644 index 00000000..69926e5a --- /dev/null +++ b/compat/camera-names.cpp @@ -0,0 +1,106 @@ +#include "camera-names.hpp" + +#include +#include + +#ifdef _WIN32 +# include +# define NO_DSHOW_STRSAFE +# include +#elif defined(__unix) || defined(__linux) || defined(__APPLE__) +# include +#endif + +#ifdef __linux +# include +# include +# include +# include +# include +#endif + +#include + +int camera_name_to_index(const QString &name) +{ + auto list = get_camera_names(); + auto it = std::find(list.cbegin(), list.cend(), name); + if (it != list.cend()) + return std::distance(list.cbegin(), it); + + return -1; +} + +std::vector get_camera_names() +{ + std::vector ret; +#ifdef _WIN32 + // Create the System Device Enumerator. + HRESULT hr; + CoInitialize(nullptr); + ICreateDevEnum *pSysDevEnum = nullptr; + hr = CoCreateInstance(CLSID_SystemDeviceEnum, nullptr, CLSCTX_INPROC_SERVER, IID_ICreateDevEnum, (void **)&pSysDevEnum); + if (FAILED(hr)) + { + qDebug() << "failed CLSID_SystemDeviceEnum" << hr; + return ret; + } + // Obtain a class enumerator for the video compressor category. + IEnumMoniker *pEnumCat = nullptr; + hr = pSysDevEnum->CreateClassEnumerator(CLSID_VideoInputDeviceCategory, &pEnumCat, 0); + + if (hr == S_OK) { + // Enumerate the monikers. + IMoniker *pMoniker = nullptr; + ULONG cFetched; + while (pEnumCat->Next(1, &pMoniker, &cFetched) == S_OK) + { + IPropertyBag *pPropBag; + hr = pMoniker->BindToStorage(nullptr, nullptr, IID_IPropertyBag, (void **)&pPropBag); + if (SUCCEEDED(hr)) { + // To retrieve the filter's friendly name, do the following: + VARIANT var; + VariantInit(&var); + hr = pPropBag->Read(L"FriendlyName", &var, nullptr); + if (SUCCEEDED(hr)) + { + // Display the name in your UI somehow. + QString str((QChar*)var.bstrVal, int(std::wcslen(var.bstrVal))); + ret.push_back(str); + } + VariantClear(&var); + pPropBag->Release(); + } + pMoniker->Release(); + } + pEnumCat->Release(); + } + else + qDebug() << "failed CLSID_VideoInputDeviceCategory" << hr; + + pSysDevEnum->Release(); +#endif + +#ifdef __linux + for (int i = 0; i < 16; i++) { + char buf[32]; + snprintf(buf, sizeof(buf), "/dev/video%d", i); + + if (access(buf, R_OK | W_OK) == 0) { + int fd = open(buf, O_RDONLY); + if (fd == -1) + continue; + struct v4l2_capability video_cap; + if(ioctl(fd, VIDIOC_QUERYCAP, &video_cap) == -1) + { + qDebug() << "VIDIOC_QUERYCAP" << errno; + close(fd); + continue; + } + ret.push_back(QString((const char*)video_cap.card)); + close(fd); + } + } +#endif + return ret; +} diff --git a/compat/camera-names.hpp b/compat/camera-names.hpp new file mode 100644 index 00000000..bda15e81 --- /dev/null +++ b/compat/camera-names.hpp @@ -0,0 +1,18 @@ +/* Copyright (c) 2014-2015, Stanislaw Halik + + * Permission to use, copy, modify, and/or distribute this + * software for any purpose with or without fee is hereby granted, + * provided that the above copyright notice and this permission + * notice appear in all copies. + */ + +#pragma once + +#include +#include + +#include "export.hpp" + +OTR_COMPAT_EXPORT std::vector get_camera_names(); +OTR_COMPAT_EXPORT int camera_name_to_index(const QString &name); + -- cgit v1.2.3