From 55c3da71c1ffec1ea0cb7820ddc96ff9fda2b136 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 13 Mar 2009 15:59:37 +0100 Subject: [PATCH] rtpbin: don't return FALSE on seek events Silently ignore the seek event instead of returning FALSE. --- gst/rtpmanager/gstrtpsession.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/rtpmanager/gstrtpsession.c b/gst/rtpmanager/gstrtpsession.c index 06d64a454a..e2a6927f8d 100644 --- a/gst/rtpmanager/gstrtpsession.c +++ b/gst/rtpmanager/gstrtpsession.c @@ -1556,6 +1556,7 @@ gst_rtp_session_event_send_rtcp_src (GstPad * pad, GstEvent * event) GST_DEBUG_OBJECT (rtpsession, "received EVENT"); switch (GST_EVENT_TYPE (event)) { + case GST_EVENT_SEEK: case GST_EVENT_LATENCY: gst_event_unref (event); ret = TRUE;