mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
plugins: fix GLTextureUploadMeta to work with different texture ids.
The GLTextureUploadMeta implementation assumed that for each upload() sequence, the supplied texture id is always the same as the one that was previously cached into the underlying GstVaapiTexture. Cope with any texture id change the expense to recreate the underlying VA/GLX resources. https://bugzilla.gnome.org/show_bug.cgi?id=719643
This commit is contained in:
parent
c2eabc17dd
commit
61f6cbffc6
4 changed files with 72 additions and 25 deletions
|
@ -35,6 +35,24 @@ G_BEGIN_DECLS
|
|||
|
||||
typedef struct _GstVaapiObject GstVaapiObject;
|
||||
|
||||
/**
|
||||
* GST_VAAPI_OBJECT_DISPLAY:
|
||||
* @object: a #GstVaapiObject
|
||||
*
|
||||
* Macro that evaluates to the #GstVaapiDisplay the @object is bound to.
|
||||
*/
|
||||
#define GST_VAAPI_OBJECT_DISPLAY(object) \
|
||||
gst_vaapi_object_get_display(GST_VAAPI_OBJECT(object))
|
||||
|
||||
/**
|
||||
* GST_VAAPI_OBJECT_ID:
|
||||
* @object: a #GstVaapiObject
|
||||
*
|
||||
* Macro that evaluates to the #GstVaapiID contained in @object.
|
||||
*/
|
||||
#define GST_VAAPI_OBJECT_ID(object) \
|
||||
gst_vaapi_object_get_id(GST_VAAPI_OBJECT(object))
|
||||
|
||||
gpointer
|
||||
gst_vaapi_object_ref(gpointer object);
|
||||
|
||||
|
|
|
@ -73,6 +73,7 @@ G_PASTE(t_n,_class)(void) \
|
|||
* Macro that evaluates to the #GstVaapiDisplay the @object is bound to.
|
||||
* This is an internal macro that does not do any run-time type check.
|
||||
*/
|
||||
#undef GST_VAAPI_OBJECT_DISPLAY
|
||||
#define GST_VAAPI_OBJECT_DISPLAY(object) \
|
||||
GST_VAAPI_OBJECT(object)->display
|
||||
|
||||
|
@ -83,6 +84,7 @@ G_PASTE(t_n,_class)(void) \
|
|||
* Macro that evaluates to the #GstVaapiID contained in @object.
|
||||
* This is an internal macro that does not do any run-time type checks.
|
||||
*/
|
||||
#undef GST_VAAPI_OBJECT_ID
|
||||
#define GST_VAAPI_OBJECT_ID(object) \
|
||||
GST_VAAPI_OBJECT(object)->object_id
|
||||
|
||||
|
|
|
@ -30,13 +30,31 @@
|
|||
#include "gstvaapipluginutil.h"
|
||||
|
||||
#if GST_CHECK_VERSION(1,1,0) && USE_GLX
|
||||
static void
|
||||
gst_vaapi_texure_upload_free(gpointer data)
|
||||
{
|
||||
GstVaapiTexture * const texture = data;
|
||||
struct _GstVaapiVideoMetaTexture {
|
||||
GstVaapiTexture *texture;
|
||||
};
|
||||
|
||||
if (texture)
|
||||
gst_vaapi_texture_unref(texture);
|
||||
static void
|
||||
meta_texture_free(GstVaapiVideoMetaTexture *meta)
|
||||
{
|
||||
if (G_UNLIKELY(!meta))
|
||||
return;
|
||||
|
||||
gst_vaapi_texture_replace(&meta->texture, NULL);
|
||||
g_slice_free(GstVaapiVideoMetaTexture, meta);
|
||||
}
|
||||
|
||||
static GstVaapiVideoMetaTexture *
|
||||
meta_texture_new(void)
|
||||
{
|
||||
GstVaapiVideoMetaTexture *meta;
|
||||
|
||||
meta = g_slice_new(GstVaapiVideoMetaTexture);
|
||||
if (!meta)
|
||||
return NULL;
|
||||
|
||||
meta->texture = NULL;
|
||||
return meta;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
@ -44,36 +62,32 @@ gst_vaapi_texture_upload(GstVideoGLTextureUploadMeta *meta, guint texture_id[4])
|
|||
{
|
||||
GstVaapiVideoMeta * const vmeta =
|
||||
gst_buffer_get_vaapi_video_meta(meta->buffer);
|
||||
GstVaapiTexture *texture = meta->user_data;
|
||||
GstVaapiVideoMetaTexture * const meta_texture = meta->user_data;
|
||||
GstVaapiSurface * const surface = gst_vaapi_video_meta_get_surface(vmeta);
|
||||
GstVaapiDisplay * const dpy =
|
||||
gst_vaapi_object_get_display(GST_VAAPI_OBJECT(surface));
|
||||
GstVaapiDisplay * const dpy = GST_VAAPI_OBJECT_DISPLAY(surface);
|
||||
|
||||
if (gst_vaapi_display_get_display_type(dpy) != GST_VAAPI_DISPLAY_TYPE_GLX)
|
||||
return FALSE;
|
||||
|
||||
if (texture) {
|
||||
GstVaapiDisplay * const tex_dpy =
|
||||
gst_vaapi_object_get_display(GST_VAAPI_OBJECT(texture));
|
||||
if (tex_dpy != dpy) {
|
||||
gst_vaapi_texture_replace(&texture, NULL);
|
||||
meta->user_data = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
if (!texture) {
|
||||
if (!meta_texture->texture ||
|
||||
/* Check whether VA display changed */
|
||||
GST_VAAPI_OBJECT_DISPLAY(meta_texture->texture) != dpy ||
|
||||
/* Check whether texture id changed */
|
||||
gst_vaapi_texture_get_id(meta_texture->texture) != texture_id[0]) {
|
||||
/* FIXME: should we assume target? */
|
||||
texture = gst_vaapi_texture_new_with_texture(dpy, texture_id[0],
|
||||
GstVaapiTexture * const texture =
|
||||
gst_vaapi_texture_new_with_texture(dpy, texture_id[0],
|
||||
GL_TEXTURE_2D, GL_RGBA);
|
||||
gst_vaapi_texture_replace(&meta_texture->texture, texture);
|
||||
if (!texture)
|
||||
return FALSE;
|
||||
meta->user_data = texture;
|
||||
gst_vaapi_texture_unref(texture);
|
||||
}
|
||||
|
||||
if (!gst_vaapi_apply_composition(surface, meta->buffer))
|
||||
GST_WARNING("could not update subtitles");
|
||||
|
||||
return gst_vaapi_texture_put_surface(texture, surface,
|
||||
return gst_vaapi_texture_put_surface(meta_texture->texture, surface,
|
||||
gst_vaapi_video_meta_get_render_flags(vmeta));
|
||||
}
|
||||
|
||||
|
@ -82,15 +96,26 @@ gst_buffer_add_texture_upload_meta(GstBuffer *buffer)
|
|||
{
|
||||
GstVideoGLTextureUploadMeta *meta = NULL;
|
||||
GstVideoGLTextureType tex_type[] = { GST_VIDEO_GL_TEXTURE_TYPE_RGBA };
|
||||
GstVaapiVideoMetaTexture *meta_texture;
|
||||
|
||||
if (!buffer)
|
||||
return FALSE;
|
||||
|
||||
meta_texture = meta_texture_new();
|
||||
if (!meta_texture)
|
||||
return FALSE;
|
||||
|
||||
meta = gst_buffer_add_video_gl_texture_upload_meta(buffer,
|
||||
GST_VIDEO_GL_TEXTURE_ORIENTATION_X_NORMAL_Y_NORMAL,
|
||||
1, tex_type, gst_vaapi_texture_upload,
|
||||
NULL, NULL, gst_vaapi_texure_upload_free);
|
||||
return meta != NULL;
|
||||
meta_texture, NULL, (GBoxedFreeFunc)meta_texture_free);
|
||||
if (!meta)
|
||||
goto error;
|
||||
return TRUE;
|
||||
|
||||
error:
|
||||
meta_texture_free(meta_texture);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
gboolean
|
||||
|
|
|
@ -31,6 +31,8 @@
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
typedef struct _GstVaapiVideoMetaTexture GstVaapiVideoMetaTexture;
|
||||
|
||||
G_GNUC_INTERNAL
|
||||
gboolean
|
||||
gst_buffer_add_texture_upload_meta(GstBuffer *buffer);
|
||||
|
|
Loading…
Reference in a new issue