gst/gsttag.h: Adding video-codec and audio-codec for demuxers which will emit found_t...
[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                (gchar *                name,
66                                                  GstTagFlag             flag,
67                                                  GType                  type,
68                                                  gchar *                nick,
69                                                  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 gboolean        gst_tag_is_fixed                (const gchar *          tag);
85
86 /* tag lists */
87 GstTagList *    gst_tag_list_new                (void);
88 gboolean        gst_is_tag_list                 (gconstpointer          p);
89 GstTagList *    gst_tag_list_copy               (const GstTagList *     list);
90 void            gst_tag_list_insert             (GstTagList *           into,
91                                                  const GstTagList *     from,
92                                                  GstTagMergeMode        mode);
93 GstTagList *    gst_tag_list_merge              (const GstTagList *     list1,
94                                                  const GstTagList *     list2,
95                                                  GstTagMergeMode        mode);
96 void            gst_tag_list_free               (GstTagList *           list);
97 guint           gst_tag_list_get_tag_size       (const GstTagList *     list,
98                                                  const gchar *          tag);
99 void            gst_tag_list_add                (GstTagList *           list,
100                                                  GstTagMergeMode        mode,
101                                                  const gchar *          tag,
102                                                  ...);
103 void            gst_tag_list_add_values         (GstTagList *           list,
104                                                  GstTagMergeMode        mode,
105                                                  const gchar *          tag,
106                                                  ...);
107 void            gst_tag_list_add_valist         (GstTagList *           list,
108                                                  GstTagMergeMode        mode,
109                                                  const gchar *          tag,
110                                                  va_list                var_args);
111 void            gst_tag_list_add_valist_values  (GstTagList *           list,
112                                                  GstTagMergeMode        mode,
113                                                  const gchar *          tag,
114                                                  va_list                var_args);
115 void            gst_tag_list_remove_tag         (GstTagList *           list,
116                                                  const gchar *          tag);
117 void            gst_tag_list_foreach            (GstTagList *           list,
118                                                  GstTagForeachFunc      func,
119                                                  gpointer               user_data);
120
121 G_CONST_RETURN GValue *
122                 gst_tag_list_get_value_index    (const GstTagList *     list,
123                                                  const gchar *          tag,
124                                                  guint                  index);
125 gboolean        gst_tag_list_copy_value         (GValue *               dest,
126                                                  const GstTagList *     list,
127                                                  const gchar *          tag);
128
129 /* simplifications (FIXME: do we want them?) */
130 gboolean        gst_tag_list_get_char           (const GstTagList *     list,
131                                                  const gchar *          tag,
132                                                  gchar *                value);
133 gboolean        gst_tag_list_get_char_index     (const GstTagList *     list,
134                                                  const gchar *          tag,
135                                                  guint                  index,
136                                                  gchar *                value);
137 gboolean        gst_tag_list_get_uchar          (const GstTagList *     list,
138                                                  const gchar *          tag,
139                                                  guchar *               value);
140 gboolean        gst_tag_list_get_uchar_index    (const GstTagList *     list,
141                                                  const gchar *          tag,
142                                                  guint                  index,
143                                                  guchar *               value);
144 gboolean        gst_tag_list_get_boolean        (const GstTagList *     list,
145                                                  const gchar *          tag,
146                                                  gboolean *             value);
147 gboolean        gst_tag_list_get_boolean_index  (const GstTagList *     list,
148                                                  const gchar *          tag,
149                                                  guint                  index,
150                                                  gboolean *             value);
151 gboolean        gst_tag_list_get_int            (const GstTagList *     list,
152                                                  const gchar *          tag,
153                                                  gint *                 value);
154 gboolean        gst_tag_list_get_int_index      (const GstTagList *     list,
155                                                  const gchar *          tag,
156                                                  guint                  index,
157                                                  gint *                 value);
158 gboolean        gst_tag_list_get_uint           (const GstTagList *     list,
159                                                  const gchar *          tag,
160                                                  guint *                value);
161 gboolean        gst_tag_list_get_uint_index     (const GstTagList *     list,
162                                                  const gchar *          tag,
163                                                  guint                  index,
164                                                  guint *                value);
165 gboolean        gst_tag_list_get_long           (const GstTagList *     list,
166                                                  const gchar *          tag,
167                                                  glong *                value);
168 gboolean        gst_tag_list_get_long_index     (const GstTagList *     list,
169                                                  const gchar *          tag,
170                                                  guint                  index,
171                                                  glong *                value);
172 gboolean        gst_tag_list_get_ulong          (const GstTagList *     list,
173                                                  const gchar *          tag,
174                                                  gulong *               value);
175 gboolean        gst_tag_list_get_ulong_index    (const GstTagList *     list,
176                                                  const gchar *          tag,
177                                                  guint                  index,
178                                                  gulong *               value);
179 gboolean        gst_tag_list_get_int64          (const GstTagList *     list,
180                                                  const gchar *          tag,
181                                                  gint64 *               value);
182 gboolean        gst_tag_list_get_int64_index    (const GstTagList *     list,
183                                                  const gchar *          tag,
184                                                  guint                  index,
185                                                  gint64 *               value);
186 gboolean        gst_tag_list_get_uint64         (const GstTagList *     list,
187                                                  const gchar *          tag,
188                                                  guint64 *              value);
189 gboolean        gst_tag_list_get_uint64_index   (const GstTagList *     list,
190                                                  const gchar *          tag,
191                                                  guint                  index,
192                                                  guint64 *              value);
193 gboolean        gst_tag_list_get_float          (const GstTagList *     list,
194                                                  const gchar *          tag,
195                                                  gfloat *               value);
196 gboolean        gst_tag_list_get_float_index    (const GstTagList *     list,
197                                                  const gchar *          tag,
198                                                  guint                  index,
199                                                  gfloat *               value);
200 gboolean        gst_tag_list_get_double         (const GstTagList *     list,
201                                                  const gchar *          tag,
202                                                  gdouble *              value);
203 gboolean        gst_tag_list_get_double_index   (const GstTagList *     list,
204                                                  const gchar *          tag,
205                                                  guint                  index,
206                                                  gdouble *              value);
207 gboolean        gst_tag_list_get_string         (const GstTagList *     list,
208                                                  const gchar *          tag,
209                                                  gchar **               value);
210 gboolean        gst_tag_list_get_string_index   (const GstTagList *     list,
211                                                  const gchar *          tag,
212                                                  guint                  index,
213                                                  gchar **               value);
214 gboolean        gst_tag_list_get_pointer        (const GstTagList *     list,
215                                                  const gchar *          tag,
216                                                  gpointer *             value);
217 gboolean        gst_tag_list_get_pointer_index  (const GstTagList *     list,
218                                                  const gchar *          tag,
219                                                  guint                  index,
220                                                  gpointer *             value);
221
222 /* tag events */
223 GstEvent *      gst_event_new_tag               (GstTagList *           list);
224 GstTagList *    gst_event_tag_get_list          (GstEvent *             tag_event);
225
226
227 /* GStreamer core tags (need to be discussed) */
228 #define GST_TAG_TITLE                   "title"
229 #define GST_TAG_ARTIST                  "artist"
230 #define GST_TAG_ALBUM                   "album"
231 #define GST_TAG_DATE                    "date"
232 #define GST_TAG_GENRE                   "genre"
233 #define GST_TAG_COMMENT                 "comment"
234 #define GST_TAG_TRACK_NUMBER            "track-number"
235 #define GST_TAG_TRACK_COUNT             "track-count"
236 #define GST_TAG_LOCATION                "location"
237 #define GST_TAG_DESCRIPTION             "description"
238 #define GST_TAG_VERSION                 "version"
239 #define GST_TAG_ISRC                    "isrc"
240 #define GST_TAG_ORGANIZATION            "organization"
241 #define GST_TAG_COPYRIGHT               "copyright"
242 #define GST_TAG_CONTACT                 "contact"
243 #define GST_TAG_LICENSE                 "license"
244 #define GST_TAG_PERFORMER               "performer"
245 #define GST_TAG_DURATION                "duration"
246 #define GST_TAG_CODEC                   "codec"
247 #define GST_TAG_VIDEO_CODEC             "video-codec"
248 #define GST_TAG_AUDIO_CODEC             "audio-codec"
249 #define GST_TAG_BITRATE                 "bitrate"
250 #define GST_TAG_NOMINAL_BITRATE         "nominal-bitrate"
251 #define GST_TAG_MINIMUM_BITRATE         "minimum-bitrate"
252 #define GST_TAG_MAXIMUM_BITRATE         "maximum-bitrate"
253 #define GST_TAG_SERIAL                  "serial"
254 #define GST_TAG_ENCODER                 "encoder"
255 #define GST_TAG_ENCODER_VERSION         "encoder-version"
256 #define GST_TAG_TRACK_GAIN              "replaygain-track-gain"
257 #define GST_TAG_TRACK_PEAK              "replaygain-track-peak"
258 #define GST_TAG_ALBUM_GAIN              "replaygain-album-gain"
259 #define GST_TAG_ALBUM_PEAK              "replaygain-album-peak"
260
261 G_END_DECLS
262
263 #endif /* __GST_EVENT_H__ */