mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
id3mux: Set to GST_RANK_PRIMARY
We want it to take precedence over any other id3 formatter.
This commit is contained in:
parent
825052ba3d
commit
bcb8eab616
1 changed files with 2 additions and 1 deletions
|
@ -214,7 +214,8 @@ plugin_init (GstPlugin * plugin)
|
||||||
GST_DEBUG_CATEGORY_INIT (gst_id3_mux_debug, "id3mux", 0,
|
GST_DEBUG_CATEGORY_INIT (gst_id3_mux_debug, "id3mux", 0,
|
||||||
"ID3 v1 and v2 tag muxer");
|
"ID3 v1 and v2 tag muxer");
|
||||||
|
|
||||||
if (!gst_element_register (plugin, "id3mux", GST_RANK_NONE, GST_TYPE_ID3_MUX))
|
if (!gst_element_register (plugin, "id3mux", GST_RANK_PRIMARY,
|
||||||
|
GST_TYPE_ID3_MUX))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
gst_tag_register_musicbrainz_tags ();
|
gst_tag_register_musicbrainz_tags ();
|
||||||
|
|
Loading…
Reference in a new issue