gst-libs/gst/tag/: Forward-port some tags stuff from the 0.8 branch. This is mostly...
[platform/upstream/gstreamer.git] / gst-libs / gst / tag / tags.c
1 /* GStreamer
2  * Copyright (C) 2005 Ross Burton <ross@burtonini.com>
3  *
4  * tags.c: Non-core tag registration
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include <gst/gst-i18n-plugin.h>
27 #include <gst/gst.h>
28 #include "tag.h"
29
30 static gpointer
31 gst_tag_register_musicbrainz_tags_internal (gpointer unused)
32 {
33 #ifdef ENABLE_NLS
34   GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
35       LOCALEDIR);
36   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
37 #endif
38
39   gst_tag_register (GST_TAG_MUSICBRAINZ_TRACKID, GST_TAG_FLAG_META,
40       G_TYPE_STRING, _("track ID"), _("MusicBrainz track ID"), NULL);
41   gst_tag_register (GST_TAG_MUSICBRAINZ_ARTISTID, GST_TAG_FLAG_META,
42       G_TYPE_STRING, _("artist ID"), _("MusicBrainz artist ID"), NULL);
43   gst_tag_register (GST_TAG_MUSICBRAINZ_ALBUMID, GST_TAG_FLAG_META,
44       G_TYPE_STRING, _("album ID"), _("MusicBrainz album ID"), NULL);
45   gst_tag_register (GST_TAG_MUSICBRAINZ_ALBUMARTISTID, GST_TAG_FLAG_META,
46       G_TYPE_STRING,
47       _("album artist ID"), _("MusicBrainz album artist ID"), NULL);
48   gst_tag_register (GST_TAG_MUSICBRAINZ_TRMID, GST_TAG_FLAG_META,
49       G_TYPE_STRING, _("track TRM ID"), _("MusicBrainz TRM ID"), NULL);
50   gst_tag_register (GST_TAG_MUSICBRAINZ_SORTNAME, GST_TAG_FLAG_META,
51       G_TYPE_STRING,
52       _("artist sortname"), _("MusicBrainz artist sortname"), NULL);
53
54   return NULL;
55 }
56
57 void
58 gst_tag_register_musicbrainz_tags (void)
59 {
60   static GOnce mb_once = G_ONCE_INIT;
61
62   g_once (&mb_once, gst_tag_register_musicbrainz_tags_internal, NULL);
63 }