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.
This commit is contained in:
Wim Taymans 2008-10-09 14:27:12 +00:00
parent 80414f469a
commit 539627e049
2 changed files with 7 additions and 1 deletions

View file

@ -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),

View file

@ -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));