icydemux: avoid timestamp field initialisation for tag event
authorKyrylo Polezhaiev <kirushyk@gmail.com>
Tue, 2 Feb 2016 16:58:24 +0000 (18:58 +0200)
committerJan Schmidt <jan@centricular.com>
Sun, 6 May 2018 15:25:25 +0000 (01:25 +1000)
This field is not used and will be removed in 2.0 API.

https://bugzilla.gnome.org/show_bug.cgi?id=761462

gst/icydemux/gsticydemux.c

index 12fdad2..594b147 100644 (file)
@@ -653,7 +653,6 @@ gst_icydemux_send_tag_event (GstICYDemux * icydemux, GstTagList * tags)
   GstEvent *event;
 
   event = gst_event_new_tag (tags);
-  GST_EVENT_TIMESTAMP (event) = 0;
 
   GST_DEBUG_OBJECT (icydemux, "Sending tag event on src pad");
   return gst_pad_push_event (icydemux->srcpad, event);