summaryrefslogtreecommitdiffstats
path: root/ext/speex
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 /ext/speex
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.
Diffstat (limited to 'ext/speex')
-rw-r--r--ext/speex/gstspeex.c4
1 files changed, 4 insertions, 0 deletions
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;
}