sdpdemux: fix timeout value

Timeout on udpsrc is in nanoseconds in 1.0
This commit is contained in:
Wim Taymans 2013-04-15 09:01:55 +02:00
parent 2b160f516a
commit 9699a974ca

View file

@ -989,8 +989,8 @@ gst_sdp_demux_stream_configure_udp (GstSDPDemux * demux, GstSDPStream * stream)
/* configure a timeout on the UDP port. When the timeout message is /* configure a timeout on the UDP port. When the timeout message is
* posted, we assume UDP transport is not possible. */ * posted, we assume UDP transport is not possible. */
g_object_set (G_OBJECT (stream->udpsrc[0]), "timeout", demux->udp_timeout, g_object_set (G_OBJECT (stream->udpsrc[0]), "timeout",
NULL); demux->udp_timeout * 1000, NULL);
/* get output pad of the UDP source. */ /* get output pad of the UDP source. */
pad = gst_element_get_static_pad (stream->udpsrc[0], "src"); pad = gst_element_get_static_pad (stream->udpsrc[0], "src");