diff options
Diffstat (limited to 'sys/glsink/gstopengl.c')
-rw-r--r-- | sys/glsink/gstopengl.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/glsink/gstopengl.c b/sys/glsink/gstopengl.c index 4889e0a6..d44ed9f2 100644 --- a/sys/glsink/gstopengl.c +++ b/sys/glsink/gstopengl.c @@ -35,6 +35,7 @@ GType gst_gl_upload_get_type (void); GType gst_gl_download_get_type (void); GType gst_gl_filter_get_type (void); +GType gst_gl_test_src_get_type (void); static gboolean @@ -59,6 +60,10 @@ plugin_init (GstPlugin * plugin) GST_RANK_NONE, gst_gl_filter_get_type ())) { return FALSE; } + if (!gst_element_register (plugin, "gltestsrc", + GST_RANK_NONE, gst_gl_test_src_get_type ())) { + return FALSE; + } return TRUE; } |