From 66310b80de52b2029d08ff41f81bef299053e175 Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Wed, 8 Feb 2006 17:12:40 +0000 Subject: ext/: Register musicbrainz tags. Original commit message from CVS: * ext/flac/gstflac.c: (plugin_init): * ext/speex/gstspeex.c: (plugin_init): Register musicbrainz tags. --- ext/flac/gstflac.c | 5 +++++ ext/speex/gstspeex.c | 4 ++++ 2 files changed, 9 insertions(+) (limited to 'ext') diff --git a/ext/flac/gstflac.c b/ext/flac/gstflac.c index 5f13a158..38ab07ec 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 e77c9e37..dcea183e 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; } -- cgit