Split libgsttag docs into multiple sections.
[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 /**
31  * SECTION:gsttag
32  * @short_description: additional tag definitions for plugins and applications
33  * @see_also: #GstTagList
34  * 
35  * <refsect2>
36  * <para>
37  * Contains additional standardized GStreamer tag definitions for plugins
38  * and applications, and functions to register them with the GStreamer
39  * tag system.
40  * </para>
41  * </refsect2>
42  */
43
44
45 static gpointer
46 gst_tag_register_musicbrainz_tags_internal (gpointer unused)
47 {
48 #ifdef ENABLE_NLS
49   GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
50       LOCALEDIR);
51   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
52 #endif
53
54   gst_tag_register (GST_TAG_MUSICBRAINZ_TRACKID, GST_TAG_FLAG_META,
55       G_TYPE_STRING, _("track ID"), _("MusicBrainz track ID"), NULL);
56   gst_tag_register (GST_TAG_MUSICBRAINZ_ARTISTID, GST_TAG_FLAG_META,
57       G_TYPE_STRING, _("artist ID"), _("MusicBrainz artist ID"), NULL);
58   gst_tag_register (GST_TAG_MUSICBRAINZ_ALBUMID, GST_TAG_FLAG_META,
59       G_TYPE_STRING, _("album ID"), _("MusicBrainz album ID"), NULL);
60   gst_tag_register (GST_TAG_MUSICBRAINZ_ALBUMARTISTID, GST_TAG_FLAG_META,
61       G_TYPE_STRING,
62       _("album artist ID"), _("MusicBrainz album artist ID"), NULL);
63   gst_tag_register (GST_TAG_MUSICBRAINZ_TRMID, GST_TAG_FLAG_META,
64       G_TYPE_STRING, _("track TRM ID"), _("MusicBrainz TRM ID"), NULL);
65   gst_tag_register (GST_TAG_MUSICBRAINZ_SORTNAME, GST_TAG_FLAG_META,
66       G_TYPE_STRING,
67       _("artist sortname"), _("MusicBrainz artist sortname"), NULL);
68
69   return NULL;
70 }
71
72 /**
73  * gst_tag_register_musicbrainz_tags
74  *
75  * Registers additional musicbrainz-specific tags with the GStreamer tag
76  * system. Plugins and applications that use these tags should call this
77  * function before using them. Can be called multiple times.
78  */
79 void
80 gst_tag_register_musicbrainz_tags (void)
81 {
82   static GOnce mb_once = G_ONCE_INIT;
83
84   g_once (&mb_once, gst_tag_register_musicbrainz_tags_internal, NULL);
85 }