glupload: Fix fallback from direct dmabuf to dmabuf upload method

In the situation that the direct dmabuf path is chosen, but with an
unsupported texture format, this causes accept to fail rather than
continue and fail at the upload stage. It is also possibly necessary to
reconfigure after falling back from direct to non-direct dmabuf upload
paths.
This commit is contained in:
Chris Lord 2020-03-09 10:21:53 +00:00 committed by GStreamer Merge Bot
parent bb8515671e
commit 7cd2f5a29f
3 changed files with 76 additions and 11 deletions

View file

@ -39,6 +39,7 @@
#endif
#include "gsteglimage.h"
#include "gsteglimage_private.h"
#include <string.h>
@ -713,9 +714,20 @@ _drm_direct_fourcc_from_info (GstVideoInfo * info)
}
}
static gboolean
_gst_egl_image_check_dmabuf_direct (GstGLContext * context, int fourcc,
GstGLTextureTarget target)
/*
* gst_egl_image_check_dmabuf_direct:
* @context: a #GstGLContext (must be an EGL context)
* @in_info: a #GstVideoInfo
* @target: a #GstGLTextureTarget
*
* Checks whether the video format specified by the given #GstVideoInfo is a
* supported texture format for the given target.
*
* Returns: %TRUE if the format is supported.
*/
gboolean
gst_egl_image_check_dmabuf_direct (GstGLContext * context,
GstVideoInfo * in_info, GstGLTextureTarget target)
{
EGLDisplay egl_display = EGL_DEFAULT_DISPLAY;
GstGLDisplayEGL *display_egl;
@ -725,6 +737,7 @@ _gst_egl_image_check_dmabuf_direct (GstGLContext * context, int fourcc,
EGLBoolean *external_only;
int num_modifiers;
gboolean ret;
int fourcc;
int i;
EGLBoolean (*gst_eglQueryDmaBufFormatsEXT) (EGLDisplay dpy,
@ -733,6 +746,10 @@ _gst_egl_image_check_dmabuf_direct (GstGLContext * context, int fourcc,
int format, int max_modifiers, EGLuint64KHR * modifiers,
EGLBoolean * external_only, int *num_modifiers);
fourcc = _drm_direct_fourcc_from_info (in_info);
if (fourcc == -1)
return FALSE;
gst_eglQueryDmaBufFormatsEXT =
gst_gl_context_get_proc_address (context, "eglQueryDmaBufFormatsEXT");
gst_eglQueryDmaBufModifiersEXT =
@ -857,13 +874,10 @@ gst_egl_image_from_dmabuf_direct_target (GstGLContext * context,
guintptr attribs[41]; /* 6 + 10 * 3 + 4 + 1 */
gint atti = 0;
if (!gst_egl_image_check_dmabuf_direct (context, in_info, target))
return NULL;
fourcc = _drm_direct_fourcc_from_info (in_info);
if (fourcc == -1)
return NULL;
if (!_gst_egl_image_check_dmabuf_direct (context, fourcc, target))
return NULL;
with_modifiers = gst_gl_context_check_feature (context,
"EGL_EXT_image_dma_buf_import_modifiers");

View file

@ -0,0 +1,37 @@
/*
* GStreamer
* Copyright (C) 2020 Igalia S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef _GST_EGL_IMAGE_PRIVATE_H_
#define _GST_EGL_IMAGE_PRIVATE_H_
#include <gst/gl/gstgl_fwd.h>
#include <gst/gl/gstglformat.h>
G_BEGIN_DECLS
G_GNUC_INTERNAL
gboolean gst_egl_image_check_dmabuf_direct (GstGLContext * context,
GstVideoInfo * in_info,
GstGLTextureTarget target);
G_END_DECLS
#endif /* _GST_EGL_IMAGE_PRIVATE_H_ */

View file

@ -30,6 +30,7 @@
#if GST_GL_HAVE_PLATFORM_EGL
#include "egl/gsteglimage.h"
#include "egl/gsteglimage_private.h"
#include "egl/gstglmemoryegl.h"
#include "egl/gstglcontext_egl.h"
#endif
@ -698,9 +699,13 @@ _dma_buf_upload_accept (gpointer impl, GstBuffer * buffer, GstCaps * in_caps,
fd[i] = gst_dmabuf_memory_get_fd (mems[i]);
}
if (dmabuf->direct)
if (dmabuf->direct) {
/* Check if this format is supported by the driver */
dmabuf->n_mem = 1;
else
if (!gst_egl_image_check_dmabuf_direct (dmabuf->upload->context, in_info,
dmabuf->target))
return FALSE;
} else
dmabuf->n_mem = n_planes;
/* Now create an EGLImage for each dmabufs */
@ -762,6 +767,15 @@ _dma_buf_upload_perform (gpointer impl, GstBuffer * buffer, GstBuffer ** outbuf)
{
struct DmabufUpload *dmabuf = impl;
/* The direct path sets sinkpad caps to RGBA but this may be incorrect for
* the non-direct path, if that path fails to accept. In that case, we need
* to reconfigure.
*/
if (!dmabuf->direct &&
GST_VIDEO_INFO_FORMAT (&dmabuf->upload->priv->in_info) !=
GST_VIDEO_INFO_FORMAT (&dmabuf->out_info))
return GST_GL_UPLOAD_RECONFIGURE;
gst_gl_context_thread_add (dmabuf->upload->context,
(GstGLContextThreadFunc) _dma_buf_upload_perform_gl_thread, dmabuf);