mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
ext/vorbis/vorbis.c: Register musicbrainz tags, so apps don't have to.
Original commit message from CVS: * ext/vorbis/vorbis.c: (plugin_init): Register musicbrainz tags, so apps don't have to.
This commit is contained in:
parent
148b83dd20
commit
46a95c1243
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* ext/vorbis/vorbis.c: (plugin_init):
|
||||
Register musicbrainz tags, so apps don't have to.
|
||||
|
||||
2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "gst/tag/tag.h"
|
||||
|
||||
#include "vorbisenc.h"
|
||||
#include "vorbisdec.h"
|
||||
#include "vorbisparse.h"
|
||||
|
@ -50,6 +52,9 @@ plugin_init (GstPlugin * plugin)
|
|||
"vorbis decoding element");
|
||||
GST_DEBUG_CATEGORY_INIT (vorbisparse_debug, "vorbisparse", 0,
|
||||
"vorbis parsing element");
|
||||
|
||||
gst_tag_register_musicbrainz_tags ();
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue