ext/: Register musicbrainz tags.
authorTim-Philipp Müller <tim@centricular.net>
Wed, 8 Feb 2006 17:12:40 +0000 (17:12 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Wed, 8 Feb 2006 17:12:40 +0000 (17:12 +0000)
Original commit message from CVS:
* ext/flac/gstflac.c: (plugin_init):
* ext/speex/gstspeex.c: (plugin_init):
Register musicbrainz tags.

ChangeLog
ext/flac/gstflac.c
ext/speex/gstspeex.c

index 8656c74..7fdb162 100644 (file)
--- 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.
 
index 5f13a15..38ab07e 100644 (file)
@@ -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;
 }
 
index e77c9e3..dcea183 100644 (file)
@@ -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;
 }