mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
gl/eglimage: Fix passing the destroy function to gst_egl_image_new_wrapped
The function pointer and the user data arguments were swapped in both uses. https://bugzilla.gnome.org/show_bug.cgi?id=769382
This commit is contained in:
parent
4b903f0cf3
commit
0abeebc4e8
2 changed files with 2 additions and 2 deletions
|
@ -317,6 +317,6 @@ gst_egl_image_from_dmabuf (GstGLContext * context,
|
|||
|
||||
return gst_egl_image_new_wrapped (context, img, type,
|
||||
GST_VIDEO_GL_TEXTURE_ORIENTATION_X_NORMAL_Y_NORMAL,
|
||||
(GstEGLImageDestroyNotify) _destroy_egl_image, NULL);
|
||||
NULL, (GstEGLImageDestroyNotify) _destroy_egl_image);
|
||||
}
|
||||
#endif /* GST_GL_HAVE_DMABUF */
|
||||
|
|
|
@ -173,7 +173,7 @@ _gl_mem_create (GstGLMemoryEGL * gl_mem, GError ** error)
|
|||
}
|
||||
|
||||
gl_mem->image = gst_egl_image_new_wrapped (context, image, 0, 0,
|
||||
(GstEGLImageDestroyNotify) _destroy_egl_image, NULL);
|
||||
NULL, (GstEGLImageDestroyNotify) _destroy_egl_image);
|
||||
} else {
|
||||
gl->ActiveTexture (GL_TEXTURE0 + gl_mem->mem.plane);
|
||||
gl->BindTexture (GL_TEXTURE_2D, gl_mem->mem.tex_id);
|
||||
|
|
Loading…
Reference in a new issue