ports/multimedia/gstreamer1-vaapi/files/patch-gst-libs_gst_vaapi_gstvaapidisplay__drm.c
Gleb Popov 98e2d1025d multimedia/gstreamer1-vaapi: Add a patch to fix a crash.
PR:		245722
Submitted by:	Oleg Sidorkin <osidorkin@gmail.com>
More context:	https://github.com/FreeBSDDesktop/libudev-devd/issues/19
2020-08-05 17:22:26 +00:00

22 lines
882 B
C

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) {