summaryrefslogtreecommitdiff
path: root/gst-libs/gst
diff options
context:
space:
mode:
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2019-07-09 19:17:48 +0200
committerVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2020-08-14 12:43:20 +0200
commit7a3b25884c0837cfbd8cd9bd72108fc77a5e6773 (patch)
tree918ae279e7911d52a9d5a8850fb9598900d5b262 /gst-libs/gst
parent992d9e3a20662b11654ac37e46419c363d49bce9 (diff)
libs: egl: surface: export EGLImage as DMABuf if GEM not supported
This code path is used when frames are rendered as textures through GstVideoGLTextureUploadMeta with EGL, mainly under Wayland. Originally the EGLImage was exported as GEM, which was handled by Intel drivers, but Gallium ones cannot create VA surfaces from GEM buffers, only DMABuf. This patch checks the memory types supported by VA driver to choose the render the EGLImages from GEM or DMABuf, because GEM is still better where supported. DMABuf is well handled either by intel-vaapi-driver and gallium. Fixes: #137 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-vaapi/-/merge_requests/122>
Diffstat (limited to 'gst-libs/gst')
-rw-r--r--gst-libs/gst/vaapi/egl_vtable.h21
-rw-r--r--gst-libs/gst/vaapi/gstvaapisurface_egl.c148
-rw-r--r--gst-libs/gst/vaapi/gstvaapisurface_egl.h3
-rw-r--r--gst-libs/gst/vaapi/gstvaapitexture_egl.c14
4 files changed, 145 insertions, 41 deletions
diff --git a/gst-libs/gst/vaapi/egl_vtable.h b/gst-libs/gst/vaapi/egl_vtable.h
index 89c5d029..53b3acc9 100644
--- a/gst-libs/gst/vaapi/egl_vtable.h
+++ b/gst-libs/gst/vaapi/egl_vtable.h
@@ -130,6 +130,26 @@ EGL_PROTO_ARG(stride, EGLint *))
EGL_PROTO_INVOKE(ExportDRMImageMESA, EGLImageKHR, (dpy, image, name, handle, stride))
EGL_PROTO_END()
+EGL_PROTO_BEGIN(ExportDMABUFImageMESA, EGLBoolean, MESA_image_dma_buf_export)
+EGL_PROTO_ARG_LIST(
+EGL_PROTO_ARG(dpy, EGLDisplay),
+EGL_PROTO_ARG(image, EGLImageKHR),
+EGL_PROTO_ARG(fds, int *),
+EGL_PROTO_ARG(strides, EGLint *),
+EGL_PROTO_ARG(offsets, EGLint *))
+EGL_PROTO_INVOKE(ExportDMABUFImageMESA, EGLBoolean, (dpy, image, fds, strides, offsets))
+EGL_PROTO_END()
+
+EGL_PROTO_BEGIN(ExportDMABUFImageQueryMESA, EGLBoolean, MESA_image_dma_buf_export)
+EGL_PROTO_ARG_LIST(
+EGL_PROTO_ARG(dpy, EGLDisplay),
+EGL_PROTO_ARG(image, EGLImageKHR),
+EGL_PROTO_ARG(fourcc, int *),
+EGL_PROTO_ARG(num_planes, int *),
+EGL_PROTO_ARG(modifiers, EGLuint64KHR *))
+EGL_PROTO_INVOKE(ExportDMABUFImageQueryMESA, EGLBoolean, (dpy, image, fourcc, num_planes, modifiers))
+EGL_PROTO_END()
+
EGL_DEFINE_EXTENSION(EXT_image_dma_buf_import)
EGL_DEFINE_EXTENSION(KHR_create_context)
EGL_DEFINE_EXTENSION(KHR_gl_texture_2D_image)
@@ -137,6 +157,7 @@ EGL_DEFINE_EXTENSION(KHR_image_base)
EGL_DEFINE_EXTENSION(KHR_surfaceless_context)
EGL_DEFINE_EXTENSION(MESA_configless_context)
EGL_DEFINE_EXTENSION(MESA_drm_image)
+EGL_DEFINE_EXTENSION(MESA_image_dma_buf_export)
GL_PROTO_BEGIN(GetError, GLenum, CORE_1_0)
GL_PROTO_ARG_LIST()
diff --git a/gst-libs/gst/vaapi/gstvaapisurface_egl.c b/gst-libs/gst/vaapi/gstvaapisurface_egl.c
index f5aaa746..e311ae9b 100644
--- a/gst-libs/gst/vaapi/gstvaapisurface_egl.c
+++ b/gst-libs/gst/vaapi/gstvaapisurface_egl.c
@@ -21,13 +21,23 @@
*/
#include "sysdeps.h"
+
#include "gstvaapisurface_egl.h"
-#include "gstvaapisurface_drm.h"
-#include "gstvaapisurface_priv.h"
-#include "gstvaapiimage_priv.h"
+
#include "gstvaapibufferproxy_priv.h"
+#include "gstvaapicompat.h"
#include "gstvaapidisplay_egl_priv.h"
#include "gstvaapifilter.h"
+#include "gstvaapiimage_priv.h"
+#include "gstvaapisurface_drm.h"
+#include "gstvaapisurface_priv.h"
+
+#if USE_DRM
+#include <drm_fourcc.h>
+#else
+#define DRM_FORMAT_MOD_LINEAR 0ULL
+#define DRM_FORMAT_MOD_INVALID ((1ULL << 56) - 1)
+#endif
typedef struct
{
@@ -36,46 +46,102 @@ typedef struct
GstVideoFormat format;
guint width;
guint height;
+ guint mem_types;
GstVaapiSurface *surface; /* result */
} CreateSurfaceWithEGLImageArgs;
static GstVaapiSurface *
do_create_surface_with_egl_image_unlocked (GstVaapiDisplayEGL * display,
- EGLImageKHR image, GstVideoFormat format, guint width, guint height)
+ EGLImageKHR image, GstVideoFormat format, guint width, guint height,
+ guint mem_types)
{
GstVaapiDisplay *const base_display = GST_VAAPI_DISPLAY_CAST (display);
EglContext *const ctx = GST_VAAPI_DISPLAY_EGL_CONTEXT (display);
EglVTable *vtable;
- gsize size, offset[GST_VIDEO_MAX_PLANES];
- gint name, stride[GST_VIDEO_MAX_PLANES];
if (!ctx || !(vtable = egl_context_get_vtable (ctx, FALSE)))
return NULL;
- memset (offset, 0, sizeof (offset));
- memset (stride, 0, sizeof (stride));
+ if ((mem_types & VA_SURFACE_ATTRIB_MEM_TYPE_KERNEL_DRM)
+ && vtable->has_EGL_MESA_drm_image) {
+ gsize size, offset[GST_VIDEO_MAX_PLANES] = { 0, };
+ gint name, stride[GST_VIDEO_MAX_PLANES] = { 0, };
+
+ /* EGL_MESA_drm_image extension */
+ if (!vtable->eglExportDRMImageMESA (ctx->display->base.handle.p, image,
+ &name, NULL, &stride[0]))
+ goto error_export_image_gem_buf;
+
+ size = height * stride[0];
+ /*
+ * XXX: The below surface creation may fail on Intel due to:
+ * https://github.com/01org/intel-vaapi-driver/issues/222
+ * A permanent fix for that problem will be released in intel-vaapi-driver
+ * version 1.8.4 and later, and also in 1.8.3-1ubuntu1.
+ * However if you don't have that fix then a simple workaround is to
+ * uncomment this line of code:
+ * size = GST_ROUND_UP_32 (height) * stride[0];
+ */
+
+ return gst_vaapi_surface_new_with_gem_buf_handle (base_display, name, size,
+ format, width, height, offset, stride);
+ }
+
+ if ((mem_types & VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME)
+ && vtable->has_EGL_MESA_image_dma_buf_export) {
+ int fourcc, num_planes, fd;
+ EGLint offset = 0;
+ EGLint stride = 0;
+ EGLuint64KHR modifier;
+ GstVideoInfo vi;
+
+ if (!vtable->eglExportDMABUFImageQueryMESA (ctx->display->base.handle.p,
+ image, &fourcc, &num_planes, &modifier))
+ goto error_export_dma_buf_image_query;
+
+ /* Don't allow multi-plane dmabufs */
+ if (num_planes != 1)
+ goto error_bad_parameters;
- if (!vtable->has_EGL_MESA_drm_image)
- goto error_mission_extension;
+ /* FIXME: We don't support modifiers */
+ if (modifier != DRM_FORMAT_MOD_LINEAR && modifier != DRM_FORMAT_MOD_INVALID)
+ goto error_bad_parameters;
- /* EGL_MESA_drm_image extension */
- if (!vtable->eglExportDRMImageMESA (ctx->display->base.handle.p, image,
- &name, NULL, &stride[0]))
- goto error_export_image_gem_buf;
+ /* fix color format if needed */
+ if (fourcc == GST_MAKE_FOURCC ('A', 'B', '2', '4'))
+ format = gst_vaapi_video_format_from_va_fourcc (VA_FOURCC_RGBA);
+ else if (fourcc == GST_MAKE_FOURCC ('A', 'R', '2', '4'))
+ format = gst_vaapi_video_format_from_va_fourcc (VA_FOURCC_BGRA);
- size = height * stride[0];
- /*
- * XXX: The below surface creation may fail on Intel due to:
- * https://github.com/01org/intel-vaapi-driver/issues/222
- * A permanent fix for that problem will be released in intel-vaapi-driver
- * version 1.8.4 and later, and also in 1.8.3-1ubuntu1.
- * However if you don't have that fix then a simple workaround is to
- * uncomment this line of code:
- * size = GST_ROUND_UP_32 (height) * stride[0];
- */
+ if (!vtable->eglExportDMABUFImageMESA (ctx->display->base.handle.p, image,
+ &fd, &stride, &offset))
+ goto error_export_dma_buf_image;
- return gst_vaapi_surface_new_with_gem_buf_handle (base_display, name, size,
- format, width, height, offset, stride);
+ gst_video_info_set_format (&vi, format, width, height);
+ GST_VIDEO_INFO_PLANE_OFFSET (&vi, 0) = offset;
+ GST_VIDEO_INFO_PLANE_STRIDE (&vi, 0) = stride;
+
+ return gst_vaapi_surface_new_with_dma_buf_handle (base_display, fd, &vi);
+ }
+#ifndef GST_DISABLE_GST_DEBUG
+ {
+ GString *str = g_string_new (NULL);
+
+ if (mem_types & VA_SURFACE_ATTRIB_MEM_TYPE_VA)
+ g_string_append (str, "VA ");
+ if (mem_types & VA_SURFACE_ATTRIB_MEM_TYPE_V4L2)
+ g_string_append (str, "V4L2 ");
+ if (mem_types & VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR)
+ g_string_append (str, "PTR ");
+ if (mem_types & VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_2)
+ g_string_append (str, "PRIME_2 ");
+
+ GST_ERROR ("missing EGL extensions for memory types: %s", str->str);
+ g_string_free (str, TRUE);
+ }
+#endif
+
+ return NULL;
/* ERRORS */
error_export_image_gem_buf:
@@ -83,10 +149,19 @@ error_export_image_gem_buf:
GST_ERROR ("failed to export EGL image to GEM buffer");
return NULL;
}
-
-error_mission_extension:
+error_export_dma_buf_image_query:
+ {
+ GST_ERROR ("failed to query EGL image for dmabuf export");
+ return NULL;
+ }
+error_bad_parameters:
+ {
+ GST_ERROR ("multi-planed nor non-linear dmabufs are not supported");
+ return NULL;
+ }
+error_export_dma_buf_image:
{
- GST_ERROR ("missing EGL_MESA_drm_image extension");
+ GST_ERROR ("missing EGL_MESA_image_dma_buf_export extension");
return NULL;
}
}
@@ -96,17 +171,17 @@ do_create_surface_with_egl_image (CreateSurfaceWithEGLImageArgs * args)
{
GST_VAAPI_DISPLAY_LOCK (args->display);
args->surface = do_create_surface_with_egl_image_unlocked (args->display,
- args->image, args->format, args->width, args->height);
+ args->image, args->format, args->width, args->height, args->mem_types);
GST_VAAPI_DISPLAY_UNLOCK (args->display);
}
// Creates VA surface with EGLImage buffer as backing storage (internal)
static inline GstVaapiSurface *
create_surface_with_egl_image (GstVaapiDisplayEGL * display, EGLImageKHR image,
- GstVideoFormat format, guint width, guint height)
+ GstVideoFormat format, guint width, guint height, guint mem_types)
{
CreateSurfaceWithEGLImageArgs args =
- { display, image, format, width, height };
+ { display, image, format, width, height, mem_types };
if (!egl_context_run (GST_VAAPI_DISPLAY_EGL_CONTEXT (display),
(EglContextRunFunc) do_create_surface_with_egl_image, &args))
@@ -127,7 +202,7 @@ create_surface_from_egl_image (GstVaapiDisplayEGL * display,
GstVaapiFilterStatus filter_status;
img_surface = create_surface_with_egl_image (display, image, format,
- width, height);
+ width, height, 0);
if (!img_surface)
return NULL;
@@ -240,6 +315,7 @@ error_invalid_display:
* @format: the EGL @image format
* @width: the EGL @image width in pixels
* @height: the EGL @image height in pixels
+ * @mem_types: the supported memory types
*
* Creates a new #GstVaapiSurface bound to an external EGL image.
*
@@ -252,7 +328,8 @@ error_invalid_display:
*/
GstVaapiSurface *
gst_vaapi_surface_new_with_egl_image (GstVaapiDisplay * base_display,
- EGLImageKHR image, GstVideoFormat format, guint width, guint height)
+ EGLImageKHR image, GstVideoFormat format, guint width, guint height,
+ guint mem_types)
{
GstVaapiDisplayEGL *display;
@@ -264,7 +341,8 @@ gst_vaapi_surface_new_with_egl_image (GstVaapiDisplay * base_display,
display = GST_VAAPI_DISPLAY_EGL (base_display);
if (!display || !GST_VAAPI_IS_DISPLAY_EGL (display))
goto error_invalid_display;
- return create_surface_with_egl_image (display, image, format, width, height);
+ return create_surface_with_egl_image (display, image, format, width, height,
+ mem_types);
/* ERRORS */
error_invalid_display:
diff --git a/gst-libs/gst/vaapi/gstvaapisurface_egl.h b/gst-libs/gst/vaapi/gstvaapisurface_egl.h
index 70c8df8b..71cb150a 100644
--- a/gst-libs/gst/vaapi/gstvaapisurface_egl.h
+++ b/gst-libs/gst/vaapi/gstvaapisurface_egl.h
@@ -36,7 +36,8 @@ gst_vaapi_surface_new_from_egl_image (GstVaapiDisplay * display,
GstVaapiSurface *
gst_vaapi_surface_new_with_egl_image (GstVaapiDisplay * display,
- EGLImageKHR image, GstVideoFormat format, guint width, guint height);
+ EGLImageKHR image, GstVideoFormat format, guint width, guint height,
+ guint mem_types);
G_END_DECLS
diff --git a/gst-libs/gst/vaapi/gstvaapitexture_egl.c b/gst-libs/gst/vaapi/gstvaapitexture_egl.c
index f392bcef..49edcc88 100644
--- a/gst-libs/gst/vaapi/gstvaapitexture_egl.c
+++ b/gst-libs/gst/vaapi/gstvaapitexture_egl.c
@@ -80,6 +80,14 @@ create_objects (GstVaapiTexture * texture, GLuint texture_id)
EglContext *const ctx = texture_egl->egl_context;
EglVTable *const vtable = egl_context_get_vtable (ctx, FALSE);
GLint attribs[3] = { EGL_IMAGE_PRESERVED_KHR, EGL_TRUE, EGL_NONE };
+ guint mem_types;
+
+ texture_egl->filter =
+ gst_vaapi_filter_new (GST_VAAPI_TEXTURE_DISPLAY (texture));
+ if (!texture_egl->filter)
+ goto error_create_filter;
+
+ mem_types = gst_vaapi_filter_get_memory_types (texture_egl->filter);
texture_egl->egl_image =
vtable->eglCreateImageKHR (ctx->display->base.handle.p,
@@ -91,14 +99,10 @@ create_objects (GstVaapiTexture * texture, GLuint texture_id)
texture_egl->surface =
gst_vaapi_surface_new_with_egl_image (GST_VAAPI_TEXTURE_DISPLAY (texture),
texture_egl->egl_image, GST_VIDEO_FORMAT_RGBA, texture->width,
- texture->height);
+ texture->height, mem_types);
if (!texture_egl->surface)
goto error_create_surface;
- texture_egl->filter =
- gst_vaapi_filter_new (GST_VAAPI_TEXTURE_DISPLAY (texture));
- if (!texture_egl->filter)
- goto error_create_filter;
return TRUE;
/* ERRORS */