From a877021ab1710b8b14ef3eeb620bacd9f40e3271 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 26 May 2012 23:41:02 +0100 Subject: [PATCH] realmedia: don't use GstStructure API on tag lists --- gst/realmedia/rmutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/realmedia/rmutils.c b/gst/realmedia/rmutils.c index 9373bca4f2..3232ee81e0 100644 --- a/gst/realmedia/rmutils.c +++ b/gst/realmedia/rmutils.c @@ -115,7 +115,7 @@ gst_rm_utils_read_tags (const guint8 * data, guint datalen, g_free (str); } - if (gst_structure_n_fields ((GstStructure *) tags) > 0) + if (gst_tag_list_n_tags (tags) > 0) return tags; gst_tag_list_free (tags);