mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 15:08:53 +00:00
#139926 - lowers rank of id3tag
Original commit message from CVS: #139926 - lowers rank of id3tag
This commit is contained in:
parent
f38875fca8
commit
121a598de8
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* ext/mad/gstid3tag.c: (plugin_init):
|
||||||
|
lower rank of id3tag as proposed by Benjamin. Fixes #139926.
|
||||||
|
|
||||||
2004-04-13 David Schleef <ds@schleef.org>
|
2004-04-13 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* common/m4/gst-feature.m4: Call -config scripts with
|
* common/m4/gst-feature.m4: Call -config scripts with
|
||||||
|
|
|
@ -1162,9 +1162,12 @@ plugin_init (GstPlugin * plugin)
|
||||||
if (!gst_library_load ("gsttags"))
|
if (!gst_library_load ("gsttags"))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
/* We register id3tag with a rank one less than mad so that mad always
|
||||||
|
gets picked before id3tag if possible. This avoids multiple plugging
|
||||||
|
of id3tag in the autoplugger for now. */
|
||||||
if (!gst_element_register (plugin, "mad", GST_RANK_PRIMARY,
|
if (!gst_element_register (plugin, "mad", GST_RANK_PRIMARY,
|
||||||
gst_mad_get_type ())
|
gst_mad_get_type ())
|
||||||
|| !gst_element_register (plugin, "id3tag", GST_RANK_PRIMARY,
|
|| !gst_element_register (plugin, "id3tag", GST_RANK_PRIMARY - 1,
|
||||||
gst_id3_tag_get_type ()))
|
gst_id3_tag_get_type ()))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue