gst/rtsp/gstrtspsrc.c: Return TRUE instead of FALSE from the event handler when we...
authorWim Taymans <wim.taymans@gmail.com>
Thu, 9 Oct 2008 14:27:12 +0000 (14:27 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Thu, 9 Oct 2008 14:27:12 +0000 (14:27 +0000)
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
gst/rtsp/gstrtspsrc.c

index eeb82a6..eef0699 100644 (file)
--- 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),
index d7ab6f6..02f784c 100644 (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));