diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-10-30 11:09:10 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-10-31 14:22:39 +0000 |
commit | 5ee51e47a1dc3225a11e197b4688b55c4bbc4c55 (patch) | |
tree | 9074c70202c8d39948eb1cad5f421fcbdc951824 /gst/audiotestsrc | |
parent | 7eb0985282f1949f0c34d267876cd9cfe980e94c (diff) |
ext, gst, gst-libs, tests: update for tag list API changes
Diffstat (limited to 'gst/audiotestsrc')
-rw-r--r-- | gst/audiotestsrc/gstaudiotestsrc.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gst/audiotestsrc/gstaudiotestsrc.c b/gst/audiotestsrc/gstaudiotestsrc.c index ba6f255c8..2d819fd64 100644 --- a/gst/audiotestsrc/gstaudiotestsrc.c +++ b/gst/audiotestsrc/gstaudiotestsrc.c @@ -1113,10 +1113,7 @@ gst_audio_test_src_fill (GstBaseSrc * basesrc, guint64 offset, if (!src->tags_pushed) { GstTagList *taglist; - taglist = gst_tag_list_new (); - - gst_tag_list_add (taglist, GST_TAG_MERGE_APPEND, - GST_TAG_DESCRIPTION, "audiotest wave", NULL); + taglist = gst_tag_list_new (GST_TAG_DESCRIPTION, "audiotest wave", NULL); eclass = GST_ELEMENT_CLASS (parent_class); if (eclass->send_event) |