diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-09-22 15:59:59 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-09-22 15:59:59 +0000 |
commit | c8cc86df2a95d9629ebd4f97afae355e2b4d71e8 (patch) | |
tree | 6149c6e88a460939116c71943d8e9b841c61c8b9 | |
parent | 69cffbcbd2c4b73c58a877b13936198146952505 (diff) | |
download | gst-plugins-bad-c8cc86df2a95d9629ebd4f97afae355e2b4d71e8.tar.gz gst-plugins-bad-c8cc86df2a95d9629ebd4f97afae355e2b4d71e8.tar.bz2 gst-plugins-bad-c8cc86df2a95d9629ebd4f97afae355e2b4d71e8.zip |
ext/directfb/dfbvideosink.c: Lower rank from SECONDARY to MARGINAL. Plugins in -bad that might be autoplugged shouldn...
Original commit message from CVS:
* ext/directfb/dfbvideosink.c: (plugin_init):
Lower rank from SECONDARY to MARGINAL. Plugins in -bad that might
be autoplugged shouldn't trump plugins in -base, -good or -ugly
(in this case ximagesink).
* sys/glsink/glimagesink.c: (plugin_init):
Set rank to NONE to prevent it from being autoplugged until
errors are handled properly (see #357212).
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | ext/directfb/dfbvideosink.c | 2 | ||||
-rw-r--r-- | sys/glsink/glimagesink.c | 2 |
3 files changed, 13 insertions, 2 deletions
@@ -1,3 +1,14 @@ +2006-09-22 Tim-Philipp Müller <tim at centricular dot net> + + * ext/directfb/dfbvideosink.c: (plugin_init): + Lower rank from SECONDARY to MARGINAL. Plugins in -bad that might + be autoplugged shouldn't trump plugins in -base, -good or -ugly + (in this case ximagesink). + + * sys/glsink/glimagesink.c: (plugin_init): + Set rank to NONE to prevent it from being autoplugged until + errors are handled properly (see #357212). + 2006-09-21 Edgard Lima <edgard.lima@indt.org.br> * ext/neon/Makefile.am: diff --git a/ext/directfb/dfbvideosink.c b/ext/directfb/dfbvideosink.c index e6aa8277..9d1cca10 100644 --- a/ext/directfb/dfbvideosink.c +++ b/ext/directfb/dfbvideosink.c @@ -2382,7 +2382,7 @@ gst_dfbvideosink_get_type (void) static gboolean plugin_init (GstPlugin * plugin) { - if (!gst_element_register (plugin, "dfbvideosink", GST_RANK_PRIMARY, + if (!gst_element_register (plugin, "dfbvideosink", GST_RANK_MARGINAL, GST_TYPE_DFBVIDEOSINK)) return FALSE; diff --git a/sys/glsink/glimagesink.c b/sys/glsink/glimagesink.c index c62ae8d7..ad1cee14 100644 --- a/sys/glsink/glimagesink.c +++ b/sys/glsink/glimagesink.c @@ -796,7 +796,7 @@ static gboolean plugin_init (GstPlugin * plugin) { if (!gst_element_register (plugin, "glimagesink", - GST_RANK_SECONDARY, GST_TYPE_GLIMAGE_SINK)) + GST_RANK_NONE, GST_TYPE_GLIMAGE_SINK)) return FALSE; GST_DEBUG_CATEGORY_INIT (gst_debug_glimage_sink, "glimagesink", 0, |