Skip to content

Commit

Permalink
multimedia/gstreamer1-vaapi: Add a patch to fix a crash.
Browse files Browse the repository at this point in the history
PR:		245722
Submitted by:	Oleg Sidorkin <[email protected]>
More context:	FreeBSDDesktop/libudev-devd#19
  • Loading branch information
arrowd committed Aug 5, 2020
1 parent 7f59f85 commit b6f459f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions multimedia/gstreamer1-vaapi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
Original file line number Diff line number Diff line change
@@ -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) {

0 comments on commit b6f459f

Please sign in to comment.