diff options
author | David Schleef <ds@schleef.org> | 2004-03-30 07:07:46 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2004-03-30 07:07:46 +0000 |
commit | 059d8f644cb3db1929e95e25e69e2054a5412869 (patch) | |
tree | 8b0ce4b8db0473af35e0e8809f98bbec32e34c27 | |
parent | ba36f77123a92d7806cd59c0eb88c9faac62bf36 (diff) | |
download | gst-plugins-bad-059d8f644cb3db1929e95e25e69e2054a5412869.tar.gz gst-plugins-bad-059d8f644cb3db1929e95e25e69e2054a5412869.tar.bz2 gst-plugins-bad-059d8f644cb3db1929e95e25e69e2054a5412869.zip |
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.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | ext/hermes/gsthermescolorspace.c | 2 | ||||
-rw-r--r-- | gst/colorspace/gstcolorspace.c | 2 |
3 files changed, 10 insertions, 2 deletions
@@ -1,5 +1,13 @@ 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 aren't in the caps. * gst/sine/gstsinesrc.c: change rate caps to [1,MAX] diff --git a/ext/hermes/gsthermescolorspace.c b/ext/hermes/gsthermescolorspace.c index 03ea4dfe..78c7ec1c 100644 --- a/ext/hermes/gsthermescolorspace.c +++ b/ext/hermes/gsthermescolorspace.c @@ -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; diff --git a/gst/colorspace/gstcolorspace.c b/gst/colorspace/gstcolorspace.c index fb7f8db0..754943c8 100644 --- a/gst/colorspace/gstcolorspace.c +++ b/gst/colorspace/gstcolorspace.c @@ -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; |