diff options
author | Matthew Waters <matthew@centricular.com> | 2015-02-20 16:47:01 +1100 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2015-03-12 16:45:50 +0000 |
commit | 8a0017e21d5f9a8507f0593c6b24f723aa415258 (patch) | |
tree | 4043ef781fce40ea74fbf005fe822e3e9882a229 /ext/gl/gstopengl.c | |
parent | b0600aca97e28a0595fc1cc814305c7681a347c2 (diff) | |
download | gstreamer-plugins-bad-8a0017e21d5f9a8507f0593c6b24f723aa415258.tar.gz |
glimagesink: implement as a bin
glupload ! glcolorconvert ! sink
Some properties are manually forwarded. The rest are available using
GstChildProxy.
The two signals are forwarded as well.
Diffstat (limited to 'ext/gl/gstopengl.c')
-rw-r--r-- | ext/gl/gstopengl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gl/gstopengl.c b/ext/gl/gstopengl.c index 324dab6fb..8f3596d18 100644 --- a/ext/gl/gstopengl.c +++ b/ext/gl/gstopengl.c @@ -113,7 +113,7 @@ plugin_init (GstPlugin * plugin) #endif if (!gst_element_register (plugin, "glimagesink", - GST_RANK_SECONDARY, GST_TYPE_GLIMAGE_SINK)) { + GST_RANK_SECONDARY, gst_gl_image_sink_bin_get_type ())) { return FALSE; } |