mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-29 20:35:40 +00:00
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).
This commit is contained in:
parent
69cffbcbd2
commit
c8cc86df2a
3 changed files with 13 additions and 2 deletions
11
ChangeLog
11
ChangeLog
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue