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
This commit is contained in:
Gleb Popov 2020-08-05 17:22:26 +00:00
parent 1d60bddb73
commit 98e2d1025d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=544235
2 changed files with 23 additions and 0 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= gstreamer1-vaapi
PORTVERSION= 1.16.2
PORTREVISION= 1
CATEGORIES= multimedia
MASTER_SITES= https://gstreamer.freedesktop.org/src/gstreamer-vaapi/
DISTNAME= gstreamer-vaapi-${PORTVERSION}

View File

@ -0,0 +1,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) {