GNOME Bugzilla – Bug 744559
gstreamer-vaapi does not build on s390x, where guintptr is not compatible with GstVaapiID
Last modified: 2015-05-04 16:11:10 UTC
This is a forwarding upstream of https://bugzilla.redhat.com/show_bug.cgi?id=1191161 On s390x, guintptr and GstVaapiID are not compatible types. The implementation of gst_vaapi_window_new_internal() and all its callers seem to assume that its third argument is a GstVaapiID, while the header gives it guintptr type. I'm going to attach the patch I'm using to fix this for Fedora.
Created attachment 296876 [details] [review] [PATCH] window: Correct prototype to match implementation gst-libs/gst/vaapi/gstvaapiwindow_priv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
You are right. Thanks.
commit e60df073a0db436fb61ee24d3095bc56a27b55b3 Author: Simon Farnsworth <simon@farnz.org.uk> Date: Sun Feb 15 15:01:03 2015 +0000 window: Correct prototype to match implementation On s390x, guintptr and GstVaapiID are not compatible types. The implementation of gst_vaapi_window_new_internal() and all its callers seem to assume that its third argument is a GstVaapiID, while the header gives it guintptr type. https://bugzilla.gnome.org/show_bug.cgi?id=744559