blob: 270a6c20164d76719c10c2b4c19ff60ba5d731e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Workaround for an incompatibility bug in our libudev-devd.
See https://github.com/FreeBSDDesktop/libudev-devd/issues/19
--- gst-libs/gst/vaapi/gstvaapidisplay_drm.c.orig 2019-12-02 20:09:01 UTC
+++ gst-libs/gst/vaapi/gstvaapidisplay_drm.c
@@ -108,6 +108,7 @@ get_default_device_path (GstVaapiDisplay * display)
udev_list_entry_foreach (l, udev_enumerate_get_list_entry (e)) {
syspath = udev_list_entry_get_name (l);
device = udev_device_new_from_syspath (udev, syspath);
+#ifdef __linux__
parent = udev_device_get_parent (device);
for (i = 0; allowed_subsystems[i] != NULL; i++)
@@ -119,7 +120,7 @@ get_default_device_path (GstVaapiDisplay * display)
udev_device_unref (device);
continue;
}
-
+#endif
devpath = udev_device_get_devnode (device);
fd = open (devpath, O_RDWR | O_CLOEXEC);
if (fd < 0) {
|