tizen 2.3 release
[framework/multimedia/gst-plugins-base0.10.git] / gst-libs / gst / tag / gstvorbistag.c
1 /* GStreamer
2  * Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
3  *
4  * gstvorbistag.c: library for reading / modifying vorbis tags
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  * SECTION:gsttagvorbis
24  * @short_description: tag mappings and support functions for plugins
25  *                     dealing with vorbiscomments
26  * @see_also: #GstTagList
27  *
28  * <refsect2>
29  * <para>
30  * Contains various utility functions for plugins to parse or create
31  * vorbiscomments and map them to and from #GstTagList<!-- -->s.
32  * </para>
33  * </refsect2>
34  */
35
36 #ifdef HAVE_CONFIG_H
37 #include "config.h"
38 #endif
39 #include <gst/gsttagsetter.h>
40 #include <gst/base/gstbytereader.h>
41 #include <gst/base/gstbytewriter.h>
42 #include "gsttageditingprivate.h"
43 #include <stdlib.h>
44 #include <string.h>
45
46 /*
47  * see http://xiph.org/ogg/vorbis/doc/v-comment.html
48  */
49 static const GstTagEntryMatch tag_matches[] = {
50   {GST_TAG_TITLE, "TITLE"},
51   {GST_TAG_VERSION, "VERSION"},
52   {GST_TAG_ALBUM, "ALBUM"},
53   {GST_TAG_TRACK_NUMBER, "TRACKNUMBER"},
54   {GST_TAG_ALBUM_VOLUME_NUMBER, "DISCNUMBER"},
55   {GST_TAG_TRACK_COUNT, "TRACKTOTAL"},
56   {GST_TAG_ALBUM_VOLUME_COUNT, "DISCTOTAL"},
57   {GST_TAG_ARTIST, "ARTIST"},
58   {GST_TAG_PERFORMER, "PERFORMER"},
59   {GST_TAG_COMPOSER, "COMPOSER"},
60   {GST_TAG_COPYRIGHT, "COPYRIGHT"},
61   {GST_TAG_LICENSE, "LICENSE"},
62   {GST_TAG_LICENSE_URI, "LICENSE"},
63   {GST_TAG_GEO_LOCATION_NAME, "LOCATION"},
64   {GST_TAG_ORGANIZATION, "ORGANIZATION"},
65   {GST_TAG_DESCRIPTION, "DESCRIPTION"},
66   {GST_TAG_GENRE, "GENRE"},
67   {GST_TAG_DATE, "DATE"},
68   {GST_TAG_CONTACT, "CONTACT"},
69   {GST_TAG_ISRC, "ISRC"},
70   {GST_TAG_COMMENT, "COMMENT"},
71   {GST_TAG_TRACK_GAIN, "REPLAYGAIN_TRACK_GAIN"},
72   {GST_TAG_TRACK_PEAK, "REPLAYGAIN_TRACK_PEAK"},
73   {GST_TAG_ALBUM_GAIN, "REPLAYGAIN_ALBUM_GAIN"},
74   {GST_TAG_ALBUM_PEAK, "REPLAYGAIN_ALBUM_PEAK"},
75   {GST_TAG_REFERENCE_LEVEL, "REPLAYGAIN_REFERENCE_LOUDNESS"},
76   {GST_TAG_MUSICBRAINZ_TRACKID, "MUSICBRAINZ_TRACKID"},
77   {GST_TAG_MUSICBRAINZ_ARTISTID, "MUSICBRAINZ_ARTISTID"},
78   {GST_TAG_MUSICBRAINZ_ALBUMID, "MUSICBRAINZ_ALBUMID"},
79   {GST_TAG_MUSICBRAINZ_ALBUMARTISTID, "MUSICBRAINZ_ALBUMARTISTID"},
80   {GST_TAG_MUSICBRAINZ_TRMID, "MUSICBRAINZ_TRMID"},
81   {GST_TAG_ARTIST_SORTNAME, "ARTISTSORT"},
82   {GST_TAG_ARTIST_SORTNAME, "ARTISTSORTORDER"},
83   {GST_TAG_ARTIST_SORTNAME, "MUSICBRAINZ_SORTNAME"},
84   {GST_TAG_ALBUM_SORTNAME, "ALBUMSORT"},
85   {GST_TAG_ALBUM_SORTNAME, "ALBUMSORTORDER"},
86   {GST_TAG_TITLE_SORTNAME, "TITLESORT"},
87   {GST_TAG_TITLE_SORTNAME, "TITLESORTORDER"},
88   {GST_TAG_ALBUM_ARTIST, "ALBUMARTIST"},
89   {GST_TAG_ALBUM_ARTIST_SORTNAME, "ALBUMARTISTSORT"},
90   {GST_TAG_ALBUM_ARTIST_SORTNAME, "ALBUMARTISTSORTORDER"},
91   {GST_TAG_LANGUAGE_CODE, "LANGUAGE"},
92   {GST_TAG_CDDA_MUSICBRAINZ_DISCID, "MUSICBRAINZ_DISCID"},
93   {GST_TAG_CDDA_CDDB_DISCID, "DISCID"},
94   /* For the apparent de-facto standard for coverart in vorbis comments, see:
95    * http://www.hydrogenaudio.org/forums/lofiversion/index.php/t48386.html */
96   {GST_TAG_PREVIEW_IMAGE, "COVERART"},
97   /* some evidence that "BPM" is used elsewhere:
98    * http://mail.kde.org/pipermail/amarok/2006-May/000090.html
99    */
100   {GST_TAG_BEATS_PER_MINUTE, "BPM"},
101   /* What GStreamer calls encoder ("encoder used to encode this stream") is
102      stored in the vendor string in Vorbis/Theora/Kate and possibly others.
103      The Vorbis comment packet used in those streams uses ENCODER as the name
104      of the encoding program, which GStreamer calls application-name. */
105   {GST_TAG_APPLICATION_NAME, "ENCODER"},
106   {NULL, NULL}
107 };
108
109 /**
110  * gst_tag_from_vorbis_tag:
111  * @vorbis_tag: vorbiscomment tag to convert to GStreamer tag
112  *
113  * Looks up the GStreamer tag for a vorbiscomment tag.
114  *
115  * Returns: The corresponding GStreamer tag or NULL if none exists.
116  */
117 const gchar *
118 gst_tag_from_vorbis_tag (const gchar * vorbis_tag)
119 {
120   int i = 0;
121   gchar *real_vorbis_tag;
122
123   g_return_val_if_fail (vorbis_tag != NULL, NULL);
124
125   gst_tag_register_musicbrainz_tags ();
126
127   real_vorbis_tag = g_ascii_strup (vorbis_tag, -1);
128   while (tag_matches[i].gstreamer_tag != NULL) {
129     if (strcmp (real_vorbis_tag, tag_matches[i].original_tag) == 0) {
130       break;
131     }
132     i++;
133   }
134   g_free (real_vorbis_tag);
135   return tag_matches[i].gstreamer_tag;
136 }
137
138 /**
139  * gst_tag_to_vorbis_tag:
140  * @gst_tag: GStreamer tag to convert to vorbiscomment tag
141  *
142  * Looks up the vorbiscomment tag for a GStreamer tag.
143  *
144  * Returns: The corresponding vorbiscomment tag or NULL if none exists.
145  */
146 const gchar *
147 gst_tag_to_vorbis_tag (const gchar * gst_tag)
148 {
149   int i = 0;
150
151   g_return_val_if_fail (gst_tag != NULL, NULL);
152
153   gst_tag_register_musicbrainz_tags ();
154
155   while (tag_matches[i].gstreamer_tag != NULL) {
156     if (strcmp (gst_tag, tag_matches[i].gstreamer_tag) == 0) {
157       return tag_matches[i].original_tag;
158     }
159     i++;
160   }
161   return NULL;
162 }
163
164
165 /**
166  * gst_vorbis_tag_add:
167  * @list: a #GstTagList
168  * @tag: a vorbiscomment tag string (key in key=value), must be valid UTF-8
169  * @value: a vorbiscomment value string (value in key=value), must be valid UTF-8
170  *
171  * Convenience function using gst_tag_from_vorbis_tag(), parsing
172  * a vorbis comment string into the right type and adding it to the
173  * given taglist @list.
174  *
175  * Unknown vorbiscomment tags will be added to the tag list in form
176  * of a #GST_TAG_EXTENDED_COMMENT (since 0.10.10 at least).
177  */
178 void
179 gst_vorbis_tag_add (GstTagList * list, const gchar * tag, const gchar * value)
180 {
181   const gchar *gst_tag;
182   GType tag_type;
183
184   g_return_if_fail (list != NULL);
185   g_return_if_fail (tag != NULL);
186   g_return_if_fail (value != NULL);
187
188   g_return_if_fail (g_utf8_validate (tag, -1, NULL));
189   g_return_if_fail (g_utf8_validate (value, -1, NULL));
190   g_return_if_fail (strchr (tag, '=') == NULL);
191
192   gst_tag = gst_tag_from_vorbis_tag (tag);
193   if (gst_tag == NULL) {
194     gchar *ext_comment;
195
196     ext_comment = g_strdup_printf ("%s=%s", tag, value);
197     gst_tag_list_add (list, GST_TAG_MERGE_APPEND, GST_TAG_EXTENDED_COMMENT,
198         ext_comment, NULL);
199     g_free (ext_comment);
200     return;
201   }
202
203   tag_type = gst_tag_get_type (gst_tag);
204   switch (tag_type) {
205     case G_TYPE_UINT:{
206       guint tmp;
207       gchar *check;
208       gboolean is_track_number_tag;
209       gboolean is_disc_number_tag;
210
211       is_track_number_tag = (strcmp (gst_tag, GST_TAG_TRACK_NUMBER) == 0);
212       is_disc_number_tag = (strcmp (gst_tag, GST_TAG_ALBUM_VOLUME_NUMBER) == 0);
213       tmp = strtoul (value, &check, 10);
214       if (*check == '/' && (is_track_number_tag || is_disc_number_tag)) {
215         guint count;
216
217         check++;
218         count = strtoul (check, &check, 10);
219         if (*check != '\0' || count == 0)
220           break;
221         if (is_track_number_tag) {
222           gst_tag_list_add (list, GST_TAG_MERGE_APPEND, GST_TAG_TRACK_COUNT,
223               count, NULL);
224         } else {
225           gst_tag_list_add (list, GST_TAG_MERGE_APPEND,
226               GST_TAG_ALBUM_VOLUME_COUNT, count, NULL);
227         }
228       }
229       if (*check == '\0') {
230         gst_tag_list_add (list, GST_TAG_MERGE_APPEND, gst_tag, tmp, NULL);
231       }
232       break;
233     }
234     case G_TYPE_STRING:{
235       gchar *valid = NULL;
236
237       /* specialcase for language code */
238       if (strcmp (tag, "LANGUAGE") == 0) {
239         const gchar *s = strchr (value, '[');
240
241         /* Accept both ISO-639-1 and ISO-639-2 codes */
242         if (s && strchr (s, ']') == s + 4) {
243           valid = g_strndup (s + 1, 3);
244         } else if (s && strchr (s, ']') == s + 3) {
245           valid = g_strndup (s + 1, 2);
246         } else if (strlen (value) != 2 && strlen (value) != 3) {
247           GST_WARNING ("doesn't contain an ISO-639 language code: %s", value);
248         }
249       } else if (strcmp (tag, "LICENSE") == 0) {
250         /* license tags in vorbis comments must contain an URI representing
251          * the license and nothing more, at least according to:
252          * http://wiki.xiph.org/index.php/LICENSE_and_COPYRIGHT_tags_on_Vorbis_Comments */
253         if (value && gst_uri_is_valid (value))
254           gst_tag = GST_TAG_LICENSE_URI;
255       }
256
257       if (!valid) {
258         valid = g_strdup (value);
259       }
260       gst_tag_list_add (list, GST_TAG_MERGE_APPEND, gst_tag, valid, NULL);
261       g_free (valid);
262       break;
263     }
264     case G_TYPE_DOUBLE:{
265       gchar *c;
266
267       c = g_strdup (value);
268       g_strdelimit (c, ",", '.');
269       gst_tag_list_add (list, GST_TAG_MERGE_APPEND, gst_tag,
270           g_strtod (c, NULL), NULL);
271       g_free (c);
272       break;
273     }
274     default:{
275       if (tag_type == GST_TYPE_DATE) {
276         guint y, d = 1, m = 1;
277         gchar *check = (gchar *) value;
278
279         y = strtoul (check, &check, 10);
280         if (*check == '-') {
281           check++;
282           m = strtoul (check, &check, 10);
283           if (*check == '-') {
284             check++;
285             d = strtoul (check, &check, 10);
286           }
287         }
288
289         /* accept dates like 2007-00-00 and 2007-05-00 */
290         if (y != 0) {
291           if (m == 0 && d == 0)
292             m = d = 1;
293           else if (m != 0 && d == 0)
294             d = 1;
295         }
296
297         /* date might be followed by a time */
298         if ((*check == '\0' || g_ascii_isspace (*check)) && y != 0 &&
299             g_date_valid_dmy (d, m, y)) {
300           GDate *date;
301
302           date = g_date_new_dmy (d, m, y);
303           gst_tag_list_add (list, GST_TAG_MERGE_APPEND, gst_tag, date, NULL);
304           g_date_free (date);
305         } else {
306           GST_DEBUG ("skipping invalid date '%s' (%u,%u,%u)", value, y, m, d);
307         }
308       } else {
309         GST_WARNING ("Unhandled tag of type '%s' (%d)",
310             g_type_name (tag_type), (gint) tag_type);
311       }
312       break;
313     }
314   }
315 }
316
317 static void
318 gst_vorbis_tag_add_coverart (GstTagList * tags, gchar * img_data_base64,
319     gint base64_len)
320 {
321   GstBuffer *img;
322   gsize img_len;
323
324   if (base64_len < 2)
325     goto not_enough_data;
326
327   /* img_data_base64 points to a temporary copy of the base64 encoded data, so
328    * it's safe to do inpace decoding here
329    */
330   g_base64_decode_inplace (img_data_base64, &img_len);
331   if (img_len == 0)
332     goto decode_failed;
333
334   img =
335       gst_tag_image_data_to_image_buffer ((const guint8 *) img_data_base64,
336       img_len, GST_TAG_IMAGE_TYPE_NONE);
337
338   if (img == NULL)
339     goto convert_failed;
340
341   gst_tag_list_add (tags, GST_TAG_MERGE_APPEND,
342       GST_TAG_PREVIEW_IMAGE, img, NULL);
343
344   gst_buffer_unref (img);
345   return;
346
347 /* ERRORS */
348 not_enough_data:
349   {
350     GST_WARNING ("COVERART tag with too little base64-encoded data");
351     return;
352   }
353 decode_failed:
354   {
355     GST_WARNING ("Couldn't decode base64 image data from COVERART tag");
356     return;
357   }
358 convert_failed:
359   {
360     GST_WARNING ("Couldn't extract image or image type from COVERART tag");
361     return;
362   }
363 }
364
365 /* Standardized way of adding pictures to vorbiscomments:
366  * http://wiki.xiph.org/VorbisComment#METADATA_BLOCK_PICTURE
367  */
368 static void
369 gst_vorbis_tag_add_metadata_block_picture (GstTagList * tags,
370     gchar * value, gint value_len)
371 {
372   GstByteReader reader;
373   guint32 img_len = 0, img_type = 0;
374   guint32 img_mimetype_len = 0, img_description_len = 0;
375   gsize decoded_len;
376   const guint8 *data = NULL;
377
378   /* img_data_base64 points to a temporary copy of the base64 encoded data, so
379    * it's safe to do inpace decoding here
380    */
381   g_base64_decode_inplace (value, &decoded_len);
382   if (decoded_len == 0)
383     goto decode_failed;
384
385   gst_byte_reader_init (&reader, (guint8 *) value, decoded_len);
386
387   if (!gst_byte_reader_get_uint32_be (&reader, &img_type))
388     goto error;
389
390   if (!gst_byte_reader_get_uint32_be (&reader, &img_mimetype_len))
391     goto error;
392   if (!gst_byte_reader_skip (&reader, img_mimetype_len))
393     goto error;
394
395   if (!gst_byte_reader_get_uint32_be (&reader, &img_description_len))
396     goto error;
397   if (!gst_byte_reader_skip (&reader, img_description_len))
398     goto error;
399
400   /* Skip width, height, color depth and number of colors for
401    * indexed formats */
402   if (!gst_byte_reader_skip (&reader, 4 * 4))
403     goto error;
404
405   if (!gst_byte_reader_get_uint32_be (&reader, &img_len))
406     goto error;
407
408   if (!gst_byte_reader_get_data (&reader, img_len, &data))
409     goto error;
410
411   gst_tag_list_add_id3_image (tags, data, img_len, img_type);
412
413   return;
414
415 error:
416   GST_WARNING
417       ("Couldn't extract image or image type from METADATA_BLOCK_PICTURE tag");
418   return;
419 decode_failed:
420   GST_WARNING ("Failed to decode Base64 data from METADATA_BLOCK_PICTURE tag");
421   return;
422 }
423
424 /**
425  * gst_tag_list_from_vorbiscomment_buffer:
426  * @buffer: buffer to convert
427  * @id_data: identification data at start of stream
428  * @id_data_length: length of identification data
429  * @vendor_string: pointer to a string that should take the vendor string
430  *                 of this vorbis comment or NULL if you don't need it.
431  *
432  * Creates a new tag list that contains the information parsed out of a
433  * vorbiscomment packet.
434  *
435  * Returns: A new #GstTagList with all tags that could be extracted from the
436  *          given vorbiscomment buffer or NULL on error.
437  */
438 GstTagList *
439 gst_tag_list_from_vorbiscomment_buffer (const GstBuffer * buffer,
440     const guint8 * id_data, const guint id_data_length, gchar ** vendor_string)
441 {
442 #define ADVANCE(x) G_STMT_START{                                                \
443   data += x;                                                                    \
444   size -= x;                                                                    \
445   if (size < 4) goto error;                                                     \
446   cur_size = GST_READ_UINT32_LE (data);                                         \
447   data += 4;                                                                    \
448   size -= 4;                                                                    \
449   if (cur_size > size) goto error;                                              \
450   cur = (gchar*)data;                                                                   \
451 }G_STMT_END
452   gchar *cur, *value;
453   guint cur_size;
454   guint iterations;
455   guint8 *data;
456   guint size, value_len;
457   GstTagList *list;
458
459   g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
460   g_return_val_if_fail (id_data != NULL || id_data_length == 0, NULL);
461
462   data = GST_BUFFER_DATA (buffer);
463   size = GST_BUFFER_SIZE (buffer);
464   list = gst_tag_list_new ();
465
466   if (size < 11 || size <= id_data_length + 4)
467     goto error;
468
469   if (id_data_length > 0 && memcmp (data, id_data, id_data_length) != 0)
470     goto error;
471
472   ADVANCE (id_data_length);
473
474   if (vendor_string)
475     *vendor_string = g_strndup (cur, cur_size);
476
477   ADVANCE (cur_size);
478   iterations = cur_size;
479   cur_size = 0;
480
481   while (iterations) {
482     ADVANCE (cur_size);
483     iterations--;
484     cur = g_strndup (cur, cur_size);
485     value = strchr (cur, '=');
486     if (value == NULL) {
487       g_free (cur);
488       continue;
489     }
490     *value = '\0';
491     value++;
492     value_len = strlen (value);
493     if (value_len == 0 || !g_utf8_validate (value, value_len, NULL)) {
494       g_free (cur);
495       continue;
496     }
497     /* we'll just ignore COVERARTMIME and typefind the image data */
498     if (g_ascii_strcasecmp (cur, "COVERARTMIME") == 0) {
499       continue;
500     } else if (g_ascii_strcasecmp (cur, "COVERART") == 0) {
501       gst_vorbis_tag_add_coverart (list, value, value_len);
502     } else if (g_ascii_strcasecmp (cur, "METADATA_BLOCK_PICTURE") == 0) {
503       gst_vorbis_tag_add_metadata_block_picture (list, value, value_len);
504     } else {
505       gst_vorbis_tag_add (list, cur, value);
506     }
507     g_free (cur);
508   }
509
510   return list;
511
512 error:
513   gst_tag_list_free (list);
514   return NULL;
515 #undef ADVANCE
516 }
517
518 typedef struct
519 {
520   guint count;
521   guint data_count;
522   GList *entries;
523 }
524 MyForEach;
525
526 static GList *
527 gst_tag_to_metadata_block_picture (const gchar * tag,
528     const GValue * image_value)
529 {
530   gchar *comment_data, *data_result;
531   const gchar *mime_type;
532   guint mime_type_len;
533   GstStructure *mime_struct;
534   GstBuffer *buffer;
535   GList *l = NULL;
536   GstByteWriter writer;
537   GstTagImageType image_type = GST_TAG_IMAGE_TYPE_NONE;
538   gint width = 0, height = 0;
539   guint8 *metadata_block;
540   guint metadata_block_len;
541
542   g_return_val_if_fail (image_value != NULL, NULL);
543
544   buffer = gst_value_get_buffer (image_value);
545   g_return_val_if_fail (gst_caps_is_fixed (buffer->caps), NULL);
546   mime_struct = gst_caps_get_structure (buffer->caps, 0);
547
548   mime_type = gst_structure_get_name (mime_struct);
549   if (strcmp (mime_type, "text/uri-list") == 0)
550     mime_type = "-->";
551   mime_type_len = strlen (mime_type);
552
553   gst_structure_get (mime_struct, "image-type", GST_TYPE_TAG_IMAGE_TYPE,
554       &image_type, "width", G_TYPE_INT, &width, "height", G_TYPE_INT, &height,
555       NULL);
556
557   metadata_block_len = 32 + mime_type_len + GST_BUFFER_SIZE (buffer);
558   gst_byte_writer_init_with_size (&writer, metadata_block_len, TRUE);
559
560   if (image_type == GST_TAG_IMAGE_TYPE_NONE
561       && strcmp (tag, GST_TAG_PREVIEW_IMAGE) == 0) {
562     gst_byte_writer_put_uint32_be_unchecked (&writer, 0x01);
563   } else {
564     /* Convert to ID3v2 APIC image type */
565     if (image_type == GST_TAG_IMAGE_TYPE_NONE)
566       image_type = GST_TAG_IMAGE_TYPE_UNDEFINED;
567     else
568       image_type = image_type + 2;
569     gst_byte_writer_put_uint32_be_unchecked (&writer, image_type);
570   }
571
572   gst_byte_writer_put_uint32_be_unchecked (&writer, mime_type_len);
573   gst_byte_writer_put_data_unchecked (&writer, (guint8 *) mime_type,
574       mime_type_len);
575   /* description length */
576   gst_byte_writer_put_uint32_be_unchecked (&writer, 0);
577   gst_byte_writer_put_uint32_be_unchecked (&writer, width);
578   gst_byte_writer_put_uint32_be_unchecked (&writer, height);
579   /* color depth */
580   gst_byte_writer_put_uint32_be_unchecked (&writer, 0);
581   /* for indexed formats the number of colors */
582   gst_byte_writer_put_uint32_be_unchecked (&writer, 0);
583   gst_byte_writer_put_uint32_be_unchecked (&writer, GST_BUFFER_SIZE (buffer));
584   gst_byte_writer_put_data_unchecked (&writer, GST_BUFFER_DATA (buffer),
585       GST_BUFFER_SIZE (buffer));
586   g_assert (gst_byte_writer_get_pos (&writer) == metadata_block_len);
587
588   metadata_block = gst_byte_writer_reset_and_get_data (&writer);
589   comment_data = g_base64_encode (metadata_block, metadata_block_len);
590   g_free (metadata_block);
591   data_result = g_strdup_printf ("METADATA_BLOCK_PICTURE=%s", comment_data);
592   g_free (comment_data);
593
594   l = g_list_append (l, data_result);
595
596   return l;
597 }
598
599 /**
600  * gst_tag_to_vorbis_comments:
601  * @list: a #GstTagList
602  * @tag: a GStreamer tag identifier, such as #GST_TAG_ARTIST
603  *
604  * Creates a new tag list that contains the information parsed out of a
605  * vorbiscomment packet.
606  *
607  * Returns: A #GList of newly-allocated key=value strings. Free with
608  *          g_list_foreach (list, (GFunc) g_free, NULL) plus g_list_free (list)
609  */
610 GList *
611 gst_tag_to_vorbis_comments (const GstTagList * list, const gchar * tag)
612 {
613   const gchar *vorbis_tag = NULL;
614   GList *l = NULL;
615   guint i;
616
617   g_return_val_if_fail (list != NULL, NULL);
618   g_return_val_if_fail (tag != NULL, NULL);
619
620   /* Special case: cover art is split into two tags to store data and
621    * MIME-type. Even if the tag list contains multiple entries, there is
622    * no reasonable way to save more than one.
623    * If both, preview image and image, are present we prefer the
624    * image tag.
625    */
626   if ((strcmp (tag, GST_TAG_PREVIEW_IMAGE) == 0 &&
627           gst_tag_list_get_tag_size (list, GST_TAG_IMAGE) == 0) ||
628       strcmp (tag, GST_TAG_IMAGE) == 0) {
629     return gst_tag_to_metadata_block_picture (tag,
630         gst_tag_list_get_value_index (list, tag, 0));
631   }
632
633   if (strcmp (tag, GST_TAG_EXTENDED_COMMENT) != 0) {
634     vorbis_tag = gst_tag_to_vorbis_tag (tag);
635     if (!vorbis_tag)
636       return NULL;
637   }
638
639   /* FIXME: for tags that can map to multiple vorbis comment keys, add all
640    * of the possible keys */
641   for (i = 0; i < gst_tag_list_get_tag_size (list, tag); i++) {
642     GType tag_type = gst_tag_get_type (tag);
643     gchar *result = NULL;
644
645     switch (tag_type) {
646       case G_TYPE_UINT:{
647         guint u;
648
649         if (!gst_tag_list_get_uint_index (list, tag, i, &u))
650           g_return_val_if_reached (NULL);
651         result = g_strdup_printf ("%s=%u", vorbis_tag, u);
652         break;
653       }
654       case G_TYPE_STRING:{
655         const gchar *str = NULL;
656
657         if (!gst_tag_list_peek_string_index (list, tag, i, &str))
658           g_return_val_if_reached (NULL);
659
660         /* special case: GST_TAG_EXTENDED_COMMENT */
661         if (vorbis_tag == NULL) {
662           gchar *key = NULL, *val = NULL;
663
664           if (gst_tag_parse_extended_comment (str, &key, NULL, &val, TRUE)) {
665             result = g_strdup_printf ("%s=%s", key, val);
666             g_free (key);
667             g_free (val);
668           } else {
669             GST_WARNING ("Not a valid extended comment string: %s", str);
670             continue;
671           }
672         } else {
673           result = g_strdup_printf ("%s=%s", vorbis_tag, str);
674         }
675         break;
676       }
677       case G_TYPE_DOUBLE:{
678         gdouble value;
679         gchar buf[G_ASCII_DTOSTR_BUF_SIZE];
680
681         if (!gst_tag_list_get_double_index (list, tag, i, &value))
682           g_return_val_if_reached (NULL);
683         g_ascii_formatd (buf, G_ASCII_DTOSTR_BUF_SIZE, "%f", value);
684         result = g_strconcat (vorbis_tag, "=", buf, NULL);
685         break;
686       }
687       default:{
688         if (tag_type == GST_TYPE_DATE) {
689           GDate *date;
690
691           if (!gst_tag_list_get_date_index (list, tag, i, &date))
692             g_return_val_if_reached (NULL);
693
694           /* vorbis suggests using ISO date formats */
695           result =
696               g_strdup_printf ("%s=%04d-%02d-%02d", vorbis_tag,
697               (gint) g_date_get_year (date), (gint) g_date_get_month (date),
698               (gint) g_date_get_day (date));
699           g_date_free (date);
700         } else {
701           GST_DEBUG ("Couldn't write tag %s", tag);
702           continue;
703         }
704         break;
705       }
706     }
707     l = g_list_prepend (l, result);
708   }
709
710   return g_list_reverse (l);
711 }
712
713 static void
714 write_one_tag (const GstTagList * list, const gchar * tag, gpointer user_data)
715 {
716   MyForEach *data = (MyForEach *) user_data;
717   GList *comments;
718   GList *it;
719
720   comments = gst_tag_to_vorbis_comments (list, tag);
721
722   for (it = comments; it != NULL; it = it->next) {
723     gchar *result = it->data;
724
725     data->count++;
726     data->data_count += strlen (result);
727     data->entries = g_list_prepend (data->entries, result);
728   }
729
730   g_list_free (comments);
731 }
732
733 /**
734  * gst_tag_list_to_vorbiscomment_buffer:
735  * @list: tag list to convert
736  * @id_data: identification data at start of stream
737  * @id_data_length: length of identification data, may be 0 if @id_data is NULL
738  * @vendor_string: string that describes the vendor string or NULL
739  *
740  * Creates a new vorbiscomment buffer from a tag list.
741  *
742  * Returns: A new #GstBuffer containing a vorbiscomment buffer with all tags
743  *          that could be converted from the given tag list.
744  */
745 GstBuffer *
746 gst_tag_list_to_vorbiscomment_buffer (const GstTagList * list,
747     const guint8 * id_data, const guint id_data_length,
748     const gchar * vendor_string)
749 {
750   GstBuffer *buffer;
751   guint8 *data;
752   guint i;
753   GList *l;
754   MyForEach my_data = { 0, 0, NULL };
755   guint vendor_len;
756   int required_size;
757
758   g_return_val_if_fail (GST_IS_TAG_LIST (list), NULL);
759   g_return_val_if_fail (id_data != NULL || id_data_length == 0, NULL);
760
761   if (vendor_string == NULL)
762     vendor_string = "GStreamer encoded vorbiscomment";
763   vendor_len = strlen (vendor_string);
764   required_size = id_data_length + 4 + vendor_len + 4 + 1;
765   gst_tag_list_foreach ((GstTagList *) list, write_one_tag, &my_data);
766   required_size += 4 * my_data.count + my_data.data_count;
767   buffer = gst_buffer_new_and_alloc (required_size);
768   data = GST_BUFFER_DATA (buffer);
769   if (id_data_length > 0) {
770     memcpy (data, id_data, id_data_length);
771     data += id_data_length;
772   }
773   GST_WRITE_UINT32_LE (data, vendor_len);
774   data += 4;
775   memcpy (data, vendor_string, vendor_len);
776   data += vendor_len;
777   l = my_data.entries = g_list_reverse (my_data.entries);
778   GST_WRITE_UINT32_LE (data, my_data.count);
779   data += 4;
780   for (i = 0; i < my_data.count; i++) {
781     guint size;
782     gchar *cur;
783
784     g_assert (l != NULL);
785     cur = l->data;
786     l = g_list_next (l);
787     size = strlen (cur);
788     GST_WRITE_UINT32_LE (data, size);
789     data += 4;
790     memcpy (data, cur, size);
791     data += size;
792   }
793   g_list_foreach (my_data.entries, (GFunc) g_free, NULL);
794   g_list_free (my_data.entries);
795   *data = 1;
796
797   return buffer;
798 }