diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2013-09-30 11:53:08 +0200 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2013-09-30 11:53:08 +0200 |
commit | 6e7d547be4abc0aa365441b01848c5cf9d824de5 (patch) | |
tree | d9c7c6d876d5c5ec78d70323f28cd55501d0a77c /gst/rtpmanager/rtpjitterbuffer.c | |
parent | 03d520eb69b643b0039a69cd1d4942e9049b8d65 (diff) |
rtpjitterbuffer: reset skew does not reset clock-rate
Don't reset the clock-rate when we reset the skew correction algorithm.
Reset the skew correction algorithm when we change the clock-rate.
Diffstat (limited to 'gst/rtpmanager/rtpjitterbuffer.c')
-rw-r--r-- | gst/rtpmanager/rtpjitterbuffer.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gst/rtpmanager/rtpjitterbuffer.c b/gst/rtpmanager/rtpjitterbuffer.c index 7876f05a5..b7aac1025 100644 --- a/gst/rtpmanager/rtpjitterbuffer.c +++ b/gst/rtpmanager/rtpjitterbuffer.c @@ -182,11 +182,8 @@ rtp_jitter_buffer_set_clock_rate (RTPJitterBuffer * jbuf, guint32 clock_rate) GST_WARNING ("Clock rate changed from %" G_GUINT32_FORMAT " to %" G_GUINT32_FORMAT, jbuf->clock_rate, clock_rate); } - jbuf->base_time = -1; - jbuf->base_rtptime = -1; jbuf->clock_rate = clock_rate; - jbuf->prev_out_time = -1; - jbuf->prev_send_diff = -1; + rtp_jitter_buffer_reset_skew (jbuf); } } @@ -216,7 +213,6 @@ rtp_jitter_buffer_reset_skew (RTPJitterBuffer * jbuf) jbuf->base_time = -1; jbuf->base_rtptime = -1; jbuf->base_extrtp = -1; - jbuf->clock_rate = -1; jbuf->ext_rtptime = -1; jbuf->last_rtptime = -1; jbuf->window_pos = 0; |