summaryrefslogtreecommitdiff
path: root/ext/taglib
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2011-02-24 13:03:44 +0100
committerWim Taymans <wim.taymans@collabora.co.uk>2011-02-28 11:58:48 +0100
commit59c825a938a10bc7dcba61fea0f9571c3d037b57 (patch)
treee58acff44ee03a0bb16e02538478119f21fe11f7 /ext/taglib
parentd87c27fd2cceb2164159fb32f2e348177b268dbe (diff)
downloadgstreamer-plugins-good-59c825a938a10bc7dcba61fea0f9571c3d037b57.tar.gz
id3: use boxed type instead of miniobject
Diffstat (limited to 'ext/taglib')
-rw-r--r--ext/taglib/gstid3v2mux.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/taglib/gstid3v2mux.cc b/ext/taglib/gstid3v2mux.cc
index 646804866..cc307aa0f 100644
--- a/ext/taglib/gstid3v2mux.cc
+++ b/ext/taglib/gstid3v2mux.cc
@@ -368,7 +368,7 @@ add_id3v2frame_tag (ID3v2::Tag * id3v2tag, const GstTagList * list,
GstBuffer *buf;
val = gst_tag_list_get_value_index (list, tag, i);
- buf = (GstBuffer *) gst_value_get_mini_object (val);
+ buf = (GstBuffer *) g_value_get_boxed (val);
if (buf && GST_BUFFER_CAPS (buf)) {
GstStructure *s;
@@ -403,7 +403,7 @@ add_image_tag (ID3v2::Tag * id3v2tag, const GstTagList * list,
GST_DEBUG ("image %u/%u", n + 1, num_tags);
val = gst_tag_list_get_value_index (list, tag, n);
- image = (GstBuffer *) gst_value_get_mini_object (val);
+ image = (GstBuffer *) g_value_get_boxed (val);
if (GST_IS_BUFFER (image) && GST_BUFFER_SIZE (image) > 0 &&
GST_BUFFER_CAPS (image) != NULL &&