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