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:
Simon Farnsworth 2015-02-15 15:01:03 +00:00 committed by Víctor Manuel Jáquez Leal
parent 5993b0d60f
commit e60df073a0

View file

@ -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