summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLionel Landwerlin <lionel.g.landwerlin@intel.com>2014-07-17 11:33:34 +0100
committerLionel Landwerlin <lionel.g.landwerlin@intel.com>2014-07-17 11:33:34 +0100
commit2d1a55bb3c201dc1ee05732fac743e9ed3f14056 (patch)
treed5950f38c8abbdc550da7d6df2b84be71d8b27ef
parent82207d0c18b62267eefd9c332f9f2d9285628fbc (diff)
downloadclutter-gst-2d1a55bb3c201dc1ee05732fac743e9ed3f14056.tar.gz
plugin: don't register cluttervideosink
Since this sink doesn't actually display anything but let's you extract video frame that you can then display in a Clutter scene, it is kind of pointless to register this plugin. It was also causing a crash with gst-inspect. https://bugzilla.gnome.org/show_bug.cgi?id=733284
-rw-r--r--clutter-gst/clutter-gst-plugin.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/clutter-gst/clutter-gst-plugin.c b/clutter-gst/clutter-gst-plugin.c
index 3f15694..3f6d5a1 100644
--- a/clutter-gst/clutter-gst-plugin.c
+++ b/clutter-gst/clutter-gst-plugin.c
@@ -60,13 +60,6 @@ plugin_init (GstPlugin *plugin)
if (!ret)
return FALSE;
- ret = gst_element_register (plugin,
- "cluttervideosink",
- GST_RANK_NONE,
- CLUTTER_GST_TYPE_VIDEO_SINK);
- if (!ret)
- return FALSE;
-
return TRUE;
}