rtsp: make timeout usec more accurate

Adjust the returned usec from the elapsed time so it represents the remaining
timeout.
This commit is contained in:
Wim Taymans 2010-03-15 11:36:22 +01:00
parent 412e5f5871
commit 2221e404de

View file

@ -2481,6 +2481,10 @@ gst_rtsp_connection_next_timeout (GstRTSPConnection * conn, GTimeVal * timeout)
usec = 0;
} else {
sec = conn->timeout - elapsed;
if (usec <= G_USEC_PER_SEC)
usec = G_USEC_PER_SEC - usec;
else
usec = 0;
}
timeout->tv_sec = sec;