splitmuxsrc: sticky events are sent automatically from the pad
authorThiago Santos <thiagoss@osg.samsung.com>
Fri, 19 Jun 2015 21:01:03 +0000 (18:01 -0300)
committerThiago Santos <thiagoss@osg.samsung.com>
Thu, 25 Jun 2015 20:13:43 +0000 (17:13 -0300)
No need to send them explicitly from the element

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

gst/multifile/gstsplitmuxsrc.c

index 3932859..e26c3d1 100644 (file)
@@ -340,23 +340,6 @@ gst_splitmux_part_create (GstSplitMuxSrc * splitmux, char *filename)
 }
 
 static gboolean
-resend_sticky (GstPad * pad, GstEvent ** event, GstPad * target)
-{
-  switch (GST_EVENT_TYPE (*event)) {
-    case GST_EVENT_CAPS:
-      if (!gst_splitmux_check_new_caps (SPLITMUX_SRC_PAD (target), *event))
-        return TRUE;
-      return gst_pad_push_event (target, gst_event_ref (*event));
-    case GST_EVENT_STREAM_START:
-      return gst_pad_push_event (target, gst_event_ref (*event));
-    default:
-      return TRUE;
-  }
-
-  return TRUE;
-}
-
-static gboolean
 gst_splitmux_check_new_caps (SplitMuxSrcPad * splitpad, GstEvent * event)
 {
   GstCaps *curcaps = gst_pad_get_current_caps ((GstPad *) (splitpad));
@@ -473,13 +456,6 @@ gst_splitmux_handle_event (GstSplitMuxSrc * splitmux,
       break;
   }
 
-  /* Make sure to send sticky events - from the part_pad directly */
-  if (splitpad->sent_caps == FALSE || splitpad->sent_stream_start == FALSE) {
-    gst_pad_sticky_events_foreach (GST_PAD_CAST (part_pad),
-        (GstPadStickyEventsForeachFunction) (resend_sticky), splitpad);
-    splitpad->sent_caps = splitpad->sent_stream_start = TRUE;
-  }
-
   gst_pad_push_event ((GstPad *) (splitpad), event);
   return;
 drop_event: