rtp: small improvements

This commit is contained in:
Wim Taymans 2013-01-08 16:27:42 +01:00
parent af055d9574
commit 72402cc649

View file

@ -783,10 +783,12 @@ get_current_times (GstRtpSession * rtpsession, GstClockTime * running_time,
gst_object_ref (clock);
GST_OBJECT_UNLOCK (rtpsession);
/* get current clock time and convert to running time */
clock_time = gst_clock_get_time (clock);
rt = clock_time - base_time;
if (rtpsession->priv->use_pipeline_clock) {
ntpns = clock_time - base_time;
ntpns = rt;
} else {
GTimeVal current;
@ -798,9 +800,6 @@ get_current_times (GstRtpSession * rtpsession, GstClockTime * running_time,
/* add constant to convert from 1970 based time to 1900 based time */
ntpns += (2208988800LL * GST_SECOND);
/* get current clock time and convert to running time */
rt = clock_time - base_time;
gst_object_unref (clock);
} else {
GST_OBJECT_UNLOCK (rtpsession);