summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2008-10-09 14:27:12 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-10-09 14:27:12 +0000
commit539627e049bf58a3454ad9894d24ded25d269ef6 (patch)
tree54375f455b7aa9480a6dfe75d544d2157fb795ab
parent80414f469a2576ca968591e99887f8ee0831f8be (diff)
downloadgstreamer-plugins-good-539627e049bf58a3454ad9894d24ded25d269ef6.tar.gz
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.
-rw-r--r--ChangeLog6
-rw-r--r--gst/rtsp/gstrtspsrc.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index eeb82a62c..eef06997d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-10-09 Wim Taymans <wim.taymans@collabora.co.uk>
+
+ * 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 <wim.taymans@collabora.co.uk>
* gst/avi/gstavidemux.c: (gst_avi_demux_reset),
diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c
index d7ab6f698..02f784c0d 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));