From 9b559160cc30c796031d7794caafea008d4b5a8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Tue, 11 Sep 2012 20:30:55 -0400 Subject: [PATCH] spanplc: Don't unref too much, don't forward gap event --- ext/spandsp/gstspanplc.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/ext/spandsp/gstspanplc.c b/ext/spandsp/gstspanplc.c index 4025e4fa7d..73a2465b2d 100644 --- a/ext/spandsp/gstspanplc.c +++ b/ext/spandsp/gstspanplc.c @@ -222,7 +222,6 @@ static gboolean gst_span_plc_event_sink (GstPad * pad, GstObject * parent, GstEvent * event) { GstSpanPlc *plc = GST_SPAN_PLC (parent); - gboolean ret = FALSE; GST_DEBUG_OBJECT (plc, "received event %s", GST_EVENT_TYPE_NAME (event)); @@ -241,7 +240,8 @@ gst_span_plc_event_sink (GstPad * pad, GstObject * parent, GstEvent * event) gst_event_parse_gap (event, ×tamp, &duration); gst_span_plc_send_fillin (plc, timestamp, duration); - break; + gst_event_unref (event); + return TRUE; } case GST_EVENT_FLUSH_STOP: gst_span_plc_flush (plc, TRUE); @@ -249,9 +249,6 @@ gst_span_plc_event_sink (GstPad * pad, GstObject * parent, GstEvent * event) default: break; } - ret = gst_pad_push_event (plc->srcpad, event); - gst_object_unref (plc); - - return ret; + return gst_pad_push_event (plc->srcpad, event); }