diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/flac/gstflac.c | 5 | ||||
-rw-r--r-- | ext/speex/gstspeex.c | 4 |
2 files changed, 9 insertions, 0 deletions
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; } |