From 66310b80de52b2029d08ff41f81bef299053e175 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 8 Feb 2006 17:12:40 +0000 Subject: [PATCH] ext/: Register musicbrainz tags. Original commit message from CVS: * ext/flac/gstflac.c: (plugin_init): * ext/speex/gstspeex.c: (plugin_init): Register musicbrainz tags. --- ChangeLog | 6 ++++++ ext/flac/gstflac.c | 5 +++++ ext/speex/gstspeex.c | 4 ++++ 3 files changed, 15 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8656c741fd..7fdb162adc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-02-07 Tim-Philipp Müller + + * ext/flac/gstflac.c: (plugin_init): + * ext/speex/gstspeex.c: (plugin_init): + Register musicbrainz tags. + 2006-02-07 Tim-Philipp Müller * ext/gconf/gconf.h: diff --git a/ext/flac/gstflac.c b/ext/flac/gstflac.c index 5f13a1585c..38ab07ec94 100644 --- a/ext/flac/gstflac.c +++ b/ext/flac/gstflac.c @@ -27,6 +27,8 @@ #include "flac_compat.h" +#include + static gboolean plugin_init (GstPlugin * plugin) { @@ -41,6 +43,9 @@ plugin_init (GstPlugin * plugin) gst_flac_tag_get_type ())) return FALSE; #endif + + gst_tag_register_musicbrainz_tags (); + return TRUE; } diff --git a/ext/speex/gstspeex.c b/ext/speex/gstspeex.c index e77c9e3715..dcea183e09 100644 --- a/ext/speex/gstspeex.c +++ b/ext/speex/gstspeex.c @@ -23,6 +23,8 @@ #include "gstspeexdec.h" #include "gstspeexenc.h" +#include + static gboolean plugin_init (GstPlugin * plugin) { @@ -35,6 +37,8 @@ plugin_init (GstPlugin * plugin) GST_TYPE_SPEEXDEC)) return FALSE; + gst_tag_register_musicbrainz_tags (); + return TRUE; }