diff options
Diffstat (limited to 'ext/gl/gstopengl.c')
-rw-r--r-- | ext/gl/gstopengl.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/gl/gstopengl.c b/ext/gl/gstopengl.c index 8f3596d18..c47a8e87e 100644 --- a/ext/gl/gstopengl.c +++ b/ext/gl/gstopengl.c @@ -49,6 +49,7 @@ #include "gstglcolorconvertelement.h" #include "gstglfilterbin.h" #include "gstglsinkbin.h" +#include "gstglmixerbin.h" #include "gstglfiltercube.h" #include "gstgleffects.h" @@ -142,6 +143,11 @@ plugin_init (GstPlugin * plugin) return FALSE; } + if (!gst_element_register (plugin, "glmixerbin", + GST_RANK_NONE, GST_TYPE_GL_MIXER_BIN)) { + return FALSE; + } + if (!gst_element_register (plugin, "glfiltercube", GST_RANK_NONE, GST_TYPE_GL_FILTER_CUBE)) { return FALSE; |