diff options
author | Matthew Waters <matthew@centricular.com> | 2015-02-25 23:48:56 +1100 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2015-03-12 16:45:51 +0000 |
commit | 9e605fca6c4d8f06279fbc173a0d460cb1387efd (patch) | |
tree | 8c38891c97514032799175d01cc18f3218f9aa20 /ext/gl/gstopengl.c | |
parent | 8a0017e21d5f9a8507f0593c6b24f723aa415258 (diff) | |
download | gstreamer-plugins-bad-9e605fca6c4d8f06279fbc173a0d460cb1387efd.tar.gz |
gl: new glmixerbin element
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; |