summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-02-08 17:12:40 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-02-08 17:12:40 +0000
commit66310b80de52b2029d08ff41f81bef299053e175 (patch)
tree98a99ee29693408131ed1cd80d7ffa0f68bb03d4
parent8a4adb4ab931793ef29f23f157e762574c586b4c (diff)
ext/: Register musicbrainz tags.
Original commit message from CVS: * ext/flac/gstflac.c: (plugin_init): * ext/speex/gstspeex.c: (plugin_init): Register musicbrainz tags.
-rw-r--r--ChangeLog6
-rw-r--r--ext/flac/gstflac.c5
-rw-r--r--ext/speex/gstspeex.c4
3 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8656c741..7fdb162a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
+ * ext/flac/gstflac.c: (plugin_init):
+ * ext/speex/gstspeex.c: (plugin_init):
+ Register musicbrainz tags.
+
+2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
+
* ext/gconf/gconf.h:
Remove declaration of function that no longer exists.
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 <gst/tag/tag.h>
+
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 <gst/tag/tag.h>
+
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;
}