From d203b1ef5040a180891f0ca5ee00c57d33865300 Mon Sep 17 00:00:00 2001 From: Tuukka Pasanen Date: Mon, 14 Feb 2011 15:21:29 +0200 Subject: [PATCH] taginject: resend tags when they are changed Allow setting new tags on the property while running and send them. Fixes #640249 --- gst/debugutils/gsttaginject.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gst/debugutils/gsttaginject.c b/gst/debugutils/gsttaginject.c index 9197ad58a4..a5e78fe9aa 100644 --- a/gst/debugutils/gsttaginject.c +++ b/gst/debugutils/gsttaginject.c @@ -168,6 +168,9 @@ gst_tag_inject_set_property (GObject * object, guint prop_id, if (!(self->tags = gst_structure_from_string (structure, NULL))) { GST_WARNING ("unparsable taglist = '%s'", structure); } + + /* make sure that tags will be send */ + self->tags_sent = FALSE; g_free (structure); break; }