summaryrefslogtreecommitdiff
path: root/gst-libs/gst/va
diff options
context:
space:
mode:
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2021-05-13 18:46:21 +0200
committerVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2021-05-18 12:15:36 +0200
commit031b77ce97976eeae9d2c24b84020d1422f026ab (patch)
treeb952e08173130e85b933ee8e40fcca8a9a657cb8 /gst-libs/gst/va
parente0915ce982d20460f6ab1ea3cb347b7fd0539d74 (diff)
downloadgstreamer-plugins-bad-031b77ce97976eeae9d2c24b84020d1422f026ab.tar.gz
libs: va: display_wrapper: Use gpointer for VADisplay.
In order to be coherent along all the implementation. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2196>
Diffstat (limited to 'gst-libs/gst/va')
-rw-r--r--gst-libs/gst/va/gstvadisplay_wrapped.c2
-rw-r--r--gst-libs/gst/va/gstvadisplay_wrapped.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/va/gstvadisplay_wrapped.c b/gst-libs/gst/va/gstvadisplay_wrapped.c
index 9a3fea112..4626a2f79 100644
--- a/gst-libs/gst/va/gstvadisplay_wrapped.c
+++ b/gst-libs/gst/va/gstvadisplay_wrapped.c
@@ -61,7 +61,7 @@ gst_va_display_wrapped_init (GstVaDisplayWrapped * self)
* Since: 1.20
**/
GstVaDisplay *
-gst_va_display_wrapped_new (guintptr handle)
+gst_va_display_wrapped_new (gpointer handle)
{
GstVaDisplay *dpy;
diff --git a/gst-libs/gst/va/gstvadisplay_wrapped.h b/gst-libs/gst/va/gstvadisplay_wrapped.h
index 93f36c969..7634f1390 100644
--- a/gst-libs/gst/va/gstvadisplay_wrapped.h
+++ b/gst-libs/gst/va/gstvadisplay_wrapped.h
@@ -34,6 +34,6 @@ G_BEGIN_DECLS
GST_VA_API
GType gst_va_display_wrapped_get_type (void);
GST_VA_API
-GstVaDisplay * gst_va_display_wrapped_new (guintptr handle);
+GstVaDisplay * gst_va_display_wrapped_new (gpointer handle);
G_END_DECLS