tags: Adds geo location direction tags
[platform/upstream/gstreamer.git] / gst / gsttaglist.h
1 /* GStreamer
2  * Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
3  *
4  * gsttaglist.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_TAGLIST_H__
24 #define __GST_TAGLIST_H__
25
26 #include <gst/gstbuffer.h>
27 #include <gst/gststructure.h>
28 #include <gst/glib-compat.h>
29
30 G_BEGIN_DECLS
31
32 /**
33  * GstTagMergeMode:
34  * @GST_TAG_MERGE_UNDEFINED: undefined merge mode
35  * @GST_TAG_MERGE_REPLACE_ALL: replace all tags (clear list and append)
36  * @GST_TAG_MERGE_REPLACE: replace tags
37  * @GST_TAG_MERGE_APPEND: append tags
38  * @GST_TAG_MERGE_PREPEND: prepend tags
39  * @GST_TAG_MERGE_KEEP: keep existing tags
40  * @GST_TAG_MERGE_KEEP_ALL: keep all existing tags
41  * @GST_TAG_MERGE_COUNT: the number of merge modes
42  *
43  * The different tag merging modes are basically replace, overwrite and append,
44  * but they can be seen from two directions. Given two taglists: (A) the tags
45  * already in the element and (B) the ones that are supplied to the element (
46  * e.g. via gst_tag_setter_merge_tags() / gst_tag_setter_add_tags() or a
47  * %GST_EVENT_TAG), how are these tags merged?
48  * In the table below this is shown for the cases that a tag exists in the list
49  * (A) or does not exists (!A) and combinations thereof.
50  *
51  * <table frame="all" colsep="1" rowsep="1">
52  *   <title>merge mode</title>
53  *   <tgroup cols='5' align='left'>
54  *     <thead>
55  *       <row>
56  *         <entry>merge mode</entry>
57  *         <entry>A + B</entry>
58  *         <entry>A + !B</entry>
59  *         <entry>!A + B</entry>
60  *         <entry>!A + !B</entry>
61  *       </row>
62  *     </thead>
63  *     <tbody>
64  *       <row>
65  *         <entry>REPLACE_ALL</entry>
66  *         <entry>B</entry>
67  *         <entry>-</entry>
68  *         <entry>B</entry>
69  *         <entry>-</entry>
70  *       </row>
71  *       <row>
72  *         <entry>REPLACE</entry>
73  *         <entry>B</entry>
74  *         <entry>A</entry>
75  *         <entry>B</entry>
76  *         <entry>-</entry>
77  *       </row>
78  *       <row>
79  *         <entry>APPEND</entry>
80  *         <entry>A, B</entry>
81  *         <entry>A</entry>
82  *         <entry>B</entry>
83  *         <entry>-</entry>
84  *       </row>
85  *       <row>
86  *         <entry>PREPEND</entry>
87  *         <entry>B, A</entry>
88  *         <entry>A</entry>
89  *         <entry>B</entry>
90  *         <entry>-</entry>
91  *       </row>
92  *       <row>
93  *         <entry>KEEP</entry>
94  *         <entry>A</entry>
95  *         <entry>A</entry>
96  *         <entry>B</entry>
97  *         <entry>-</entry>
98  *       </row>
99  *       <row>
100  *         <entry>KEEP_ALL</entry>
101  *         <entry>A</entry>
102  *         <entry>A</entry>
103  *         <entry>-</entry>
104  *         <entry>-</entry>
105  *       </row>
106  *     </tbody>
107  *   </tgroup>
108  * </table>
109  */
110 typedef enum {
111   GST_TAG_MERGE_UNDEFINED,
112   GST_TAG_MERGE_REPLACE_ALL,
113   GST_TAG_MERGE_REPLACE,
114   GST_TAG_MERGE_APPEND,
115   GST_TAG_MERGE_PREPEND,
116   GST_TAG_MERGE_KEEP,
117   GST_TAG_MERGE_KEEP_ALL,
118   /* add more */
119   GST_TAG_MERGE_COUNT
120 } GstTagMergeMode;
121
122 #define GST_TAG_MODE_IS_VALID(mode)     (((mode) > GST_TAG_MERGE_UNDEFINED) && ((mode) < GST_TAG_MERGE_COUNT))
123
124 /**
125  * GstTagFlag:
126  * @GST_TAG_FLAG_UNDEFINED: undefined flag
127  * @GST_TAG_FLAG_META: tag is meta data
128  * @GST_TAG_FLAG_ENCODED: tag is encoded
129  * @GST_TAG_FLAG_DECODED: tag is decoded
130  * @GST_TAG_FLAG_COUNT: number of tag flags
131  *
132  * Extra tag flags used when registering tags.
133  */
134 typedef enum {
135   GST_TAG_FLAG_UNDEFINED,
136   GST_TAG_FLAG_META,
137   GST_TAG_FLAG_ENCODED,
138   GST_TAG_FLAG_DECODED,
139   GST_TAG_FLAG_COUNT
140 } GstTagFlag;
141
142 #define GST_TAG_FLAG_IS_VALID(flag)     (((flag) > GST_TAG_FLAG_UNDEFINED) && ((flag) < GST_TAG_FLAG_COUNT))
143
144 /* FIXME 0.11: Don't typedef GstTagList to be a GstStructure, they're
145  *             internally the same but not from an API point of view.
146  *             See bug #518934.
147  */
148 /**
149  * GstTagList:
150  *
151  * Opaque #GstTagList data structure.
152  */
153 #ifdef _FOOL_GTK_DOC_
154 typedef struct _GstTagList GstTagList;
155 #else
156 #ifdef IN_GOBJECT_INTROSPECTION
157 typedef struct _GstTagList GstTagList;
158 #else
159 typedef GstStructure GstTagList;
160 #endif
161 #endif
162
163 #define GST_TAG_LIST(x)       ((GstTagList *) (x))
164 #define GST_IS_TAG_LIST(x)    ((x) != NULL && gst_is_tag_list (GST_TAG_LIST (x)))
165 #define GST_TYPE_TAG_LIST     (gst_tag_list_get_type ())
166
167 /**
168  * GstTagForeachFunc:
169  * @list: the #GstTagList
170  * @tag: a name of a tag in @list
171  * @user_data: user data
172  *
173  * A function that will be called in gst_tag_list_foreach(). The function may
174  * not modify the tag list.
175  */
176 typedef void (*GstTagForeachFunc) (const GstTagList * list,
177                                    const gchar      * tag,
178                                    gpointer           user_data);
179
180 /**
181  * GstTagMergeFunc:
182  * @dest: the destination #GValue
183  * @src: the source #GValue
184  *
185  * A function for merging multiple values of a tag used when registering
186  * tags.
187  */
188 typedef void (* GstTagMergeFunc) (GValue *dest, const GValue *src);
189
190 GType        gst_tag_list_get_type (void);
191
192 /* tag registration */
193 void         gst_tag_register      (const gchar     * name,
194                                     GstTagFlag        flag,
195                                     GType             type,
196                                     const gchar     * nick,
197                                     const gchar     * blurb,
198                                     GstTagMergeFunc   func);
199
200 /* some default merging functions */
201 void      gst_tag_merge_use_first          (GValue * dest, const GValue * src);
202 void      gst_tag_merge_strings_with_comma (GValue * dest, const GValue * src);
203
204 /* basic tag support */
205 gboolean               gst_tag_exists          (const gchar * tag);
206 GType                  gst_tag_get_type        (const gchar * tag);
207 G_CONST_RETURN gchar * gst_tag_get_nick        (const gchar * tag);
208 G_CONST_RETURN gchar * gst_tag_get_description (const gchar * tag);
209 GstTagFlag             gst_tag_get_flag        (const gchar * tag);
210 gboolean               gst_tag_is_fixed        (const gchar * tag);
211
212 /* tag lists */
213 GstTagList * gst_tag_list_new               (void);
214 GstTagList * gst_tag_list_new_full          (const gchar * tag, ...);
215 GstTagList * gst_tag_list_new_full_valist   (va_list var_args);
216
217 gboolean     gst_is_tag_list                (gconstpointer p);
218 GstTagList * gst_tag_list_copy              (const GstTagList * list);
219 gboolean     gst_tag_list_is_empty          (const GstTagList * list);
220 void         gst_tag_list_insert            (GstTagList       * into,
221                                              const GstTagList * from,
222                                              GstTagMergeMode    mode);
223 GstTagList * gst_tag_list_merge             (const GstTagList * list1,
224                                              const GstTagList * list2,
225                                              GstTagMergeMode    mode);
226 void         gst_tag_list_free              (GstTagList       * list);
227 guint        gst_tag_list_get_tag_size      (const GstTagList * list,
228                                              const gchar      * tag);
229 void         gst_tag_list_add               (GstTagList       * list,
230                                              GstTagMergeMode    mode,
231                                              const gchar      * tag,
232                                              ...) G_GNUC_NULL_TERMINATED;
233 void         gst_tag_list_add_values        (GstTagList       * list,
234                                              GstTagMergeMode    mode,
235                                              const gchar      * tag,
236                                              ...) G_GNUC_NULL_TERMINATED;
237 void         gst_tag_list_add_valist        (GstTagList       * list,
238                                              GstTagMergeMode    mode,
239                                              const gchar      * tag,
240                                              va_list        var_args);
241 void         gst_tag_list_add_valist_values (GstTagList       * list,
242                                              GstTagMergeMode    mode,
243                                              const gchar      * tag,
244                                              va_list            var_args);
245 void         gst_tag_list_add_value         (GstTagList       * list,
246                                              GstTagMergeMode    mode,
247                                              const gchar      * tag,
248                                              const GValue     * value);
249 void         gst_tag_list_remove_tag        (GstTagList       * list,
250                                              const gchar      * tag);
251 void         gst_tag_list_foreach           (const GstTagList * list,
252                                              GstTagForeachFunc  func,
253                                              gpointer           user_data);
254
255 G_CONST_RETURN GValue *
256              gst_tag_list_get_value_index   (const GstTagList * list,
257                                              const gchar      * tag,
258                                              guint              index);
259 gboolean     gst_tag_list_copy_value        (GValue           * dest,
260                                              const GstTagList * list,
261                                              const gchar      * tag);
262
263 /* simplifications (FIXME: do we want them?) */
264 gboolean     gst_tag_list_get_char          (const GstTagList * list,
265                                              const gchar      * tag,
266                                              gchar            * value);
267 gboolean     gst_tag_list_get_char_index    (const GstTagList * list,
268                                              const gchar      * tag,
269                                              guint              index,
270                                              gchar            * value);
271 gboolean     gst_tag_list_get_uchar         (const GstTagList * list,
272                                              const gchar      * tag,
273                                              guchar           * value);
274 gboolean     gst_tag_list_get_uchar_index   (const GstTagList * list,
275                                              const gchar      * tag,
276                                              guint              index,
277                                              guchar           * value);
278 gboolean     gst_tag_list_get_boolean       (const GstTagList * list,
279                                              const gchar      * tag,
280                                              gboolean         * value);
281 gboolean     gst_tag_list_get_boolean_index (const GstTagList * list,
282                                              const gchar      * tag,
283                                              guint              index,
284                                              gboolean         * value);
285 gboolean     gst_tag_list_get_int           (const GstTagList * list,
286                                              const gchar      * tag,
287                                              gint             * value);
288 gboolean     gst_tag_list_get_int_index     (const GstTagList * list,
289                                              const gchar      * tag,
290                                              guint              index,
291                                              gint             * value);
292 gboolean     gst_tag_list_get_uint          (const GstTagList * list,
293                                              const gchar      * tag,
294                                              guint            * value);
295 gboolean     gst_tag_list_get_uint_index    (const GstTagList * list,
296                                              const gchar      * tag,
297                                              guint              index,
298                                              guint            * value);
299 gboolean     gst_tag_list_get_long          (const GstTagList * list,
300                                              const gchar      * tag,
301                                              glong            * value);
302 gboolean     gst_tag_list_get_long_index    (const GstTagList * list,
303                                              const gchar      * tag,
304                                              guint              index,
305                                              glong            * value);
306 gboolean     gst_tag_list_get_ulong         (const GstTagList * list,
307                                              const gchar      * tag,
308                                              gulong           * value);
309 gboolean     gst_tag_list_get_ulong_index   (const GstTagList * list,
310                                              const gchar      * tag,
311                                              guint              index,
312                                              gulong           * value);
313 gboolean     gst_tag_list_get_int64         (const GstTagList * list,
314                                              const gchar      * tag,
315                                              gint64           * value);
316 gboolean     gst_tag_list_get_int64_index   (const GstTagList * list,
317                                              const gchar      * tag,
318                                              guint              index,
319                                              gint64           * value);
320 gboolean     gst_tag_list_get_uint64        (const GstTagList * list,
321                                              const gchar      * tag,
322                                              guint64          * value);
323 gboolean     gst_tag_list_get_uint64_index  (const GstTagList * list,
324                                              const gchar      * tag,
325                                              guint              index,
326                                              guint64          * value);
327 gboolean     gst_tag_list_get_float         (const GstTagList * list,
328                                              const gchar      * tag,
329                                              gfloat           * value);
330 gboolean     gst_tag_list_get_float_index   (const GstTagList * list,
331                                              const gchar      * tag,
332                                              guint              index,
333                                              gfloat           * value);
334 gboolean     gst_tag_list_get_double        (const GstTagList * list,
335                                              const gchar      * tag,
336                                              gdouble          * value);
337 gboolean     gst_tag_list_get_double_index  (const GstTagList * list,
338                                              const gchar      * tag,
339                                              guint              index,
340                                              gdouble          * value);
341 gboolean     gst_tag_list_get_string        (const GstTagList * list,
342                                              const gchar      * tag,
343                                              gchar           ** value);
344 gboolean     gst_tag_list_get_string_index  (const GstTagList * list,
345                                              const gchar      * tag,
346                                              guint              index,
347                                              gchar           ** value);
348 gboolean     gst_tag_list_get_pointer       (const GstTagList * list,
349                                              const gchar      * tag,
350                                              gpointer         * value);
351 gboolean     gst_tag_list_get_pointer_index (const GstTagList * list,
352                                              const gchar      * tag,
353                                              guint              index,
354                                              gpointer         * value);
355 gboolean     gst_tag_list_get_date          (const GstTagList * list,
356                                              const gchar      * tag,
357                                              GDate           ** value);
358 gboolean     gst_tag_list_get_date_index    (const GstTagList * list,
359                                              const gchar      * tag,
360                                              guint              index,
361                                              GDate           ** value);
362 gboolean     gst_tag_list_get_buffer        (const GstTagList * list,
363                                              const gchar      * tag,
364                                              GstBuffer       ** value);
365 gboolean     gst_tag_list_get_buffer_index  (const GstTagList * list,
366                                              const gchar      * tag,
367                                              guint              index,
368                                              GstBuffer       ** value);
369
370 /* GStreamer core tags */
371 /**
372  * GST_TAG_TITLE:
373  *
374  * commonly used title (string)
375  *
376  * The title as it should be displayed, e.g. 'The Doll House'
377  */
378 #define GST_TAG_TITLE                  "title"
379 /**
380  * GST_TAG_TITLE_SORTNAME:
381  *
382  * commonly used title, as used for sorting (string)
383  *
384  * The title as it should be sorted, e.g. 'Doll House, The'
385  *
386  * Since: 0.10.15
387  */
388 #define GST_TAG_TITLE_SORTNAME         "title-sortname"
389 /**
390  * GST_TAG_ARTIST:
391  *
392  * person(s) responsible for the recording (string)
393  *
394  * The artist name as it should be displayed, e.g. 'Jimi Hendrix' or
395  * 'The Guitar Heroes'
396  */
397 #define GST_TAG_ARTIST                 "artist"
398 /**
399  * GST_TAG_ARTIST_SORTNAME:
400  *
401  * person(s) responsible for the recording, as used for sorting (string)
402  *
403  * The artist name as it should be sorted, e.g. 'Hendrix, Jimi' or
404  * 'Guitar Heroes, The'
405  *
406  * Since: 0.10.15
407  */
408 /* FIXME 0.11: change to "artist-sortname" */
409 #define GST_TAG_ARTIST_SORTNAME        "musicbrainz-sortname"
410 /**
411  * GST_TAG_ALBUM:
412  *
413  * album containing this data (string)
414  *
415  * The album name as it should be displayed, e.g. 'The Jazz Guitar'
416  */
417 #define GST_TAG_ALBUM                  "album"
418 /**
419  * GST_TAG_ALBUM_SORTNAME:
420  *
421  * album containing this data, as used for sorting (string)
422  *
423  * The album name as it should be sorted, e.g. 'Jazz Guitar, The'
424  *
425  * Since: 0.10.15
426  */
427 #define GST_TAG_ALBUM_SORTNAME         "album-sortname"
428 /**
429  * GST_TAG_ALBUM_ARTIST:
430  *
431  * The artist of the entire album, as it should be displayed.
432  *
433  * Since: 0.10.25
434  */
435 #define GST_TAG_ALBUM_ARTIST           "album-artist"
436 /**
437  * GST_TAG_ALBUM_ARTIST_SORTNAME:
438  *
439  * The artist of the entire album, as it should be sorted.
440  *
441  * Since: 0.10.25
442  */
443 #define GST_TAG_ALBUM_ARTIST_SORTNAME  "album-artist-sortname"
444 /**
445  * GST_TAG_COMPOSER:
446  *
447  * person(s) who composed the recording (string)
448  *
449  * Since: 0.10.15
450  */
451 #define GST_TAG_COMPOSER               "composer"
452 /**
453  * GST_TAG_DATE:
454  *
455  * date the data was created (#GDate structure)
456  */
457 #define GST_TAG_DATE                   "date"
458 /**
459  * GST_TAG_GENRE:
460  *
461  * genre this data belongs to (string)
462  */
463 #define GST_TAG_GENRE                  "genre"
464 /**
465  * GST_TAG_COMMENT:
466  *
467  * free text commenting the data (string)
468  */
469 #define GST_TAG_COMMENT                "comment"
470 /**
471  * GST_TAG_EXTENDED_COMMENT:
472  *
473  * key/value text commenting the data (string)
474  *
475  * Must be in the form of 'key=comment' or
476  * 'key[lc]=comment' where 'lc' is an ISO-639
477  * language code.
478  *
479  * This tag is used for unknown Vorbis comment tags,
480  * unknown APE tags and certain ID3v2 comment fields.
481  *
482  * Since: 0.10.10
483  */
484 #define GST_TAG_EXTENDED_COMMENT       "extended-comment"
485 /**
486  * GST_TAG_TRACK_NUMBER:
487  *
488  * track number inside a collection (unsigned integer)
489  */
490 #define GST_TAG_TRACK_NUMBER           "track-number"
491 /**
492  * GST_TAG_TRACK_COUNT:
493  *
494  * count of tracks inside collection this track belongs to (unsigned integer)
495  */
496 #define GST_TAG_TRACK_COUNT            "track-count"
497 /**
498  * GST_TAG_ALBUM_VOLUME_NUMBER:
499  *
500  * disc number inside a collection (unsigned integer)
501  */
502 #define GST_TAG_ALBUM_VOLUME_NUMBER    "album-disc-number"
503 /**
504  * GST_TAG_ALBUM_VOLUME_COUNT:
505  *
506  * count of discs inside collection this disc belongs to (unsigned integer)
507  */
508 #define GST_TAG_ALBUM_VOLUME_COUNT    "album-disc-count"
509 /**
510  * GST_TAG_LOCATION:
511  *
512  * Origin of media as a URI (location, where the original of the file or stream
513  * is hosted) (string)
514  */
515 #define GST_TAG_LOCATION               "location"
516 /**
517  * GST_TAG_HOMEPAGE:
518  *
519  * Homepage for this media (i.e. artist or movie homepage) (string)
520  *
521  * Since: 0.10.23
522  */
523 #define GST_TAG_HOMEPAGE               "homepage"
524 /**
525  * GST_TAG_DESCRIPTION:
526  *
527  * short text describing the content of the data (string)
528  */
529 #define GST_TAG_DESCRIPTION            "description"
530 /**
531  * GST_TAG_VERSION:
532  *
533  * version of this data (string)
534  */
535 #define GST_TAG_VERSION                "version"
536 /**
537  * GST_TAG_ISRC:
538  *
539  * International Standard Recording Code - see http://www.ifpi.org/isrc/ (string)
540  */
541 #define GST_TAG_ISRC                   "isrc"
542 /**
543  * GST_TAG_ORGANIZATION:
544  *
545  * organization (string)
546  */
547 #define GST_TAG_ORGANIZATION           "organization"
548 /**
549  * GST_TAG_COPYRIGHT:
550  *
551  * copyright notice of the data (string)
552  */
553 #define GST_TAG_COPYRIGHT              "copyright"
554 /**
555  * GST_TAG_COPYRIGHT_URI:
556  *
557  * URI to location where copyright details can be found (string)
558  *
559  * Since: 0.10.14
560  */
561 #define GST_TAG_COPYRIGHT_URI          "copyright-uri"
562 /**
563  * GST_TAG_CONTACT:
564  *
565  * contact information (string)
566  */
567 #define GST_TAG_CONTACT                "contact"
568 /**
569  * GST_TAG_LICENSE:
570  *
571  * license of data (string)
572  */
573 #define GST_TAG_LICENSE                "license"
574 /**
575  * GST_TAG_LICENSE_URI:
576  *
577  * URI to location where license details can be found (string)
578  *
579  * Since: 0.10.14
580  */
581 #define GST_TAG_LICENSE_URI            "license-uri"
582 /**
583  * GST_TAG_PERFORMER:
584  *
585  * person(s) performing (string)
586  */
587 #define GST_TAG_PERFORMER              "performer"
588 /**
589  * GST_TAG_DURATION:
590  *
591  * length in GStreamer time units (nanoseconds) (unsigned 64-bit integer)
592  */
593 #define GST_TAG_DURATION               "duration"
594 /**
595  * GST_TAG_CODEC:
596  *
597  * codec the data is stored in (string)
598  */
599 #define GST_TAG_CODEC                  "codec"
600 /**
601  * GST_TAG_VIDEO_CODEC:
602  *
603  * codec the video data is stored in (string)
604  */
605 #define GST_TAG_VIDEO_CODEC            "video-codec"
606 /**
607  * GST_TAG_AUDIO_CODEC:
608  *
609  * codec the audio data is stored in (string)
610  */
611 #define GST_TAG_AUDIO_CODEC            "audio-codec"
612 /**
613  * GST_TAG_SUBTITLE_CODEC:
614  *
615  * codec/format the subtitle data is stored in (string)
616  *
617  * Since: 0.10.23
618  */
619 #define GST_TAG_SUBTITLE_CODEC         "subtitle-codec"
620 /**
621  * GST_TAG_CONTAINER_FORMAT:
622  *
623  * container format the data is stored in (string)
624  *
625  * Since: 0.10.24
626  */
627 #define GST_TAG_CONTAINER_FORMAT       "container-format"
628 /**
629  * GST_TAG_BITRATE:
630  *
631  * exact or average bitrate in bits/s (unsigned integer)
632  */
633 #define GST_TAG_BITRATE                "bitrate"
634 /**
635  * GST_TAG_NOMINAL_BITRATE:
636  *
637  * nominal bitrate in bits/s (unsigned integer)
638  */
639 #define GST_TAG_NOMINAL_BITRATE        "nominal-bitrate"
640 /**
641  * GST_TAG_MINIMUM_BITRATE:
642  *
643  * minimum bitrate in bits/s (unsigned integer)
644  */
645 #define GST_TAG_MINIMUM_BITRATE        "minimum-bitrate"
646 /**
647  * GST_TAG_MAXIMUM_BITRATE:
648  *
649  * maximum bitrate in bits/s (unsigned integer)
650  */
651 #define GST_TAG_MAXIMUM_BITRATE        "maximum-bitrate"
652 /**
653  * GST_TAG_SERIAL:
654  *
655  * serial number of track (unsigned integer)
656  */
657 #define GST_TAG_SERIAL                 "serial"
658 /**
659  * GST_TAG_ENCODER:
660  *
661  * encoder used to encode this stream (string)
662  */
663 #define GST_TAG_ENCODER                "encoder"
664 /**
665  * GST_TAG_ENCODER_VERSION:
666  *
667  * version of the encoder used to encode this stream (unsigned integer)
668  */
669 #define GST_TAG_ENCODER_VERSION        "encoder-version"
670 /**
671  * GST_TAG_TRACK_GAIN:
672  *
673  * track gain in db (double)
674  */
675 #define GST_TAG_TRACK_GAIN             "replaygain-track-gain"
676 /**
677  * GST_TAG_TRACK_PEAK:
678  *
679  * peak of the track (double)
680  */
681 #define GST_TAG_TRACK_PEAK             "replaygain-track-peak"
682 /**
683  * GST_TAG_ALBUM_GAIN:
684  *
685  * album gain in db (double)
686  */
687 #define GST_TAG_ALBUM_GAIN             "replaygain-album-gain"
688 /**
689  * GST_TAG_ALBUM_PEAK:
690  *
691  * peak of the album (double)
692  */
693 #define GST_TAG_ALBUM_PEAK             "replaygain-album-peak"
694 /**
695  * GST_TAG_REFERENCE_LEVEL:
696  *
697  * reference level of track and album gain values (double)
698  *
699  * Since: 0.10.12
700  */
701 #define GST_TAG_REFERENCE_LEVEL        "replaygain-reference-level"
702 /**
703  * GST_TAG_LANGUAGE_CODE:
704  *
705  * Language code (ISO-639-1) (string) of the content
706  */
707 #define GST_TAG_LANGUAGE_CODE          "language-code"
708 /**
709  * GST_TAG_IMAGE:
710  *
711  * image (buffer) (buffer caps should specify the content type and preferably
712  * also set "image-type" field as #GstTagImageType)
713  *
714  * Since: 0.10.6
715  */
716 #define GST_TAG_IMAGE                  "image"
717 /**
718  * GST_TAG_PREVIEW_IMAGE:
719  *
720  * image that is meant for preview purposes, e.g. small icon-sized version
721  * (buffer) (buffer caps should specify the content type)
722  *
723  * Since: 0.10.7
724  */
725 #define GST_TAG_PREVIEW_IMAGE          "preview-image"
726
727 /**
728  * GST_TAG_ATTACHMENT:
729  *
730  * generic file attachment (buffer) (buffer caps should specify the content
731  * type and if possible set "filename" to the file name of the
732  * attachment)
733  *
734  * Since: 0.10.21
735  */
736 #define GST_TAG_ATTACHMENT             "attachment"
737
738 /**
739  * GST_TAG_BEATS_PER_MINUTE:
740  *
741  * number of beats per minute in audio (double)
742  *
743  * Since: 0.10.12
744  */
745 #define GST_TAG_BEATS_PER_MINUTE       "beats-per-minute"
746
747 /**
748  * GST_TAG_KEYWORDS:
749  *
750  * comma separated keywords describing the content (string).
751  *
752  * Since: 0.10.21
753  */
754 #define GST_TAG_KEYWORDS               "keywords"
755
756 /**
757  * GST_TAG_GEO_LOCATION_NAME:
758  *
759  * human readable descriptive location of where the media has been recorded or
760  * produced. (string).
761  *
762  * Since: 0.10.21
763  */
764 #define GST_TAG_GEO_LOCATION_NAME               "geo-location-name"
765
766 /**
767  * GST_TAG_GEO_LOCATION_LATITUDE:
768  *
769  * geo latitude location of where the media has been recorded or produced in
770  * degrees according to WGS84 (zero at the equator, negative values for southern
771  * latitudes) (double).
772  *
773  * Since: 0.10.21
774  */
775 #define GST_TAG_GEO_LOCATION_LATITUDE               "geo-location-latitude"
776
777 /**
778  * GST_TAG_GEO_LOCATION_LONGITUDE:
779  *
780  * geo longitude location of where the media has been recorded or produced in
781  * degrees according to WGS84 (zero at the prime meridian in Greenwich/UK,
782  * negative values for western longitudes). (double).
783  *
784  * Since: 0.10.21
785  */
786 #define GST_TAG_GEO_LOCATION_LONGITUDE               "geo-location-longitude"
787
788 /**
789  * GST_TAG_GEO_LOCATION_ELEVATION:
790  *
791  * geo elevation of where the media has been recorded or produced in meters
792  * according to WGS84 (zero is average sea level) (double).
793  *
794  * Since: 0.10.21
795  */
796 #define GST_TAG_GEO_LOCATION_ELEVATION               "geo-location-elevation"
797 /**
798  * GST_TAG_GEO_LOCATION_COUNTRY:
799  *
800  * The country (english name) where the media has been produced (string).
801  *
802  * Since: 0.10.29
803  */
804 #define GST_TAG_GEO_LOCATION_COUNTRY                 "geo-location-country"
805 /**
806  * GST_TAG_GEO_LOCATION_CITY:
807  *
808  * The city (english name) where the media has been produced (string).
809  *
810  * Since: 0.10.29
811  */
812 #define GST_TAG_GEO_LOCATION_CITY                    "geo-location-city"
813 /**
814  * GST_TAG_GEO_LOCATION_SUBLOCATION:
815  *
816  * A location 'smaller' than GST_TAG_GEO_LOCATION_CITY that specifies better
817  * where the media has been produced. (e.g. the neighborhood) (string).
818  *
819  * This tag has been added as this is how it is handled/named in XMP's
820  * Iptc4xmpcore schema.
821  *
822  * Since: 0.10.29
823  */
824 #define GST_TAG_GEO_LOCATION_SUBLOCATION             "geo-location-sublocation"
825 /**
826  * GST_TAG_GEO_LOCATION_MOVEMENT_SPEED:
827  *
828  * Speed of the capturing device when performing the capture.
829  * Represented in m/s. (double)
830  *
831  * See also #GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION
832  *
833  * Since 0.10.30
834  */
835 #define GST_TAG_GEO_LOCATION_MOVEMENT_SPEED       "geo-location-movement-speed"
836 /**
837  * GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION:
838  *
839  * Indicates the movement direction of the device performing the capture
840  * of a media. It is represented as degrees in floating point representation,
841  * 0 means the geographic north, and increases clockwise (double from 0 to 360)
842  *
843  * See also #GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION
844  *
845  * Since: 0.10.30
846  */
847 #define GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION "geo-location-movement-direction"
848 /**
849  * GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION:
850  *
851  * Indicates the direction the device is pointing to when capturing
852  * a media. It is represented as degrees in floating point representation,
853  * 0 means the geographic north, and increases clockwise (double from 0 to 360)
854  *
855  * See also #GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION
856  *
857  * Since: 0.10.30
858  */
859 #define GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION  "geo-location-capture-direction"
860 /**
861  * GST_TAG_SHOW_NAME:
862  *
863  * Name of the show, used for displaying (string)
864  *
865  * Since: 0.10.26
866  */
867 #define GST_TAG_SHOW_NAME                         "show-name"
868 /**
869  * GST_TAG_SHOW_SORTNAME:
870  *
871  * Name of the show, used for sorting (string)
872  *
873  * Since: 0.10.26
874  */
875 #define GST_TAG_SHOW_SORTNAME                     "show-sortname"
876 /**
877  * GST_TAG_SHOW_EPISODE_NUMBER:
878  *
879  * Number of the episode within a season/show (unsigned integer)
880  *
881  * Since: 0.10.26
882  */
883 #define GST_TAG_SHOW_EPISODE_NUMBER               "show-episode-number"
884 /**
885  * GST_TAG_SHOW_SEASON_NUMBER:
886  *
887  * Number of the season of a show/series (unsigned integer)
888  *
889  * Since: 0.10.26
890  */
891 #define GST_TAG_SHOW_SEASON_NUMBER                "show-season-number"
892 /**
893  * GST_TAG_LYRICS:
894  *
895  * The lyrics of the media (string)
896  *
897  * Since: 0.10.26
898  */
899 #define GST_TAG_LYRICS                            "lyrics"
900 /**
901  * GST_TAG_COMPOSER_SORTNAME:
902  *
903  * The composer's name, used for sorting (string)
904  *
905  * Since: 0.10.26
906  */
907 #define GST_TAG_COMPOSER_SORTNAME                 "composer-sortname"
908 /**
909  * GST_TAG_GROUPING:
910  *
911  * Groups together media that are related and spans multiple tracks. An
912  * example are multiple pieces of a concerto. (string)
913  *
914  * Since: 0.10.26
915  */
916 #define GST_TAG_GROUPING                          "grouping"
917 /**
918  * GST_TAG_USER_RATING:
919  *
920  * Rating attributed by a person (likely the application user).
921  * The higher the value, the more the user likes this media
922  * (unsigned int from 0 to 100)
923  *
924  * Since: 0.10.29
925  */
926 #define GST_TAG_USER_RATING                       "user-rating"
927 /**
928  * GST_TAG_DEVICE_MANUFACTURER:
929  *
930  * Manufacturer of the device used to create the media (string)
931  *
932  * Since: 0.10.30
933  */
934 #define GST_TAG_DEVICE_MANUFACTURER               "device-manufacturer"
935 /**
936  * GST_TAG_DEVICE_MODEL:
937  *
938  * Model of the device used to create the media (string)
939  *
940  * Since: 0.10.30
941  */
942 #define GST_TAG_DEVICE_MODEL                      "device-model"
943
944 G_END_DECLS
945
946 #endif /* __GST_TAGLIST_H__ */