gst/gstbuffer.c: (gst_buffer_free_chunk): Added gst_buffer_get_type() and changed...
[platform/upstream/gstreamer.git] / gst / gsttaglist.h
1 /* GStreamer
2  * Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
3  *
4  * gsttag.h: Header for tag support
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
23 #ifndef __GST_TAG_H__
24 #define __GST_TAG_H__
25
26 #include <gst/gststructure.h>
27 #include <gst/gstevent.h>
28
29 G_BEGIN_DECLS
30
31 typedef enum {
32   GST_TAG_MERGE_UNDEFINED,
33   GST_TAG_MERGE_REPLACE_ALL,
34   GST_TAG_MERGE_REPLACE,
35   GST_TAG_MERGE_APPEND,
36   GST_TAG_MERGE_PREPEND,
37   GST_TAG_MERGE_KEEP,
38   GST_TAG_MERGE_KEEP_ALL,
39   /* add more */
40   GST_TAG_MERGE_COUNT
41 } GstTagMergeMode;
42 #define GST_TAG_MODE_IS_VALID(mode)     (((mode) > GST_TAG_MERGE_UNDEFINED) && ((mode) < GST_TAG_MERGE_COUNT))
43
44 typedef enum {
45   GST_TAG_FLAG_UNDEFINED,
46   GST_TAG_FLAG_META,
47   GST_TAG_FLAG_ENCODED,
48   GST_TAG_FLAG_DECODED,
49   GST_TAG_FLAG_COUNT
50 } GstTagFlag;
51 #define GST_TAG_FLAG_IS_VALID(flag)     (((flag) > GST_TAG_FLAG_UNDEFINED) && ((flag) < GST_TAG_FLAG_COUNT))
52
53 typedef GstStructure GstTagList;
54 #define GST_TAG_LIST(x)         ((GstTagList *) (x))
55 #define GST_IS_TAG_LIST(x)      (gst_is_tag_list (GST_TAG_LIST (x)))
56 #define GST_TYPE_TAG_LIST       (gst_tag_list_get_type ())
57
58 typedef void            (* GstTagForeachFunc)   (const GstTagList *list, const gchar *tag, gpointer user_data);
59 typedef void            (* GstTagMergeFunc)     (GValue *dest, const GValue *src);
60
61 /* initialize tagging system */
62 void            _gst_tag_initialize             (void);
63 GType           gst_tag_list_get_type           (void);
64
65 void            gst_tag_register                (const gchar *          name,
66                                                  GstTagFlag             flag,
67                                                  GType                  type,
68                                                  const gchar *          nick,
69                                                  const gchar *          blurb,
70                                                  GstTagMergeFunc        func);
71 /* some default merging functions */
72 void            gst_tag_merge_use_first         (GValue *               dest,
73                                                  const GValue *         src);
74 void            gst_tag_merge_strings_with_comma (GValue *              dest,
75                                                  const GValue *         src);
76
77 /* basic tag support */
78 gboolean        gst_tag_exists                  (const gchar *          tag);
79 GType           gst_tag_get_type                (const gchar *          tag);
80 G_CONST_RETURN gchar *
81                 gst_tag_get_nick                (const gchar *          tag);
82 G_CONST_RETURN gchar *
83                 gst_tag_get_description         (const gchar *          tag);
84 GstTagFlag      gst_tag_get_flag                (const gchar *          tag);
85 gboolean        gst_tag_is_fixed                (const gchar *          tag);
86
87 /* tag lists */
88 GstTagList *    gst_tag_list_new                (void);
89 gboolean        gst_is_tag_list                 (gconstpointer          p);
90 GstTagList *    gst_tag_list_copy               (const GstTagList *     list);
91 void            gst_tag_list_insert             (GstTagList *           into,
92                                                  const GstTagList *     from,
93                                                  GstTagMergeMode        mode);
94 GstTagList *    gst_tag_list_merge              (const GstTagList *     list1,
95                                                  const GstTagList *     list2,
96                                                  GstTagMergeMode        mode);
97 void            gst_tag_list_free               (GstTagList *           list);
98 guint           gst_tag_list_get_tag_size       (const GstTagList *     list,
99                                                  const gchar *          tag);
100 void            gst_tag_list_add                (GstTagList *           list,
101                                                  GstTagMergeMode        mode,
102                                                  const gchar *          tag,
103                                                  ...);
104 void            gst_tag_list_add_values         (GstTagList *           list,
105                                                  GstTagMergeMode        mode,
106                                                  const gchar *          tag,
107                                                  ...);
108 void            gst_tag_list_add_valist         (GstTagList *           list,
109                                                  GstTagMergeMode        mode,
110                                                  const gchar *          tag,
111                                                  va_list                var_args);
112 void            gst_tag_list_add_valist_values  (GstTagList *           list,
113                                                  GstTagMergeMode        mode,
114                                                  const gchar *          tag,
115                                                  va_list                var_args);
116 void            gst_tag_list_remove_tag         (GstTagList *           list,
117                                                  const gchar *          tag);
118 void            gst_tag_list_foreach            (GstTagList *           list,
119                                                  GstTagForeachFunc      func,
120                                                  gpointer               user_data);
121
122 G_CONST_RETURN GValue *
123                 gst_tag_list_get_value_index    (const GstTagList *     list,
124                                                  const gchar *          tag,
125                                                  guint                  index);
126 gboolean        gst_tag_list_copy_value         (GValue *               dest,
127                                                  const GstTagList *     list,
128                                                  const gchar *          tag);
129
130 /* simplifications (FIXME: do we want them?) */
131 gboolean        gst_tag_list_get_char           (const GstTagList *     list,
132                                                  const gchar *          tag,
133                                                  gchar *                value);
134 gboolean        gst_tag_list_get_char_index     (const GstTagList *     list,
135                                                  const gchar *          tag,
136                                                  guint                  index,
137                                                  gchar *                value);
138 gboolean        gst_tag_list_get_uchar          (const GstTagList *     list,
139                                                  const gchar *          tag,
140                                                  guchar *               value);
141 gboolean        gst_tag_list_get_uchar_index    (const GstTagList *     list,
142                                                  const gchar *          tag,
143                                                  guint                  index,
144                                                  guchar *               value);
145 gboolean        gst_tag_list_get_boolean        (const GstTagList *     list,
146                                                  const gchar *          tag,
147                                                  gboolean *             value);
148 gboolean        gst_tag_list_get_boolean_index  (const GstTagList *     list,
149                                                  const gchar *          tag,
150                                                  guint                  index,
151                                                  gboolean *             value);
152 gboolean        gst_tag_list_get_int            (const GstTagList *     list,
153                                                  const gchar *          tag,
154                                                  gint *                 value);
155 gboolean        gst_tag_list_get_int_index      (const GstTagList *     list,
156                                                  const gchar *          tag,
157                                                  guint                  index,
158                                                  gint *                 value);
159 gboolean        gst_tag_list_get_uint           (const GstTagList *     list,
160                                                  const gchar *          tag,
161                                                  guint *                value);
162 gboolean        gst_tag_list_get_uint_index     (const GstTagList *     list,
163                                                  const gchar *          tag,
164                                                  guint                  index,
165                                                  guint *                value);
166 gboolean        gst_tag_list_get_long           (const GstTagList *     list,
167                                                  const gchar *          tag,
168                                                  glong *                value);
169 gboolean        gst_tag_list_get_long_index     (const GstTagList *     list,
170                                                  const gchar *          tag,
171                                                  guint                  index,
172                                                  glong *                value);
173 gboolean        gst_tag_list_get_ulong          (const GstTagList *     list,
174                                                  const gchar *          tag,
175                                                  gulong *               value);
176 gboolean        gst_tag_list_get_ulong_index    (const GstTagList *     list,
177                                                  const gchar *          tag,
178                                                  guint                  index,
179                                                  gulong *               value);
180 gboolean        gst_tag_list_get_int64          (const GstTagList *     list,
181                                                  const gchar *          tag,
182                                                  gint64 *               value);
183 gboolean        gst_tag_list_get_int64_index    (const GstTagList *     list,
184                                                  const gchar *          tag,
185                                                  guint                  index,
186                                                  gint64 *               value);
187 gboolean        gst_tag_list_get_uint64         (const GstTagList *     list,
188                                                  const gchar *          tag,
189                                                  guint64 *              value);
190 gboolean        gst_tag_list_get_uint64_index   (const GstTagList *     list,
191                                                  const gchar *          tag,
192                                                  guint                  index,
193                                                  guint64 *              value);
194 gboolean        gst_tag_list_get_float          (const GstTagList *     list,
195                                                  const gchar *          tag,
196                                                  gfloat *               value);
197 gboolean        gst_tag_list_get_float_index    (const GstTagList *     list,
198                                                  const gchar *          tag,
199                                                  guint                  index,
200                                                  gfloat *               value);
201 gboolean        gst_tag_list_get_double         (const GstTagList *     list,
202                                                  const gchar *          tag,
203                                                  gdouble *              value);
204 gboolean        gst_tag_list_get_double_index   (const GstTagList *     list,
205                                                  const gchar *          tag,
206                                                  guint                  index,
207                                                  gdouble *              value);
208 gboolean        gst_tag_list_get_string         (const GstTagList *     list,
209                                                  const gchar *          tag,
210                                                  gchar **               value);
211 gboolean        gst_tag_list_get_string_index   (const GstTagList *     list,
212                                                  const gchar *          tag,
213                                                  guint                  index,
214                                                  gchar **               value);
215 gboolean        gst_tag_list_get_pointer        (const GstTagList *     list,
216                                                  const gchar *          tag,
217                                                  gpointer *             value);
218 gboolean        gst_tag_list_get_pointer_index  (const GstTagList *     list,
219                                                  const gchar *          tag,
220                                                  guint                  index,
221                                                  gpointer *             value);
222
223 /* tag events */
224 GstEvent *      gst_event_new_tag               (GstTagList *           list);
225 GstTagList *    gst_event_tag_get_list          (GstEvent *             tag_event);
226
227
228 /* GStreamer core tags (need to be discussed) */
229 #define GST_TAG_TITLE                   "title"
230 #define GST_TAG_ARTIST                  "artist"
231 #define GST_TAG_ALBUM                   "album"
232 #define GST_TAG_DATE                    "date"
233 #define GST_TAG_GENRE                   "genre"
234 #define GST_TAG_COMMENT                 "comment"
235 #define GST_TAG_TRACK_NUMBER            "track-number"
236 #define GST_TAG_TRACK_COUNT             "track-count"
237 #define GST_TAG_ALBUM_VOLUME_NUMBER     "album-disc-number"
238 #define GST_TAG_ALBUM_VOLUME_COUNT      "album-disc-count"
239 #define GST_TAG_LOCATION                "location"
240 #define GST_TAG_DESCRIPTION             "description"
241 #define GST_TAG_VERSION                 "version"
242 #define GST_TAG_ISRC                    "isrc"
243 #define GST_TAG_ORGANIZATION            "organization"
244 #define GST_TAG_COPYRIGHT               "copyright"
245 #define GST_TAG_CONTACT                 "contact"
246 #define GST_TAG_LICENSE                 "license"
247 #define GST_TAG_PERFORMER               "performer"
248 #define GST_TAG_DURATION                "duration"
249 #define GST_TAG_CODEC                   "codec"
250 #define GST_TAG_VIDEO_CODEC             "video-codec"
251 #define GST_TAG_AUDIO_CODEC             "audio-codec"
252 #define GST_TAG_BITRATE                 "bitrate"
253 #define GST_TAG_NOMINAL_BITRATE         "nominal-bitrate"
254 #define GST_TAG_MINIMUM_BITRATE         "minimum-bitrate"
255 #define GST_TAG_MAXIMUM_BITRATE         "maximum-bitrate"
256 #define GST_TAG_SERIAL                  "serial"
257 #define GST_TAG_ENCODER                 "encoder"
258 #define GST_TAG_ENCODER_VERSION         "encoder-version"
259 #define GST_TAG_TRACK_GAIN              "replaygain-track-gain"
260 #define GST_TAG_TRACK_PEAK              "replaygain-track-peak"
261 #define GST_TAG_ALBUM_GAIN              "replaygain-album-gain"
262 #define GST_TAG_ALBUM_PEAK              "replaygain-album-peak"
263
264 G_END_DECLS
265
266 #endif /* __GST_EVENT_H__ */