diff options
Diffstat (limited to 'sys/glsink/gstopengl.c')
-rw-r--r-- | sys/glsink/gstopengl.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/sys/glsink/gstopengl.c b/sys/glsink/gstopengl.c index d44ed9f2..7acbe1fd 100644 --- a/sys/glsink/gstopengl.c +++ b/sys/glsink/gstopengl.c @@ -34,7 +34,8 @@ GType gst_gl_upload_get_type (void); GType gst_gl_download_get_type (void); -GType gst_gl_filter_get_type (void); +GType gst_gl_filter_example_get_type (void); +GType gst_gl_convert_get_type (void); GType gst_gl_test_src_get_type (void); @@ -56,8 +57,12 @@ plugin_init (GstPlugin * plugin) GST_RANK_NONE, gst_gl_download_get_type ())) { return FALSE; } - if (!gst_element_register (plugin, "glfilter", - GST_RANK_NONE, gst_gl_filter_get_type ())) { + if (!gst_element_register (plugin, "glfilterexample", + GST_RANK_NONE, gst_gl_filter_example_get_type ())) { + return FALSE; + } + if (!gst_element_register (plugin, "glconvert", + GST_RANK_NONE, gst_gl_convert_get_type ())) { return FALSE; } if (!gst_element_register (plugin, "gltestsrc", |