mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
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
This commit is contained in:
parent
5993b0d60f
commit
e60df073a0
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ struct _GstVaapiWindowClass
|
|||
|
||||
GstVaapiWindow *
|
||||
gst_vaapi_window_new_internal (const GstVaapiWindowClass * window_class,
|
||||
GstVaapiDisplay * display, guintptr handle, guint width, guint height);
|
||||
GstVaapiDisplay * display, GstVaapiID handle, guint width, guint height);
|
||||
|
||||
/* Inline reference counting for core libgstvaapi library */
|
||||
#ifdef IN_LIBGSTVAAPI_CORE
|
||||
|
|
Loading…
Reference in a new issue