Original commit message from CVS:
* gst/gsttaglist.c: (_gst_tag_initialize):
* gst/gsttaglist.h:
API: add GST_TAG_IMAGE tag (#340721).
+2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
+
+ * gst/gsttaglist.c: (_gst_tag_initialize):
+ * gst/gsttaglist.h:
+ API: add GST_TAG_IMAGE tag (#340721).
+
2006-05-08 Wim Taymans <wim@fluendo.com>
* gst/gstquery.c:
#include "gsttaglist.h"
#include "gstinfo.h"
#include "gstvalue.h"
+#include "gstbuffer.h"
#include <gobject/gvaluecollector.h>
#include <string.h>
gst_tag_register (GST_TAG_LANGUAGE_CODE, GST_TAG_FLAG_META, G_TYPE_STRING,
_("language code"),
_("language code for this stream, conforming to ISO-639-1"), NULL);
+ gst_tag_register (GST_TAG_IMAGE, GST_TAG_FLAG_META, GST_TYPE_BUFFER,
+ _("image"), _("image related to this stream"), NULL);
}
/**
* Language code (ISO-639-1) (string)
*/
#define GST_TAG_LANGUAGE_CODE "language-code"
+/**
+ * GST_TAG_IMAGE:
+ *
+ * image (buffer) (buffer caps should specify the content type)
+ *
+ * Since: 0.10.6
+ */
+#define GST_TAG_IMAGE "image"
G_END_DECLS