mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
gst/rtsp/gstrtspsrc.c: Printf format fix.
Original commit message from CVS: * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp): Printf format fix.
This commit is contained in:
parent
4e45e0a269
commit
263e0458f1
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-05-20 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
|
||||||
|
Printf format fix.
|
||||||
|
|
||||||
2007-05-18 Wim Taymans <wim@fluendo.com>
|
2007-05-18 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
|
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
|
||||||
|
|
|
@ -2385,7 +2385,7 @@ gst_rtspsrc_loop_udp (GstRTSPSrc * src)
|
||||||
rtsp_connection_next_timeout (src->connection, &tv_timeout);
|
rtsp_connection_next_timeout (src->connection, &tv_timeout);
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (src, "doing receive with timeout %d seconds",
|
GST_DEBUG_OBJECT (src, "doing receive with timeout %d seconds",
|
||||||
tv_timeout.tv_sec);
|
(gint) tv_timeout.tv_sec);
|
||||||
|
|
||||||
/* we should continue reading the TCP socket because the server might
|
/* we should continue reading the TCP socket because the server might
|
||||||
* send us requests. When the session timeout expires, we need to send a
|
* send us requests. When the session timeout expires, we need to send a
|
||||||
|
|
Loading…
Reference in a new issue