mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 21:16:24 +00:00
eglglessink: Fix indention
This commit is contained in:
parent
6140bc7f8c
commit
6748198668
2 changed files with 4 additions and 3 deletions
|
@ -853,7 +853,8 @@ got_egl_error (const char *wtf)
|
|||
EGLint error;
|
||||
|
||||
if ((error = eglGetError ()) != EGL_SUCCESS) {
|
||||
GST_CAT_DEBUG (GST_CAT_DEFAULT, "EGL ERROR: %s returned 0x%04x", wtf, error);
|
||||
GST_CAT_DEBUG (GST_CAT_DEFAULT, "EGL ERROR: %s returned 0x%04x", wtf,
|
||||
error);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
@ -1670,7 +1671,7 @@ gst_eglglessink_queue_object (GstEglGlesSink * eglglessink, GstMiniObject * obj)
|
|||
|
||||
if (eglglessink->last_flow != GST_FLOW_OK)
|
||||
return eglglessink->last_flow;
|
||||
|
||||
|
||||
item = g_slice_new0 (GstDataQueueItem);
|
||||
|
||||
item->object = obj ? gst_mini_object_ref (obj) : NULL;
|
||||
|
|
|
@ -126,7 +126,7 @@ platform_destroy_native_window (EGLNativeDisplayType display,
|
|||
EGLNativeWindowType
|
||||
platform_create_native_window (gint width, gint height, gpointer * window_data)
|
||||
{
|
||||
fbdev_window * w = g_slice_new0 (fbdev_window);
|
||||
fbdev_window *w = g_slice_new0 (fbdev_window);
|
||||
|
||||
w->width = width;
|
||||
w->height = height;
|
||||
|
|
Loading…
Reference in a new issue