mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 15:19:57 +00:00
update for tag API changes
This commit is contained in:
parent
47182ca61f
commit
f1558baf83
3 changed files with 39 additions and 29 deletions
|
@ -8132,7 +8132,7 @@ qtdemux_tag_add_covr (GstQTDemux * qtdemux, const char *tag1, const char *dummy,
|
|||
GNode *data;
|
||||
int len;
|
||||
int type;
|
||||
GstBuffer *buf;
|
||||
GstSample *sample;
|
||||
|
||||
data = qtdemux_tree_get_child_by_type (node, FOURCC_data);
|
||||
if (data) {
|
||||
|
@ -8140,12 +8140,13 @@ qtdemux_tag_add_covr (GstQTDemux * qtdemux, const char *tag1, const char *dummy,
|
|||
type = QT_UINT32 ((guint8 *) data->data + 8);
|
||||
GST_DEBUG_OBJECT (qtdemux, "have covr tag, type=%d,len=%d", type, len);
|
||||
if ((type == 0x0000000d || type == 0x0000000e) && len > 16) {
|
||||
if ((buf = gst_tag_image_data_to_image_buffer ((guint8 *) data->data + 16,
|
||||
if ((sample =
|
||||
gst_tag_image_data_to_image_sample ((guint8 *) data->data + 16,
|
||||
len - 16, GST_TAG_IMAGE_TYPE_NONE))) {
|
||||
GST_DEBUG_OBJECT (qtdemux, "adding tag size %d", len - 16);
|
||||
gst_tag_list_add (qtdemux->tag_list, GST_TAG_MERGE_REPLACE,
|
||||
tag1, buf, NULL);
|
||||
gst_buffer_unref (buf);
|
||||
tag1, sample, NULL);
|
||||
gst_sample_unref (sample);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -579,7 +579,9 @@ gst_matroska_read_common_parse_attached_file (GstMatroskaReadCommon * common,
|
|||
if (filename && mimetype && data && datalen > 0) {
|
||||
GstTagImageType image_type = GST_TAG_IMAGE_TYPE_NONE;
|
||||
GstBuffer *tagbuffer = NULL;
|
||||
/* GstCaps *caps; */
|
||||
GstSample *tagsample = NULL;
|
||||
GstStructure *info = NULL;
|
||||
GstCaps *caps = NULL;
|
||||
gchar *filename_lc = g_utf8_strdown (filename, -1);
|
||||
|
||||
GST_DEBUG_OBJECT (common, "Creating tag for attachment with "
|
||||
|
@ -605,45 +607,49 @@ gst_matroska_read_common_parse_attached_file (GstMatroskaReadCommon * common,
|
|||
|
||||
/* First try to create an image tag buffer from this */
|
||||
if (image_type != GST_TAG_IMAGE_TYPE_NONE) {
|
||||
tagbuffer =
|
||||
gst_tag_image_data_to_image_buffer (data, datalen, image_type);
|
||||
tagsample =
|
||||
gst_tag_image_data_to_image_sample (data, datalen, image_type);
|
||||
|
||||
if (!tagbuffer)
|
||||
if (!tagsample)
|
||||
image_type = GST_TAG_IMAGE_TYPE_NONE;
|
||||
else
|
||||
else {
|
||||
data = NULL;
|
||||
tagbuffer = gst_buffer_ref (gst_sample_get_buffer (tagsample));
|
||||
caps = gst_caps_ref (gst_sample_get_caps (tagsample));
|
||||
info = gst_structure_copy (gst_sample_get_info (tagsample));
|
||||
gst_sample_unref (tagsample);
|
||||
}
|
||||
}
|
||||
|
||||
/* if this failed create an attachment buffer */
|
||||
if (!tagbuffer) {
|
||||
tagbuffer = gst_buffer_new_wrapped (g_memdup (data, datalen), datalen);
|
||||
|
||||
/* FIXME: We can't attach caps to buffers in 0.11. */
|
||||
/* caps = gst_type_find_helper_for_buffer (NULL, tagbuffer, NULL); */
|
||||
/* if (caps == NULL) */
|
||||
/* caps = gst_caps_new_simple (mimetype, NULL); */
|
||||
/* gst_buffer_set_caps (tagbuffer, caps); */
|
||||
/* gst_caps_unref (caps); */
|
||||
caps = gst_type_find_helper_for_buffer (NULL, tagbuffer, NULL);
|
||||
if (caps == NULL)
|
||||
caps = gst_caps_new_empty_simple (mimetype);
|
||||
}
|
||||
|
||||
/* FIXME: We can't attach caps to buffers in 0.11. */
|
||||
/* Set filename and description on the caps */
|
||||
/* caps = GST_BUFFER_CAPS (tagbuffer); */
|
||||
/* gst_caps_set_simple (caps, "filename", G_TYPE_STRING, filename, NULL); */
|
||||
/* if (description) */
|
||||
/* gst_caps_set_simple (caps, "description", G_TYPE_STRING, description, */
|
||||
/* NULL); */
|
||||
/* Set filename and description in the info */
|
||||
if (info == NULL)
|
||||
info = gst_structure_new_empty ("GstTagImageInfo");
|
||||
|
||||
/* GST_DEBUG_OBJECT (common, */
|
||||
/* "Created attachment buffer with caps: %" GST_PTR_FORMAT, caps); */
|
||||
gst_structure_set (info, "filename", G_TYPE_STRING, filename, NULL);
|
||||
if (description)
|
||||
gst_structure_set (info, "description", G_TYPE_STRING, description, NULL);
|
||||
|
||||
tagsample = gst_sample_new (tagbuffer, caps, NULL, info);
|
||||
|
||||
GST_DEBUG_OBJECT (common,
|
||||
"Created attachment sample: %" GST_PTR_FORMAT, tagsample);
|
||||
|
||||
/* and append to the tag list */
|
||||
if (image_type != GST_TAG_IMAGE_TYPE_NONE)
|
||||
gst_tag_list_add (taglist, GST_TAG_MERGE_APPEND, GST_TAG_IMAGE, tagbuffer,
|
||||
gst_tag_list_add (taglist, GST_TAG_MERGE_APPEND, GST_TAG_IMAGE, tagsample,
|
||||
NULL);
|
||||
else
|
||||
gst_tag_list_add (taglist, GST_TAG_MERGE_APPEND, GST_TAG_ATTACHMENT,
|
||||
tagbuffer, NULL);
|
||||
tagsample, NULL);
|
||||
}
|
||||
|
||||
g_free (filename);
|
||||
|
|
|
@ -231,6 +231,7 @@ static void
|
|||
check_unsync_v24 (const GstTagList * tags, const gchar * file)
|
||||
{
|
||||
const GValue *val;
|
||||
GstSample *sample;
|
||||
GstBuffer *buf;
|
||||
gchar *album = NULL;
|
||||
gchar *title = NULL;
|
||||
|
@ -255,10 +256,12 @@ check_unsync_v24 (const GstTagList * tags, const gchar * file)
|
|||
|
||||
val = gst_tag_list_get_value_index (tags, GST_TAG_IMAGE, 0);
|
||||
fail_unless (val != NULL);
|
||||
fail_unless (GST_VALUE_HOLDS_BUFFER (val));
|
||||
buf = gst_value_get_buffer (val);
|
||||
fail_unless (GST_VALUE_HOLDS_SAMPLE (val));
|
||||
sample = gst_value_get_sample (val);
|
||||
fail_unless (sample != NULL);
|
||||
fail_unless (gst_sample_get_caps (sample) != NULL);
|
||||
buf = gst_sample_get_buffer (sample);
|
||||
fail_unless (buf != NULL);
|
||||
/* FIXME 0.11: image buffer fail_unless (GST_BUFFER_CAPS (buf) != NULL); */
|
||||
data = gst_buffer_map (buf, &size, NULL, GST_MAP_READ);
|
||||
fail_unless_equals_int (size, 38022);
|
||||
/* check for jpeg start/end markers */
|
||||
|
|
Loading…
Reference in a new issue