mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:46:13 +00:00
ext/: Register musicbrainz tags.
Original commit message from CVS: * ext/flac/gstflac.c: (plugin_init): * ext/speex/gstspeex.c: (plugin_init): Register musicbrainz tags.
This commit is contained in:
parent
8a4adb4ab9
commit
66310b80de
3 changed files with 15 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
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>
|
2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* ext/gconf/gconf.h:
|
* ext/gconf/gconf.h:
|
||||||
|
|
|
@ -27,6 +27,8 @@
|
||||||
|
|
||||||
#include "flac_compat.h"
|
#include "flac_compat.h"
|
||||||
|
|
||||||
|
#include <gst/tag/tag.h>
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GstPlugin * plugin)
|
plugin_init (GstPlugin * plugin)
|
||||||
{
|
{
|
||||||
|
@ -41,6 +43,9 @@ plugin_init (GstPlugin * plugin)
|
||||||
gst_flac_tag_get_type ()))
|
gst_flac_tag_get_type ()))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
gst_tag_register_musicbrainz_tags ();
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,8 @@
|
||||||
#include "gstspeexdec.h"
|
#include "gstspeexdec.h"
|
||||||
#include "gstspeexenc.h"
|
#include "gstspeexenc.h"
|
||||||
|
|
||||||
|
#include <gst/tag/tag.h>
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GstPlugin * plugin)
|
plugin_init (GstPlugin * plugin)
|
||||||
{
|
{
|
||||||
|
@ -35,6 +37,8 @@ plugin_init (GstPlugin * plugin)
|
||||||
GST_TYPE_SPEEXDEC))
|
GST_TYPE_SPEEXDEC))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
gst_tag_register_musicbrainz_tags ();
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue