Original commit message from CVS:
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_mcast):
Set udpsrc for receiving data from multicast groups to PAUSED instead of
leaving them in READY. Fixes #537832.
+2008-06-12 Wim Taymans <wim.taymans@collabora.co.uk>
+
+ * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_mcast):
+ Set udpsrc for receiving data from multicast groups to PAUSED instead of
+ leaving them in READY. Fixes #537832.
+
2008-06-12 Stefan Kost <ensonic@users.sf.net>
* gst/avi/gstavimux.c:
gst_object_sink (stream->udpsrc[0]);
/* change state */
- gst_element_set_state (stream->udpsrc[0], GST_STATE_READY);
+ gst_element_set_state (stream->udpsrc[0], GST_STATE_PAUSED);
}
/* creating another UDP source */
gst_object_ref (stream->udpsrc[1]);
gst_object_sink (stream->udpsrc[1]);
- gst_element_set_state (stream->udpsrc[1], GST_STATE_READY);
+ gst_element_set_state (stream->udpsrc[1], GST_STATE_PAUSED);
}
return TRUE;