From 41d3ca819dc7d17c80f6be899fea1391096c8adf Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Mon, 11 May 2015 22:37:44 +1000 Subject: [PATCH] gl: expose internal glvideomixerelement\ We might want more control over the exact pipeline Also reduces overhead --- ext/gl/gstopengl.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ext/gl/gstopengl.c b/ext/gl/gstopengl.c index f5246e6545..a1e5e51ace 100644 --- a/ext/gl/gstopengl.c +++ b/ext/gl/gstopengl.c @@ -181,6 +181,11 @@ plugin_init (GstPlugin * plugin) return FALSE; } + if (!gst_element_register (plugin, "glvideomixerelement", + GST_RANK_NONE, gst_gl_video_mixer_get_type ())) { + return FALSE; + } + if (!gst_element_register (plugin, "glshader", GST_RANK_NONE, gst_gl_filtershader_get_type ())) { return FALSE;