Merge remote-tracking branch 'origin/0.10'

Conflicts:
	gst/rtsp-server/rtsp-session-pool.c
This commit is contained in:
Sebastian Dröge 2012-03-29 15:12:21 +02:00
commit e9ef6f6254

View file

@ -476,8 +476,11 @@ collect_timeout (gchar * sessionid, GstRTSPSession * sess, GstPoolSource * psrc)
{
gint timeout;
GTimeVal now;
gint64 tmp;
g_get_current_time (&now);
tmp = g_source_get_time ((GSource *) psrc);
now.tv_sec = tmp / G_USEC_PER_SEC;
now.tv_usec = tmp % G_USEC_PER_SEC;
timeout = gst_rtsp_session_next_timeout (sess, &now);
GST_INFO ("%p: next timeout: %d", sess, timeout);