Subject: [PATCH] Rudimentary support for mi_media_detect_type on FreeBSD. FreeBSD doesn't have the same uevent and sys filesystem that Linux does. So, use the VIDIOC_QUERYCAP ioctl to find out basic capabilities for a device. The ioctl doesn't give us as much information, but it gets things like webcams, VBIs, and radios. This is better than what was there previously, which was returning unknown. This makes some v4l-utils like v4l2-ctl a little more useful. --- utils/common/media-info.cpp | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/utils/common/media-info.cpp b/utils/common/media-info.cpp index 29a43fb3..3fed5a46 100644 --- a/utils/common/media-info.cpp +++ b/utils/common/media-info.cpp @@ -17,6 +17,10 @@ #include #include +#ifndef __linux__ +#include +#include +#endif static std::string num2s(unsigned num, bool is_hex = true) { @@ -54,7 +58,7 @@ media_type mi_media_detect_type(const char *device) if (stat(device, &sb) == -1) return MEDIA_TYPE_CANT_STAT; - +#ifdef __linux__ std::string uevent_path("/sys/dev/char/"); uevent_path += num2s(major(sb.st_rdev), false) + ":" + @@ -90,6 +94,22 @@ media_type mi_media_detect_type(const char *device) } uevent_file.close(); +#else // Not Linux + int fd = open(device, O_RDONLY); + if (fd >= 0) { + struct v4l2_capability caps; + if (ioctl(fd, VIDIOC_QUERYCAP, &caps) == 0) { + if (caps.device_caps & V4L2_CAP_VIDEO_CAPTURE) { + return MEDIA_TYPE_VIDEO; + } else if (caps.device_caps & V4L2_CAP_VBI_CAPTURE) { + return MEDIA_TYPE_VBI; + } else if (caps.device_caps & V4L2_CAP_RADIO) { + return MEDIA_TYPE_RADIO; + } + } + close(fd); + } +#endif return MEDIA_TYPE_UNKNOWN; } -- 2.31.0