From 81f768be3e1786f421c9ebe3b97d797038328a28 Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Tue, 27 Jan 2015 11:25:53 +0100 Subject: [PATCH] gl/dispmanx: fix build Commit ab48bb6f0f55091662e595a001e178154ce60cdb changed the API of GstGLWindow. --- gst-libs/gst/gl/dispmanx/gstglwindow_dispmanx_egl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/gl/dispmanx/gstglwindow_dispmanx_egl.c b/gst-libs/gst/gl/dispmanx/gstglwindow_dispmanx_egl.c index 037f430d47..ca5411a2d3 100644 --- a/gst-libs/gst/gl/dispmanx/gstglwindow_dispmanx_egl.c +++ b/gst-libs/gst/gl/dispmanx/gstglwindow_dispmanx_egl.c @@ -39,7 +39,7 @@ static guintptr gst_gl_window_dispmanx_egl_get_window_handle (GstGLWindow * window); static void gst_gl_window_dispmanx_egl_set_window_handle (GstGLWindow * window, guintptr handle); -static void gst_gl_window_dispmanx_set_preferred_size (GstGLWindow * window, +static void gst_gl_window_dispmanx_egl_set_preferred_size (GstGLWindow * window, gint width, gint height); static void gst_gl_window_dispmanx_egl_draw (GstGLWindow * window); static void gst_gl_window_dispmanx_egl_run (GstGLWindow * window); @@ -231,7 +231,7 @@ gst_gl_window_dispmanx_egl_set_window_handle (GstGLWindow * window, } static void -gst_gl_window_dispmanx_set_preferred_size (GstGLWindow * window) +gst_gl_window_dispmanx_egl_set_preferred_size (GstGLWindow * window, gint width, gint height) { GstGLWindowDispmanxEGL *window_egl = GST_GL_WINDOW_DISPMANX_EGL (window);