mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
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:
parent
80414f469a
commit
539627e049
2 changed files with 7 additions and 1 deletions
|
@ -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),
|
||||
|
|
|
@ -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));
|
||||
|
||||
|
|
Loading…
Reference in a new issue