From 539627e049bf58a3454ad9894d24ded25d269ef6 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 9 Oct 2008 14:27:12 +0000 Subject: [PATCH] gst/rtsp/gstrtspsrc.c: Return TRUE instead of FALSE from the event handler when we swallowed the event. Original commit message from CVS: * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event): Return TRUE instead of FALSE from the event handler when we swallowed the event. --- ChangeLog | 6 ++++++ gst/rtsp/gstrtspsrc.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index eeb82a62c5..eef06997d5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-10-09 Wim Taymans + + * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event): + Return TRUE instead of FALSE from the event handler when we swallowed the + event. + 2008-10-08 Wim Taymans * gst/avi/gstavidemux.c: (gst_avi_demux_reset), diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index d7ab6f698f..02f784c0db 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -1391,7 +1391,7 @@ static gboolean gst_rtspsrc_handle_src_event (GstPad * pad, GstEvent * event) { GstRTSPSrc *src; - gboolean res = FALSE; + gboolean res = TRUE; src = GST_RTSPSRC_CAST (gst_pad_get_parent (pad));