summaryrefslogtreecommitdiffstats
path: root/ext/shout2
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2005-11-22 12:38:33 +0000
committerAndy Wingo <wingo@pobox.com>2005-11-22 12:38:33 +0000
commit8d223d75d07e2013e6d51f6b3714672bee12e7ad (patch)
tree3f12128c43d8e58dacd4a33f9fcd6ff892c8e284 /ext/shout2
parentcb825feb2c08dd947a6f68fabe68b728276540a3 (diff)
Update for gst_tag_setter API changes.
Original commit message from CVS: 2005-11-22 Andy Wingo <wingo@pobox.com> * Update for gst_tag_setter API changes.
Diffstat (limited to 'ext/shout2')
-rw-r--r--ext/shout2/gstshout2.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/shout2/gstshout2.c b/ext/shout2/gstshout2.c
index 07790218..d488b9ac 100644
--- a/ext/shout2/gstshout2.c
+++ b/ext/shout2/gstshout2.c
@@ -291,13 +291,13 @@ gst_shout2send_set_metadata (GstShout2send * shout2send)
shout_metadata_t *pmetadata;
g_return_if_fail (shout2send != NULL);
- user_tags = gst_tag_setter_get_list (GST_TAG_SETTER (shout2send));
+ user_tags = gst_tag_setter_get_tag_list (GST_TAG_SETTER (shout2send));
if ((shout2send->tags == NULL) && (user_tags == NULL)) {
return;
}
copy = gst_tag_list_merge (user_tags, shout2send->tags,
- gst_tag_setter_get_merge_mode (GST_TAG_SETTER (shout2send)));
+ gst_tag_setter_get_tag_merge_mode (GST_TAG_SETTER (shout2send)));
/* lets get the artist and song tags */
tempmetadata = NULL;
@@ -334,7 +334,8 @@ gst_shout2send_event (GstBaseSink * sink, GstEvent * event)
gst_event_parse_tag (event, &list);
gst_tag_list_insert (shout2send->tags,
- list, gst_tag_setter_get_merge_mode (GST_TAG_SETTER (shout2send)));
+ list,
+ gst_tag_setter_get_tag_merge_mode (GST_TAG_SETTER (shout2send)));
/* lets get the artist and song tags */
tempmetadata = NULL;
gst_tag_list_foreach ((GstTagList *) shout2send->tags,