summaryrefslogtreecommitdiffstats
path: root/gst/rtpmanager/rtpjitterbuffer.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2007-09-28 14:51:58 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-09-28 14:51:58 +0000
commit3668cfd91e87b70b41c3bad832d8486f55b9cd77 (patch)
tree4074335cbff851bf9e746f12a786f1e0ae3c0416 /gst/rtpmanager/rtpjitterbuffer.c
parent859501af277062c7a6eab91fe68ed6ce93277815 (diff)
downloadgst-plugins-bad-3668cfd91e87b70b41c3bad832d8486f55b9cd77.tar.gz
gst-plugins-bad-3668cfd91e87b70b41c3bad832d8486f55b9cd77.tar.bz2
gst-plugins-bad-3668cfd91e87b70b41c3bad832d8486f55b9cd77.zip
gst/rtpmanager/gstrtpbin.c: Fix crasher in dispose.
Original commit message from CVS: * gst/rtpmanager/gstrtpbin.c: (free_client): Fix crasher in dispose. * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew): Handle cases where input buffers have no timestamps so that no clock skew can be calculated, in this case interpollate timestamps based on rtp timestamp and assume a 0 clock skew.
Diffstat (limited to 'gst/rtpmanager/rtpjitterbuffer.c')
-rw-r--r--gst/rtpmanager/rtpjitterbuffer.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/gst/rtpmanager/rtpjitterbuffer.c b/gst/rtpmanager/rtpjitterbuffer.c
index 0f52949e..d0304198 100644
--- a/gst/rtpmanager/rtpjitterbuffer.c
+++ b/gst/rtpmanager/rtpjitterbuffer.c
@@ -199,11 +199,6 @@ calculate_skew (RTPJitterBuffer * jbuf, guint32 rtptime, GstClockTime time)
gint pos, i;
GstClockTime gstrtptime, out_time;
- /* we don't have an arrival timestamp so we can't do skew detection. FIXME, we
- * should still apply a timestamp based on RTP timestamp and base_time */
- if (time == -1)
- return -1;
-
ext_rtptime = gst_rtp_buffer_ext_timestamp (&jbuf->ext_rtptime, rtptime);
gstrtptime =
@@ -217,6 +212,12 @@ calculate_skew (RTPJitterBuffer * jbuf, guint32 rtptime, GstClockTime time)
/* elapsed time at sender */
send_diff = gstrtptime - jbuf->base_rtptime;
+
+ /* we don't have an arrival timestamp so we can't do skew detection. we
+ * should still apply a timestamp based on RTP timestamp and base_time */
+ if (time == -1)
+ goto no_skew;
+
/* elapsed time at receiver, includes the jitter */
recv_diff = time - jbuf->base_time;
@@ -297,6 +298,7 @@ calculate_skew (RTPJitterBuffer * jbuf, guint32 rtptime, GstClockTime time)
pos = 0;
jbuf->window_pos = pos;
+no_skew:
/* the output time is defined as the base timestamp plus the RTP time
* adjusted for the clock skew .*/
out_time = jbuf->base_time + send_diff + jbuf->skew;