mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
ext/hermes/gsthermescolorspace.c: decrease rank by 2 to not interfere with other colorspaces.
Original commit message from CVS: * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank by 2 to not interfere with other colorspaces. * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by one to not interfere with ffmpeg_colorspace.
This commit is contained in:
parent
ba36f77123
commit
059d8f644c
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
2004-03-29 David Schleef <ds@schleef.org>
|
||||
|
||||
* ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
|
||||
by 2 to not interfere with other colorspaces.
|
||||
* ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
|
||||
* gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
|
||||
one to not interfere with ffmpeg_colorspace.
|
||||
|
||||
2004-03-29 David Schleef <ds@schleef.org>
|
||||
|
||||
* ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
|
||||
|
|
|
@ -656,7 +656,7 @@ plugin_init (GstPlugin * plugin)
|
|||
hermes_res = Hermes_Init ();
|
||||
g_return_val_if_fail (hermes_res != 0, FALSE);
|
||||
|
||||
if (!gst_element_register (plugin, "hermescolorspace", GST_RANK_PRIMARY,
|
||||
if (!gst_element_register (plugin, "hermescolorspace", GST_RANK_PRIMARY - 2,
|
||||
GST_TYPE_COLORSPACE))
|
||||
return FALSE;
|
||||
|
||||
|
|
|
@ -621,7 +621,7 @@ gst_colorspace_get_property (GObject * object, guint prop_id, GValue * value,
|
|||
static gboolean
|
||||
plugin_init (GstPlugin * plugin)
|
||||
{
|
||||
if (!gst_element_register (plugin, "colorspace", GST_RANK_PRIMARY,
|
||||
if (!gst_element_register (plugin, "colorspace", GST_RANK_PRIMARY - 1,
|
||||
GST_TYPE_COLORSPACE))
|
||||
return FALSE;
|
||||
|
||||
|
|
Loading…
Reference in a new issue