Merge branch 'master' into 0.11
[platform/upstream/gstreamer.git] / gst-libs / gst / tag / tags.c
1 /* GStreamer non-core tag registration and tag utility functions
2  * Copyright (C) 2005 Ross Burton <ross@burtonini.com>
3  * Copyright (C) 2006-2008 Tim-Philipp Müller <tim centricular net>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
24
25 #include <gst/gst-i18n-plugin.h>
26 #include <gst/base/gsttypefindhelper.h>
27 #include <gst/gst.h>
28 #include "tag.h"
29
30 #include <string.h>
31
32 /**
33  * SECTION:gsttag
34  * @short_description: additional tag definitions for plugins and applications
35  * @see_also: #GstTagList
36  * 
37  * <refsect2>
38  * <para>
39  * Contains additional standardized GStreamer tag definitions for plugins
40  * and applications, and functions to register them with the GStreamer
41  * tag system.
42  * </para>
43  * </refsect2>
44  */
45
46 #ifndef GST_DISABLE_GST_DEBUG
47 #define GST_CAT_DEFAULT gst_tag_ensure_debug_category()
48
49 static GstDebugCategory *
50 gst_tag_ensure_debug_category (void)
51 {
52   static gsize cat_gonce = 0;
53
54   if (g_once_init_enter (&cat_gonce)) {
55     GstDebugCategory *cat = NULL;
56
57     GST_DEBUG_CATEGORY_INIT (cat, "tag-tags", 0, "GstTag helper functions");
58
59     g_once_init_leave (&cat_gonce, (gsize) cat);
60   }
61
62   return (GstDebugCategory *) cat_gonce;
63 }
64 #endif /* GST_DISABLE_GST_DEBUG */
65
66 static gpointer
67 gst_tag_register_tags_internal (gpointer unused)
68 {
69 #ifdef ENABLE_NLS
70   GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
71       LOCALEDIR);
72   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
73   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
74 #endif
75
76   /* musicbrainz tags */
77   gst_tag_register (GST_TAG_MUSICBRAINZ_TRACKID, GST_TAG_FLAG_META,
78       G_TYPE_STRING, _("track ID"), _("MusicBrainz track ID"), NULL);
79   gst_tag_register (GST_TAG_MUSICBRAINZ_ARTISTID, GST_TAG_FLAG_META,
80       G_TYPE_STRING, _("artist ID"), _("MusicBrainz artist ID"), NULL);
81   gst_tag_register (GST_TAG_MUSICBRAINZ_ALBUMID, GST_TAG_FLAG_META,
82       G_TYPE_STRING, _("album ID"), _("MusicBrainz album ID"), NULL);
83   gst_tag_register (GST_TAG_MUSICBRAINZ_ALBUMARTISTID, GST_TAG_FLAG_META,
84       G_TYPE_STRING,
85       _("album artist ID"), _("MusicBrainz album artist ID"), NULL);
86   gst_tag_register (GST_TAG_MUSICBRAINZ_TRMID, GST_TAG_FLAG_META,
87       G_TYPE_STRING, _("track TRM ID"), _("MusicBrainz TRM ID"), NULL);
88
89   /* CDDA tags */
90   gst_tag_register (GST_TAG_CDDA_CDDB_DISCID, GST_TAG_FLAG_META,
91       G_TYPE_STRING, "discid", "CDDB discid for metadata retrieval",
92       gst_tag_merge_use_first);
93
94   gst_tag_register (GST_TAG_CDDA_CDDB_DISCID_FULL, GST_TAG_FLAG_META,
95       G_TYPE_STRING, "discid full",
96       "CDDB discid for metadata retrieval (full)", gst_tag_merge_use_first);
97
98   gst_tag_register (GST_TAG_CDDA_MUSICBRAINZ_DISCID, GST_TAG_FLAG_META,
99       G_TYPE_STRING, "musicbrainz-discid",
100       "Musicbrainz discid for metadata retrieval", gst_tag_merge_use_first);
101
102   gst_tag_register (GST_TAG_CDDA_MUSICBRAINZ_DISCID_FULL, GST_TAG_FLAG_META,
103       G_TYPE_STRING, "musicbrainz-discid-full",
104       "Musicbrainz discid for metadata retrieval (full)",
105       gst_tag_merge_use_first);
106
107   /* photography tags */
108   gst_tag_register (GST_TAG_CAPTURING_SHUTTER_SPEED, GST_TAG_FLAG_META,
109       GST_TYPE_FRACTION, _("capturing shutter speed"),
110       _("Shutter speed used when capturing an image, in seconds"), NULL);
111
112   gst_tag_register (GST_TAG_CAPTURING_FOCAL_RATIO, GST_TAG_FLAG_META,
113       G_TYPE_DOUBLE, _("capturing focal ratio"),
114       _("Focal ratio (f-number) used when capturing the image"), NULL);
115
116   gst_tag_register (GST_TAG_CAPTURING_FOCAL_LENGTH, GST_TAG_FLAG_META,
117       G_TYPE_DOUBLE, _("capturing focal length"),
118       _("Focal length of the lens used capturing the image, in mm"), NULL);
119
120   gst_tag_register (GST_TAG_CAPTURING_DIGITAL_ZOOM_RATIO, GST_TAG_FLAG_META,
121       G_TYPE_DOUBLE, _("capturing digital zoom ratio"),
122       _("Digital zoom ratio used when capturing an image"), NULL);
123
124   gst_tag_register (GST_TAG_CAPTURING_ISO_SPEED, GST_TAG_FLAG_META,
125       G_TYPE_INT, _("capturing iso speed"),
126       _("The ISO speed used when capturing an image"), NULL);
127
128   gst_tag_register (GST_TAG_CAPTURING_EXPOSURE_PROGRAM, GST_TAG_FLAG_META,
129       G_TYPE_STRING, _("capturing exposure program"),
130       _("The exposure program used when capturing an image"), NULL);
131
132   gst_tag_register (GST_TAG_CAPTURING_EXPOSURE_MODE, GST_TAG_FLAG_META,
133       G_TYPE_STRING, _("capturing exposure mode"),
134       _("The exposure mode used when capturing an image"), NULL);
135
136   gst_tag_register (GST_TAG_CAPTURING_SCENE_CAPTURE_TYPE, GST_TAG_FLAG_META,
137       G_TYPE_STRING, _("capturing scene capture type"),
138       _("The scene capture mode used when capturing an image"), NULL);
139
140   gst_tag_register (GST_TAG_CAPTURING_GAIN_ADJUSTMENT, GST_TAG_FLAG_META,
141       G_TYPE_STRING, _("capturing gain adjustment"),
142       _("The overall gain adjustment applied on an image"), NULL);
143
144   gst_tag_register (GST_TAG_CAPTURING_WHITE_BALANCE, GST_TAG_FLAG_META,
145       G_TYPE_STRING, _("capturing white balance"),
146       _("The white balance mode set when capturing an image"), NULL);
147
148   gst_tag_register (GST_TAG_CAPTURING_CONTRAST, GST_TAG_FLAG_META,
149       G_TYPE_STRING, _("capturing contrast"),
150       _("The direction of contrast processing applied "
151           "when capturing an image"), NULL);
152
153   gst_tag_register (GST_TAG_CAPTURING_SATURATION, GST_TAG_FLAG_META,
154       G_TYPE_STRING, _("capturing saturation"),
155       _("The direction of saturation processing applied when "
156           "capturing an image"), NULL);
157
158   gst_tag_register (GST_TAG_CAPTURING_SHARPNESS, GST_TAG_FLAG_META,
159       G_TYPE_STRING, _("capturing sharpness"),
160       _("The direction of sharpness processing applied "
161           "when capturing an image"), NULL);
162
163   gst_tag_register (GST_TAG_CAPTURING_FLASH_FIRED, GST_TAG_FLAG_META,
164       G_TYPE_BOOLEAN, _("capturing flash fired"),
165       _("If the flash fired while capturing an image"), NULL);
166
167   gst_tag_register (GST_TAG_CAPTURING_FLASH_MODE, GST_TAG_FLAG_META,
168       G_TYPE_STRING, _("capturing flash mode"),
169       _("The selected flash mode while capturing an image"), NULL);
170
171   gst_tag_register (GST_TAG_CAPTURING_METERING_MODE, GST_TAG_FLAG_META,
172       G_TYPE_STRING, _("capturing metering mode"),
173       _("The metering mode used while determining exposure for capturing an"
174           " image"), NULL);
175
176   gst_tag_register (GST_TAG_CAPTURING_SOURCE, GST_TAG_FLAG_META,
177       G_TYPE_STRING, _("capturing source"),
178       _("The source or type of device used for the capture"), NULL);
179
180   gst_tag_register (GST_TAG_IMAGE_HORIZONTAL_PPI, GST_TAG_FLAG_META,
181       G_TYPE_DOUBLE, _("image horizontal ppi"),
182       _("Media (image/video) intended horizontal pixel density in ppi"), NULL);
183
184   gst_tag_register (GST_TAG_IMAGE_VERTICAL_PPI, GST_TAG_FLAG_META,
185       G_TYPE_DOUBLE, _("image vertical ppi"),
186       _("Media (image/video) intended vertical pixel density in ppi"), NULL);
187
188   return NULL;
189 }
190
191 /* FIXME 0.11: rename this to gst_tag_init() or gst_tag_register_tags() */
192 /**
193  * gst_tag_register_musicbrainz_tags
194  *
195  * Registers additional musicbrainz-specific tags with the GStreamer tag
196  * system. Plugins and applications that use these tags should call this
197  * function before using them. Can be called multiple times.
198  */
199 void
200 gst_tag_register_musicbrainz_tags (void)
201 {
202   static GOnce mb_once = G_ONCE_INIT;
203
204   g_once (&mb_once, gst_tag_register_tags_internal, NULL);
205 }
206
207 static void
208 register_tag_image_type_enum (GType * id)
209 {
210   static const GEnumValue image_types[] = {
211     {GST_TAG_IMAGE_TYPE_NONE, "GST_TAG_IMAGE_TYPE_NONE", "none"},
212     {GST_TAG_IMAGE_TYPE_UNDEFINED, "GST_TAG_IMAGE_TYPE_UNDEFINED", "undefined"},
213     {GST_TAG_IMAGE_TYPE_FRONT_COVER, "GST_TAG_IMAGE_TYPE_FRONT_COVER",
214         "front-cover"},
215     {GST_TAG_IMAGE_TYPE_BACK_COVER, "GST_TAG_IMAGE_TYPE_BACK_COVER",
216         "back-cover"},
217     {GST_TAG_IMAGE_TYPE_LEAFLET_PAGE, "GST_TAG_IMAGE_TYPE_LEAFLET_PAGE",
218         "leaflet-page"},
219     {GST_TAG_IMAGE_TYPE_MEDIUM, "GST_TAG_IMAGE_TYPE_MEDIUM", "medium"},
220     {GST_TAG_IMAGE_TYPE_LEAD_ARTIST, "GST_TAG_IMAGE_TYPE_LEAD_ARTIST",
221         "lead-artist"},
222     {GST_TAG_IMAGE_TYPE_ARTIST, "GST_TAG_IMAGE_TYPE_ARTIST", "artist"},
223     {GST_TAG_IMAGE_TYPE_CONDUCTOR, "GST_TAG_IMAGE_TYPE_CONDUCTOR", "conductor"},
224     {GST_TAG_IMAGE_TYPE_BAND_ORCHESTRA, "GST_TAG_IMAGE_TYPE_BAND_ORCHESTRA",
225         "band-orchestra"},
226     {GST_TAG_IMAGE_TYPE_COMPOSER, "GST_TAG_IMAGE_TYPE_COMPOSER", "composer"},
227     {GST_TAG_IMAGE_TYPE_LYRICIST, "GST_TAG_IMAGE_TYPE_LYRICIST", "lyricist"},
228     {GST_TAG_IMAGE_TYPE_RECORDING_LOCATION,
229           "GST_TAG_IMAGE_TYPE_RECORDING_LOCATION",
230         "recording-location"},
231     {GST_TAG_IMAGE_TYPE_DURING_RECORDING, "GST_TAG_IMAGE_TYPE_DURING_RECORDING",
232         "during-recording"},
233     {GST_TAG_IMAGE_TYPE_DURING_PERFORMANCE,
234           "GST_TAG_IMAGE_TYPE_DURING_PERFORMANCE",
235         "during-performance"},
236     {GST_TAG_IMAGE_TYPE_VIDEO_CAPTURE, "GST_TAG_IMAGE_TYPE_VIDEO_CAPTURE",
237         "video-capture"},
238     {GST_TAG_IMAGE_TYPE_FISH, "GST_TAG_IMAGE_TYPE_FISH", "fish"},
239     {GST_TAG_IMAGE_TYPE_ILLUSTRATION, "GST_TAG_IMAGE_TYPE_ILLUSTRATION",
240         "illustration"},
241     {GST_TAG_IMAGE_TYPE_BAND_ARTIST_LOGO, "GST_TAG_IMAGE_TYPE_BAND_ARTIST_LOGO",
242         "artist-logo"},
243     {GST_TAG_IMAGE_TYPE_PUBLISHER_STUDIO_LOGO,
244           "GST_TAG_IMAGE_TYPE_PUBLISHER_STUDIO_LOGO",
245         "publisher-studio-logo"},
246     {0, NULL, NULL}
247   };
248
249   *id = g_enum_register_static ("GstTagImageType", image_types);
250
251   /* work around thread-safety issue with class creation in GLib */
252   g_type_class_ref (*id);
253 }
254
255 GType
256 gst_tag_image_type_get_type (void)
257 {
258   static GType id;
259
260   static GOnce once = G_ONCE_INIT;
261
262   g_once (&once, (GThreadFunc) register_tag_image_type_enum, &id);
263   return id;
264 }
265
266 static inline gboolean
267 gst_tag_image_type_is_valid (GstTagImageType type)
268 {
269   GEnumClass *klass;
270
271   gboolean res;
272
273   klass = g_type_class_ref (gst_tag_image_type_get_type ());
274   res = (g_enum_get_value (klass, type) != NULL);
275   g_type_class_unref (klass);
276
277   return res;
278 }
279
280 /**
281  * gst_tag_parse_extended_comment:
282  * @ext_comment: an extended comment string, see #GST_TAG_EXTENDED_COMMENT
283  * @key: return location for the comment description key, or NULL
284  * @lang: return location for the comment ISO-639 language code, or NULL
285  * @value: return location for the actual comment string, or NULL
286  * @fail_if_no_key: whether to fail if strings are not in key=value form
287  *
288  * Convenience function to parse a GST_TAG_EXTENDED_COMMENT string and
289  * separate it into its components.
290  *
291  * If successful, @key, @lang and/or @value will be set to newly allocated
292  * strings that you need to free with g_free() when done. @key and @lang
293  * may also be set to NULL by this function if there is no key or no language
294  * code in the extended comment string.
295  *
296  * Returns: TRUE if the string could be parsed, otherwise FALSE
297  *
298  * Since: 0.10.10
299  */
300 gboolean
301 gst_tag_parse_extended_comment (const gchar * ext_comment, gchar ** key,
302     gchar ** lang, gchar ** value, gboolean fail_if_no_key)
303 {
304   const gchar *div, *bop, *bcl;
305
306   g_return_val_if_fail (ext_comment != NULL, FALSE);
307   g_return_val_if_fail (g_utf8_validate (ext_comment, -1, NULL), FALSE);
308
309   if (key)
310     *key = NULL;
311   if (lang)
312     *lang = NULL;
313
314   div = strchr (ext_comment, '=');
315   bop = strchr (ext_comment, '[');
316   bcl = strchr (ext_comment, ']');
317
318   if (div == NULL) {
319     if (fail_if_no_key)
320       return FALSE;
321     if (value)
322       *value = g_strdup (ext_comment);
323     return TRUE;
324   }
325
326   if (bop != NULL && bop < div) {
327     if (bcl < bop || bcl > div)
328       return FALSE;
329     if (key)
330       *key = g_strndup (ext_comment, bop - ext_comment);
331     if (lang)
332       *lang = g_strndup (bop + 1, bcl - bop - 1);
333   } else {
334     if (key)
335       *key = g_strndup (ext_comment, div - ext_comment);
336   }
337
338   if (value)
339     *value = g_strdup (div + 1);
340
341   return TRUE;
342 }
343
344 /**
345  * gst_tag_freeform_string_to_utf8:
346  * @data: string data
347  * @size: length of string data, or -1 if the string is NUL-terminated
348  * @env_vars: a NULL-terminated string array of environment variable names,
349  *            or NULL
350  *
351  * Convenience function to read a string with unknown character encoding. If
352  * the string is already in UTF-8 encoding, it will be returned right away.
353  * If not it tries to detect byte-order-mark for UTF-16/32 cases and use that.
354  * Otherwise, the environment will be searched for a number of environment
355  * variables (whose names are specified in the NULL-terminated string array
356  * @env_vars) containing a list of character encodings to try/use. If none
357  * are specified, the current locale will be tried. If that also doesn't work,
358  * WINDOWS-1252/ISO-8859-1 is assumed (which will almost always succeed).
359  *
360  * Returns: a newly-allocated string in UTF-8 encoding, or NULL
361  *
362  * Since: 0.10.13
363  */
364 gchar *
365 gst_tag_freeform_string_to_utf8 (const gchar * data, gint size,
366     const gchar ** env_vars)
367 {
368   const gchar *cur_loc = NULL;
369
370   gsize bytes_read;
371
372   gchar *utf8 = NULL;
373
374   g_return_val_if_fail (data != NULL, NULL);
375
376   if (size < 0)
377     size = strlen (data);
378
379   /* chop off trailing string terminators to make sure utf8_validate doesn't
380    * get to see them (since that would make the utf8 check fail) */
381   while (size > 0 && data[size - 1] == '\0')
382     --size;
383
384   /* Should we try the charsets specified
385    * via environment variables FIRST ? */
386   if (g_utf8_validate (data, size, NULL)) {
387     utf8 = g_strndup (data, size);
388     GST_LOG ("String '%s' is valid UTF-8 already", utf8);
389     goto beach;
390   }
391
392   /* check for and use byte-order-mark for UTF-16/32 cases */
393   if (size >= 2) {
394     const gchar *c = NULL;
395     gint prefix, ssize;
396
397     if (size >= 4) {
398       prefix = 4;
399       ssize = GST_ROUND_DOWN_4 (size - 4);
400       switch (GST_READ_UINT32_BE (data)) {
401         case 0x0000FEFF:
402           c = "UTF-32BE";
403           break;
404         case 0xFFFE0000:
405           c = "UTF-32LE";
406           break;
407         default:
408           break;
409       }
410     }
411     if (!c) {
412       prefix = 2;
413       ssize = GST_ROUND_DOWN_2 (size - 2);
414       switch (GST_READ_UINT16_BE (data)) {
415         case 0xFEFF:
416           c = "UTF-16BE";
417           break;
418         case 0xFFFE:
419           c = "UTF-16LE";
420           break;
421         default:
422           break;
423       }
424     }
425     if (c) {
426       GST_LOG ("Trying to convert freeform string to UTF-8 from '%s'", c);
427       if ((utf8 =
428               g_convert (data + prefix, ssize, "UTF-8", c, &bytes_read, NULL,
429                   NULL))) {
430         if (bytes_read == ssize)
431           goto beach;
432         g_free (utf8);
433         utf8 = NULL;
434       }
435     }
436   }
437
438   while (env_vars && *env_vars != NULL) {
439     const gchar *env = NULL;
440
441     /* Try charsets specified via the environment */
442     env = g_getenv (*env_vars);
443     if (env != NULL && *env != '\0') {
444       gchar **c, **csets;
445
446       csets = g_strsplit (env, G_SEARCHPATH_SEPARATOR_S, -1);
447
448       for (c = csets; c && *c; ++c) {
449         GST_LOG ("Trying to convert freeform string to UTF-8 from '%s'", *c);
450         if ((utf8 =
451                 g_convert (data, size, "UTF-8", *c, &bytes_read, NULL, NULL))) {
452           if (bytes_read == size) {
453             g_strfreev (csets);
454             goto beach;
455           }
456           g_free (utf8);
457           utf8 = NULL;
458         }
459       }
460
461       g_strfreev (csets);
462     }
463     ++env_vars;
464   }
465
466   /* Try current locale (if not UTF-8) */
467   if (!g_get_charset (&cur_loc)) {
468     GST_LOG ("Trying to convert freeform string using locale ('%s')", cur_loc);
469     if ((utf8 = g_locale_to_utf8 (data, size, &bytes_read, NULL, NULL))) {
470       if (bytes_read == size) {
471         goto beach;
472       }
473       g_free (utf8);
474       utf8 = NULL;
475     }
476   }
477
478   /* Try Windows-1252 (which is a superset of ISO 8859-1 that uses a control
479    * character range in ISO 8859-1 for more printable characters) */
480   {
481     GError *err = NULL;
482
483     GST_LOG ("Trying to convert freeform string using Windows-1252/ISO-8859-1 "
484         "fallback");
485     utf8 = g_convert (data, size, "UTF-8", "WINDOWS-1252", &bytes_read, NULL,
486         &err);
487     if (err != NULL) {
488       /* fallback in case iconv implementation doesn't support windows-1252
489        * for some reason */
490       if (err->code == G_CONVERT_ERROR_NO_CONVERSION) {
491         utf8 = g_convert (data, size, "UTF-8", "ISO-8859-1", &bytes_read,
492             NULL, NULL);
493       }
494       g_error_free (err);
495     }
496
497     if (utf8 != NULL && bytes_read == size)
498       goto beach;
499   }
500
501   g_free (utf8);
502   return NULL;
503
504 beach:
505
506   g_strchomp (utf8);
507   if (utf8 && utf8[0] != '\0') {
508     GST_LOG ("Returning '%s'", utf8);
509     return utf8;
510   }
511
512   g_free (utf8);
513   return NULL;
514 }
515
516 /**
517  * gst_tag_image_data_to_image_buffer:
518  * @image_data: the (encoded) image
519  * @image_data_len: the length of the encoded image data at @image_data
520  * @image_type: type of the image, or #GST_TAG_IMAGE_TYPE_UNDEFINED. Pass
521  *     #GST_TAG_IMAGE_TYPE_NONE if no image type should be set at all (e.g.
522  *     for preview images)
523  *
524  * Helper function for tag-reading plugins to create a #GstBuffer suitable to
525  * add to a #GstTagList as an image tag (such as #GST_TAG_IMAGE or
526  * #GST_TAG_PREVIEW_IMAGE) from the encoded image data and an (optional) image
527  * type.
528  *
529  * Background: cover art and other images in tags are usually stored as a
530  * blob of binary image data, often accompanied by a MIME type or some other
531  * content type string (e.g. 'png', 'jpeg', 'jpg'). Sometimes there is also an
532  * 'image type' to indicate what kind of image this is (e.g. front cover,
533  * back cover, artist, etc.). The image data may also be an URI to the image
534  * rather than the image itself.
535  *
536  * In GStreamer, image tags are #GstBuffer<!-- -->s containing the raw image
537  * data, with the buffer caps describing the content type of the image
538  * (e.g. image/jpeg, image/png, text/uri-list). The buffer caps may contain
539  * an additional 'image-type' field of #GST_TYPE_TAG_IMAGE_TYPE to describe
540  * the type of image (front cover, back cover etc.). #GST_TAG_PREVIEW_IMAGE
541  * tags should not carry an image type, their type is already indicated via
542  * the special tag name.
543  *
544  * This function will do various checks and typefind the encoded image
545  * data (we can't trust the declared mime type).
546  *
547  * Returns: a newly-allocated image buffer for use in tag lists, or NULL
548  *
549  * Since: 0.10.20
550  */
551 GstBuffer *
552 gst_tag_image_data_to_image_buffer (const guint8 * image_data,
553     guint image_data_len, GstTagImageType image_type)
554 {
555   const gchar *name;
556   GstBuffer *image;
557   GstCaps *caps;
558   guint8 *data;
559
560   g_return_val_if_fail (image_data != NULL, NULL);
561   g_return_val_if_fail (image_data_len > 0, NULL);
562   g_return_val_if_fail (gst_tag_image_type_is_valid (image_type), NULL);
563
564   GST_DEBUG ("image data len: %u bytes", image_data_len);
565
566   /* allocate space for a NUL terminator for an uri too */
567   image = gst_buffer_new_and_alloc (image_data_len + 1);
568   if (image == NULL)
569     goto alloc_failed;
570
571   data = gst_buffer_map (image, NULL, NULL, GST_MAP_WRITE);
572   memcpy (data, image_data, image_data_len);
573   data[image_data_len] = '\0';
574   gst_buffer_unmap (image, data, image_data_len + 1);
575
576   /* Find GStreamer media type, can't trust declared type */
577   caps = gst_type_find_helper_for_buffer (NULL, image, NULL);
578
579   if (caps == NULL)
580     goto no_type;
581
582   GST_DEBUG ("Found GStreamer media type: %" GST_PTR_FORMAT, caps);
583
584   /* sanity check: make sure typefound/declared caps are either URI or image */
585   name = gst_structure_get_name (gst_caps_get_structure (caps, 0));
586
587   if (!g_str_has_prefix (name, "image/") &&
588       !g_str_has_prefix (name, "video/") &&
589       !g_str_equal (name, "text/uri-list")) {
590     GST_DEBUG ("Unexpected image type '%s', ignoring image frame", name);
591     goto error;
592   }
593
594   /* Decrease size by 1 if we don't have an URI list
595    * to keep the original size of the image
596    */
597   if (!g_str_equal (name, "text/uri-list"))
598     gst_buffer_set_size (image, image_data_len);
599
600   if (image_type != GST_TAG_IMAGE_TYPE_NONE) {
601     GST_LOG ("Setting image type: %d", image_type);
602     caps = gst_caps_make_writable (caps);
603     gst_caps_set_simple (caps, "image-type", GST_TYPE_TAG_IMAGE_TYPE,
604         image_type, NULL);
605   }
606
607   gst_buffer_set_caps (image, caps);
608   gst_caps_unref (caps);
609   return image;
610
611 /* ERRORS */
612 no_type:
613   {
614     GST_DEBUG ("Could not determine GStreamer media type, ignoring image");
615     /* fall through */
616   }
617 error:
618   {
619     if (image)
620       gst_buffer_unref (image);
621     if (caps)
622       gst_caps_unref (caps);
623     return NULL;
624   }
625 alloc_failed:
626   {
627     GST_WARNING ("failed to allocate buffer of %d for image", image_data_len);
628     gst_buffer_unref (image);
629     return NULL;
630   }
631
632 }