2 * Copyright (C) <2007> Wim Taymans <wim.taymans@gmail.com>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
22 #include <gst/rtp/gstrtpbuffer.h>
23 #include <gst/rtp/gstrtcpbuffer.h>
25 #include "rtpjitterbuffer.h"
27 GST_DEBUG_CATEGORY_STATIC (rtp_jitter_buffer_debug);
28 #define GST_CAT_DEFAULT rtp_jitter_buffer_debug
30 #define MAX_WINDOW RTP_JITTER_BUFFER_MAX_WINDOW
31 #define MAX_TIME (2 * GST_SECOND)
33 /* signals and args */
44 /* GObject vmethods */
45 static void rtp_jitter_buffer_finalize (GObject * object);
48 rtp_jitter_buffer_mode_get_type (void)
50 static GType jitter_buffer_mode_type = 0;
51 static const GEnumValue jitter_buffer_modes[] = {
52 {RTP_JITTER_BUFFER_MODE_NONE, "Only use RTP timestamps", "none"},
53 {RTP_JITTER_BUFFER_MODE_SLAVE, "Slave receiver to sender clock", "slave"},
54 {RTP_JITTER_BUFFER_MODE_BUFFER, "Do low/high watermark buffering",
59 if (!jitter_buffer_mode_type) {
60 jitter_buffer_mode_type =
61 g_enum_register_static ("RTPJitterBufferMode", jitter_buffer_modes);
63 return jitter_buffer_mode_type;
66 /* static guint rtp_jitter_buffer_signals[LAST_SIGNAL] = { 0 }; */
68 G_DEFINE_TYPE (RTPJitterBuffer, rtp_jitter_buffer, G_TYPE_OBJECT);
71 rtp_jitter_buffer_class_init (RTPJitterBufferClass * klass)
73 GObjectClass *gobject_class;
75 gobject_class = (GObjectClass *) klass;
77 gobject_class->finalize = rtp_jitter_buffer_finalize;
79 GST_DEBUG_CATEGORY_INIT (rtp_jitter_buffer_debug, "rtpjitterbuffer", 0,
84 rtp_jitter_buffer_init (RTPJitterBuffer * jbuf)
86 jbuf->packets = g_queue_new ();
87 jbuf->mode = RTP_JITTER_BUFFER_MODE_SLAVE;
89 rtp_jitter_buffer_reset_skew (jbuf);
93 rtp_jitter_buffer_finalize (GObject * object)
95 RTPJitterBuffer *jbuf;
97 jbuf = RTP_JITTER_BUFFER_CAST (object);
99 rtp_jitter_buffer_flush (jbuf);
100 g_queue_free (jbuf->packets);
102 G_OBJECT_CLASS (rtp_jitter_buffer_parent_class)->finalize (object);
106 * rtp_jitter_buffer_new:
108 * Create an #RTPJitterBuffer.
110 * Returns: a new #RTPJitterBuffer. Use g_object_unref() after usage.
113 rtp_jitter_buffer_new (void)
115 RTPJitterBuffer *jbuf;
117 jbuf = g_object_new (RTP_TYPE_JITTER_BUFFER, NULL);
123 * rtp_jitter_buffer_get_mode:
124 * @jbuf: an #RTPJitterBuffer
126 * Get the current jitterbuffer mode.
128 * Returns: the current jitterbuffer mode.
131 rtp_jitter_buffer_get_mode (RTPJitterBuffer * jbuf)
137 * rtp_jitter_buffer_set_mode:
138 * @jbuf: an #RTPJitterBuffer
139 * @mode: a #RTPJitterBufferMode
141 * Set the buffering and clock slaving algorithm used in the @jbuf.
144 rtp_jitter_buffer_set_mode (RTPJitterBuffer * jbuf, RTPJitterBufferMode mode)
150 rtp_jitter_buffer_get_delay (RTPJitterBuffer * jbuf)
156 rtp_jitter_buffer_set_delay (RTPJitterBuffer * jbuf, GstClockTime delay)
159 jbuf->low_level = (delay * 15) / 100;
160 /* the high level is at 90% in order to release packets before we fill up the
161 * buffer up to the latency */
162 jbuf->high_level = (delay * 90) / 100;
164 GST_DEBUG ("delay %" GST_TIME_FORMAT ", min %" GST_TIME_FORMAT ", max %"
165 GST_TIME_FORMAT, GST_TIME_ARGS (jbuf->delay),
166 GST_TIME_ARGS (jbuf->low_level), GST_TIME_ARGS (jbuf->high_level));
171 * rtp_jitter_buffer_reset_skew:
172 * @jbuf: an #RTPJitterBuffer
174 * Reset the skew calculations in @jbuf.
177 rtp_jitter_buffer_reset_skew (RTPJitterBuffer * jbuf)
179 jbuf->base_time = -1;
180 jbuf->base_rtptime = -1;
181 jbuf->base_extrtp = -1;
182 jbuf->clock_rate = -1;
183 jbuf->ext_rtptime = -1;
184 jbuf->last_rtptime = -1;
185 jbuf->window_pos = 0;
186 jbuf->window_filling = TRUE;
187 jbuf->window_min = 0;
189 jbuf->prev_send_diff = -1;
190 jbuf->prev_out_time = -1;
191 GST_DEBUG ("reset skew correction");
195 rtp_jitter_buffer_resync (RTPJitterBuffer * jbuf, GstClockTime time,
196 GstClockTime gstrtptime, guint64 ext_rtptime, gboolean reset_skew)
198 jbuf->base_time = time;
199 jbuf->base_rtptime = gstrtptime;
200 jbuf->base_extrtp = ext_rtptime;
201 jbuf->prev_out_time = -1;
202 jbuf->prev_send_diff = -1;
204 jbuf->window_filling = TRUE;
205 jbuf->window_pos = 0;
206 jbuf->window_min = 0;
207 jbuf->window_size = 0;
213 get_buffer_level (RTPJitterBuffer * jbuf)
215 GstBuffer *high_buf = NULL, *low_buf = NULL;
219 /* first first buffer with timestamp */
220 find = g_queue_peek_head_link (jbuf->packets);
222 high_buf = find->data;
223 if (GST_BUFFER_TIMESTAMP (high_buf) != -1)
227 find = g_list_next (find);
230 find = g_queue_peek_tail_link (jbuf->packets);
232 low_buf = find->data;
233 if (GST_BUFFER_TIMESTAMP (low_buf) != -1)
237 find = g_list_previous (find);
240 if (!high_buf || !low_buf || high_buf == low_buf) {
243 guint64 high_ts, low_ts;
245 high_ts = GST_BUFFER_TIMESTAMP (high_buf);
246 low_ts = GST_BUFFER_TIMESTAMP (low_buf);
248 if (high_ts > low_ts)
249 level = high_ts - low_ts;
253 GST_LOG_OBJECT (jbuf,
254 "low %" GST_TIME_FORMAT " high %" GST_TIME_FORMAT " level %"
255 G_GUINT64_FORMAT, GST_TIME_ARGS (low_ts), GST_TIME_ARGS (high_ts),
262 update_buffer_level (RTPJitterBuffer * jbuf, gint * percent)
264 gboolean post = FALSE;
267 level = get_buffer_level (jbuf);
268 GST_DEBUG ("buffer level %" GST_TIME_FORMAT, GST_TIME_ARGS (level));
270 if (jbuf->buffering) {
272 if (level > jbuf->high_level) {
273 GST_DEBUG ("buffering finished");
274 jbuf->buffering = FALSE;
277 if (level < jbuf->low_level) {
278 GST_DEBUG ("buffering started");
279 jbuf->buffering = TRUE;
286 if (jbuf->buffering && (jbuf->high_level != 0)) {
287 perc = (level * 100 / jbuf->high_level);
288 perc = MIN (perc, 100);
296 GST_DEBUG ("buffering %d", perc);
300 /* For the clock skew we use a windowed low point averaging algorithm as can be
301 * found in Fober, Orlarey and Letz, 2005, "Real Time Clock Skew Estimation
302 * over Network Delays":
303 * http://www.grame.fr/Ressources/pub/TR-050601.pdf
304 * http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.102.1546
306 * The idea is that the jitter is composed of:
310 * N : a constant network delay.
311 * n : random added noise. The noise is concentrated around 0
313 * In the receiver we can track the elapsed time at the sender with:
315 * send_diff(i) = (Tsi - Ts0);
317 * Tsi : The time at the sender at packet i
318 * Ts0 : The time at the sender at the first packet
320 * This is the difference between the RTP timestamp in the first received packet
321 * and the current packet.
323 * At the receiver we have to deal with the jitter introduced by the network.
325 * recv_diff(i) = (Tri - Tr0)
327 * Tri : The time at the receiver at packet i
328 * Tr0 : The time at the receiver at the first packet
330 * Both of these values contain a jitter Ji, a jitter for packet i, so we can
333 * recv_diff(i) = (Cri + D + ni) - (Cr0 + D + n0))
335 * Cri : The time of the clock at the receiver for packet i
336 * D + ni : The jitter when receiving packet i
338 * We see that the network delay is irrelevant here as we can elliminate D:
340 * recv_diff(i) = (Cri + ni) - (Cr0 + n0))
342 * The drift is now expressed as:
344 * Drift(i) = recv_diff(i) - send_diff(i);
346 * We now keep the W latest values of Drift and find the minimum (this is the
347 * one with the lowest network jitter and thus the one which is least affected
348 * by it). We average this lowest value to smooth out the resulting network skew.
350 * Both the window and the weighting used for averaging influence the accuracy
351 * of the drift estimation. Finding the correct parameters turns out to be a
352 * compromise between accuracy and inertia.
354 * We use a 2 second window or up to 512 data points, which is statistically big
355 * enough to catch spikes (FIXME, detect spikes).
356 * We also use a rather large weighting factor (125) to smoothly adapt. During
357 * startup, when filling the window, we use a parabolic weighting factor, the
358 * more the window is filled, the faster we move to the detected possible skew.
360 * Returns: @time adjusted with the clock skew.
363 calculate_skew (RTPJitterBuffer * jbuf, guint32 rtptime, GstClockTime time,
367 guint64 send_diff, recv_diff;
371 GstClockTime gstrtptime, out_time;
374 ext_rtptime = gst_rtp_buffer_ext_timestamp (&jbuf->ext_rtptime, rtptime);
376 gstrtptime = gst_util_uint64_scale_int (ext_rtptime, GST_SECOND, clock_rate);
378 /* keep track of the last extended rtptime */
379 jbuf->last_rtptime = ext_rtptime;
381 if (jbuf->clock_rate != clock_rate) {
382 if (jbuf->clock_rate == -1) {
383 GST_DEBUG ("Clock rate changed from %" G_GUINT32_FORMAT " to %"
384 G_GUINT32_FORMAT, jbuf->clock_rate, clock_rate);
386 GST_WARNING ("Clock rate changed from %" G_GUINT32_FORMAT " to %"
387 G_GUINT32_FORMAT, jbuf->clock_rate, clock_rate);
389 jbuf->base_time = -1;
390 jbuf->base_rtptime = -1;
391 jbuf->clock_rate = clock_rate;
392 jbuf->prev_out_time = -1;
393 jbuf->prev_send_diff = -1;
396 /* first time, lock on to time and gstrtptime */
397 if (G_UNLIKELY (jbuf->base_time == -1)) {
398 jbuf->base_time = time;
399 jbuf->prev_out_time = -1;
400 GST_DEBUG ("Taking new base time %" GST_TIME_FORMAT, GST_TIME_ARGS (time));
402 if (G_UNLIKELY (jbuf->base_rtptime == -1)) {
403 jbuf->base_rtptime = gstrtptime;
404 jbuf->base_extrtp = ext_rtptime;
405 jbuf->prev_send_diff = -1;
406 GST_DEBUG ("Taking new base rtptime %" GST_TIME_FORMAT,
407 GST_TIME_ARGS (gstrtptime));
410 if (G_LIKELY (gstrtptime >= jbuf->base_rtptime))
411 send_diff = gstrtptime - jbuf->base_rtptime;
412 else if (time != -1) {
413 /* elapsed time at sender, timestamps can go backwards and thus be smaller
414 * than our base time, take a new base time in that case. */
415 GST_WARNING ("backward timestamps at server, taking new base time");
416 rtp_jitter_buffer_resync (jbuf, time, gstrtptime, ext_rtptime, FALSE);
419 GST_WARNING ("backward timestamps at server but no timestamps");
421 /* at least try to get a new timestamp.. */
422 jbuf->base_time = -1;
425 GST_DEBUG ("extrtp %" G_GUINT64_FORMAT ", gstrtp %" GST_TIME_FORMAT ", base %"
426 GST_TIME_FORMAT ", send_diff %" GST_TIME_FORMAT, ext_rtptime,
427 GST_TIME_ARGS (gstrtptime), GST_TIME_ARGS (jbuf->base_rtptime),
428 GST_TIME_ARGS (send_diff));
430 /* we don't have an arrival timestamp so we can't do skew detection. we
431 * should still apply a timestamp based on RTP timestamp and base_time */
432 if (time == -1 || jbuf->base_time == -1)
435 /* elapsed time at receiver, includes the jitter */
436 recv_diff = time - jbuf->base_time;
438 /* measure the diff */
439 delta = ((gint64) recv_diff) - ((gint64) send_diff);
441 /* measure the slope, this gives a rought estimate between the sender speed
442 * and the receiver speed. This should be approximately 8, higher values
443 * indicate a burst (especially when the connection starts) */
445 slope = (send_diff * 8) / recv_diff;
449 GST_DEBUG ("time %" GST_TIME_FORMAT ", base %" GST_TIME_FORMAT ", recv_diff %"
450 GST_TIME_FORMAT ", slope %" G_GUINT64_FORMAT, GST_TIME_ARGS (time),
451 GST_TIME_ARGS (jbuf->base_time), GST_TIME_ARGS (recv_diff), slope);
453 /* if the difference between the sender timeline and the receiver timeline
454 * changed too quickly we have to resync because the server likely restarted
456 if (ABS (delta - jbuf->skew) > GST_SECOND) {
457 GST_WARNING ("delta - skew: %" GST_TIME_FORMAT " too big, reset skew",
458 GST_TIME_ARGS (delta - jbuf->skew));
459 rtp_jitter_buffer_resync (jbuf, time, gstrtptime, ext_rtptime, TRUE);
464 pos = jbuf->window_pos;
466 if (G_UNLIKELY (jbuf->window_filling)) {
467 /* we are filling the window */
468 GST_DEBUG ("filling %d, delta %" G_GINT64_FORMAT, pos, delta);
469 jbuf->window[pos++] = delta;
470 /* calc the min delta we observed */
471 if (G_UNLIKELY (pos == 1 || delta < jbuf->window_min))
472 jbuf->window_min = delta;
474 if (G_UNLIKELY (send_diff >= MAX_TIME || pos >= MAX_WINDOW)) {
475 jbuf->window_size = pos;
478 GST_DEBUG ("min %" G_GINT64_FORMAT, jbuf->window_min);
480 /* the skew is now the min */
481 jbuf->skew = jbuf->window_min;
482 jbuf->window_filling = FALSE;
484 gint perc_time, perc_window, perc;
486 /* figure out how much we filled the window, this depends on the amount of
487 * time we have or the max number of points we keep. */
488 perc_time = send_diff * 100 / MAX_TIME;
489 perc_window = pos * 100 / MAX_WINDOW;
490 perc = MAX (perc_time, perc_window);
492 /* make a parabolic function, the closer we get to the MAX, the more value
493 * we give to the scaling factor of the new value */
496 /* quickly go to the min value when we are filling up, slowly when we are
497 * just starting because we're not sure it's a good value yet. */
499 (perc * jbuf->window_min + ((10000 - perc) * jbuf->skew)) / 10000;
500 jbuf->window_size = pos + 1;
503 /* pick old value and store new value. We keep the previous value in order
504 * to quickly check if the min of the window changed */
505 old = jbuf->window[pos];
506 jbuf->window[pos++] = delta;
508 if (G_UNLIKELY (delta <= jbuf->window_min)) {
509 /* if the new value we inserted is smaller or equal to the current min,
510 * it becomes the new min */
511 jbuf->window_min = delta;
512 } else if (G_UNLIKELY (old == jbuf->window_min)) {
513 gint64 min = G_MAXINT64;
515 /* if we removed the old min, we have to find a new min */
516 for (i = 0; i < jbuf->window_size; i++) {
517 /* we found another value equal to the old min, we can stop searching now */
518 if (jbuf->window[i] == old) {
522 if (jbuf->window[i] < min)
523 min = jbuf->window[i];
525 jbuf->window_min = min;
527 /* average the min values */
528 jbuf->skew = (jbuf->window_min + (124 * jbuf->skew)) / 125;
529 GST_DEBUG ("delta %" G_GINT64_FORMAT ", new min: %" G_GINT64_FORMAT,
530 delta, jbuf->window_min);
532 /* wrap around in the window */
533 if (G_UNLIKELY (pos >= jbuf->window_size))
535 jbuf->window_pos = pos;
538 /* the output time is defined as the base timestamp plus the RTP time
539 * adjusted for the clock skew .*/
540 if (jbuf->base_time != -1) {
541 out_time = jbuf->base_time + send_diff;
542 /* skew can be negative and we don't want to make invalid timestamps */
543 if (jbuf->skew < 0 && out_time < -jbuf->skew) {
546 out_time += jbuf->skew;
548 /* check if timestamps are not going backwards, we can only check this if we
549 * have a previous out time and a previous send_diff */
550 if (G_LIKELY (jbuf->prev_out_time != -1 && jbuf->prev_send_diff != -1)) {
551 /* now check for backwards timestamps */
553 /* if the server timestamps went up and the out_time backwards */
554 (send_diff > jbuf->prev_send_diff
555 && out_time < jbuf->prev_out_time) ||
556 /* if the server timestamps went backwards and the out_time forwards */
557 (send_diff < jbuf->prev_send_diff
558 && out_time > jbuf->prev_out_time) ||
559 /* if the server timestamps did not change */
560 send_diff == jbuf->prev_send_diff)) {
561 GST_DEBUG ("backwards timestamps, using previous time");
562 out_time = jbuf->prev_out_time;
565 if (time != -1 && out_time + jbuf->delay < time) {
566 /* if we are going to produce a timestamp that is later than the input
567 * timestamp, we need to reset the jitterbuffer. Likely the server paused
569 GST_DEBUG ("out %" GST_TIME_FORMAT " + %" G_GUINT64_FORMAT " < time %"
570 GST_TIME_FORMAT ", reset jitterbuffer", GST_TIME_ARGS (out_time),
571 jbuf->delay, GST_TIME_ARGS (time));
572 rtp_jitter_buffer_resync (jbuf, time, gstrtptime, ext_rtptime, TRUE);
579 jbuf->prev_out_time = out_time;
580 jbuf->prev_send_diff = send_diff;
582 GST_DEBUG ("skew %" G_GINT64_FORMAT ", out %" GST_TIME_FORMAT,
583 jbuf->skew, GST_TIME_ARGS (out_time));
589 * rtp_jitter_buffer_insert:
590 * @jbuf: an #RTPJitterBuffer
592 * @time: a running_time when this buffer was received in nanoseconds
593 * @clock_rate: the clock-rate of the payload of @buf
594 * @max_delay: the maximum lateness of @buf
595 * @tail: TRUE when the tail element changed.
597 * Inserts @buf into the packet queue of @jbuf. The sequence number of the
598 * packet will be used to sort the packets. This function takes ownerhip of
599 * @buf when the function returns %TRUE.
600 * @buf should have writable metadata when calling this function.
602 * Returns: %FALSE if a packet with the same number already existed.
605 rtp_jitter_buffer_insert (RTPJitterBuffer * jbuf, GstBuffer * buf,
606 GstClockTime time, guint32 clock_rate, gboolean * tail, gint * percent)
613 g_return_val_if_fail (jbuf != NULL, FALSE);
614 g_return_val_if_fail (buf != NULL, FALSE);
616 gst_rtp_buffer_map (buf, GST_MAP_READ, &rtp);
618 seqnum = gst_rtp_buffer_get_seq (&rtp);
620 /* loop the list to skip strictly smaller seqnum buffers */
621 for (list = jbuf->packets->head; list; list = g_list_next (list)) {
626 gst_rtp_buffer_map (GST_BUFFER_CAST (list->data), GST_MAP_READ, &rtpb);
627 qseq = gst_rtp_buffer_get_seq (&rtpb);
628 gst_rtp_buffer_unmap (&rtpb);
630 /* compare the new seqnum to the one in the buffer */
631 gap = gst_rtp_buffer_compare_seqnum (seqnum, qseq);
633 /* we hit a packet with the same seqnum, notify a duplicate */
634 if (G_UNLIKELY (gap == 0))
637 /* seqnum > qseq, we can stop looking */
638 if (G_LIKELY (gap < 0))
642 rtptime = gst_rtp_buffer_get_timestamp (&rtp);
643 /* rtp time jumps are checked for during skew calculation, but bypassed
644 * in other mode, so mind those here and reset jb if needed.
645 * Only reset if valid input time, which is likely for UDP input
646 * where we expect this might happen due to async thread effects
647 * (in seek and state change cycles), but not so much for TCP input */
648 if (GST_CLOCK_TIME_IS_VALID (time) &&
649 jbuf->mode != RTP_JITTER_BUFFER_MODE_SLAVE &&
650 jbuf->base_time != -1 && jbuf->last_rtptime != -1) {
651 GstClockTime ext_rtptime = jbuf->ext_rtptime;
653 ext_rtptime = gst_rtp_buffer_ext_timestamp (&ext_rtptime, rtptime);
654 if (ext_rtptime > jbuf->last_rtptime + 3 * clock_rate ||
655 ext_rtptime + 3 * clock_rate < jbuf->last_rtptime) {
656 /* reset even if we don't have valid incoming time;
657 * still better than producing possibly very bogus output timestamp */
658 GST_WARNING ("rtp delta too big, reset skew");
659 rtp_jitter_buffer_reset_skew (jbuf);
663 switch (jbuf->mode) {
664 case RTP_JITTER_BUFFER_MODE_NONE:
665 case RTP_JITTER_BUFFER_MODE_BUFFER:
666 /* send 0 as the first timestamp and -1 for the other ones. This will
667 * interpollate them from the RTP timestamps with a 0 origin. In buffering
668 * mode we will adjust the outgoing timestamps according to the amount of
669 * time we spent buffering. */
670 if (jbuf->base_time == -1)
675 case RTP_JITTER_BUFFER_MODE_SLAVE:
679 /* do skew calculation by measuring the difference between rtptime and the
680 * receive time, this function will retimestamp @buf with the skew corrected
682 time = calculate_skew (jbuf, rtptime, time, clock_rate);
683 GST_BUFFER_TIMESTAMP (buf) = time;
685 /* It's more likely that the packet was inserted in the front of the buffer */
687 g_queue_insert_before (jbuf->packets, list, buf);
689 g_queue_push_tail (jbuf->packets, buf);
691 /* buffering mode, update buffer stats */
692 if (jbuf->mode == RTP_JITTER_BUFFER_MODE_BUFFER)
693 update_buffer_level (jbuf, percent);
697 /* tail was changed when we did not find a previous packet, we set the return
698 * flag when requested. */
700 *tail = (list == NULL);
702 gst_rtp_buffer_unmap (&rtp);
709 gst_rtp_buffer_unmap (&rtp);
710 GST_WARNING ("duplicate packet %d found", (gint) seqnum);
716 * rtp_jitter_buffer_pop:
717 * @jbuf: an #RTPJitterBuffer
718 * @percent: the buffering percent
720 * Pops the oldest buffer from the packet queue of @jbuf. The popped buffer will
721 * have its timestamp adjusted with the incomming running_time and the detected
724 * Returns: a #GstBuffer or %NULL when there was no packet in the queue.
727 rtp_jitter_buffer_pop (RTPJitterBuffer * jbuf, gint * percent)
731 g_return_val_if_fail (jbuf != NULL, NULL);
733 buf = g_queue_pop_tail (jbuf->packets);
735 /* buffering mode, update buffer stats */
736 if (jbuf->mode == RTP_JITTER_BUFFER_MODE_BUFFER)
737 update_buffer_level (jbuf, percent);
745 * rtp_jitter_buffer_peek:
746 * @jbuf: an #RTPJitterBuffer
748 * Peek the oldest buffer from the packet queue of @jbuf. Register a callback
749 * with rtp_jitter_buffer_set_tail_changed() to be notified when an older packet
750 * was inserted in the queue.
752 * Returns: a #GstBuffer or %NULL when there was no packet in the queue.
755 rtp_jitter_buffer_peek (RTPJitterBuffer * jbuf)
759 g_return_val_if_fail (jbuf != NULL, NULL);
761 buf = g_queue_peek_tail (jbuf->packets);
767 * rtp_jitter_buffer_flush:
768 * @jbuf: an #RTPJitterBuffer
770 * Flush all packets from the jitterbuffer.
773 rtp_jitter_buffer_flush (RTPJitterBuffer * jbuf)
777 g_return_if_fail (jbuf != NULL);
779 while ((buffer = g_queue_pop_head (jbuf->packets)))
780 gst_buffer_unref (buffer);
784 * rtp_jitter_buffer_is_buffering:
785 * @jbuf: an #RTPJitterBuffer
787 * Check if @jbuf is buffering currently. Users of the jitterbuffer should not
788 * pop packets while in buffering mode.
790 * Returns: the buffering state of @jbuf
793 rtp_jitter_buffer_is_buffering (RTPJitterBuffer * jbuf)
795 return jbuf->buffering;
799 * rtp_jitter_buffer_set_buffering:
800 * @jbuf: an #RTPJitterBuffer
801 * @buffering: the new buffering state
803 * Forces @jbuf to go into the buffering state.
806 rtp_jitter_buffer_set_buffering (RTPJitterBuffer * jbuf, gboolean buffering)
808 jbuf->buffering = buffering;
812 * rtp_jitter_buffer_get_percent:
813 * @jbuf: an #RTPJitterBuffer
815 * Get the buffering percent of the jitterbuffer.
817 * Returns: the buffering percent
820 rtp_jitter_buffer_get_percent (RTPJitterBuffer * jbuf)
825 if (G_UNLIKELY (jbuf->high_level == 0))
828 level = get_buffer_level (jbuf);
829 percent = (level * 100 / jbuf->high_level);
830 percent = MIN (percent, 100);
836 * rtp_jitter_buffer_num_packets:
837 * @jbuf: an #RTPJitterBuffer
839 * Get the number of packets currently in "jbuf.
841 * Returns: The number of packets in @jbuf.
844 rtp_jitter_buffer_num_packets (RTPJitterBuffer * jbuf)
846 g_return_val_if_fail (jbuf != NULL, 0);
848 return jbuf->packets->length;
852 * rtp_jitter_buffer_get_ts_diff:
853 * @jbuf: an #RTPJitterBuffer
855 * Get the difference between the timestamps of first and last packet in the
858 * Returns: The difference expressed in the timestamp units of the packets.
861 rtp_jitter_buffer_get_ts_diff (RTPJitterBuffer * jbuf)
863 guint64 high_ts, low_ts;
864 GstBuffer *high_buf, *low_buf;
868 g_return_val_if_fail (jbuf != NULL, 0);
870 high_buf = g_queue_peek_head (jbuf->packets);
871 low_buf = g_queue_peek_tail (jbuf->packets);
873 if (!high_buf || !low_buf || high_buf == low_buf)
876 gst_rtp_buffer_map (high_buf, GST_MAP_READ, &rtp);
877 high_ts = gst_rtp_buffer_get_timestamp (&rtp);
878 gst_rtp_buffer_unmap (&rtp);
879 gst_rtp_buffer_map (low_buf, GST_MAP_READ, &rtp);
880 low_ts = gst_rtp_buffer_get_timestamp (&rtp);
881 gst_rtp_buffer_unmap (&rtp);
883 /* it needs to work if ts wraps */
884 if (high_ts >= low_ts) {
885 result = (guint32) (high_ts - low_ts);
887 result = (guint32) (high_ts + G_MAXUINT32 + 1 - low_ts);
893 * rtp_jitter_buffer_get_sync:
894 * @jbuf: an #RTPJitterBuffer
895 * @rtptime: result RTP time
896 * @timestamp: result GStreamer timestamp
897 * @clock_rate: clock-rate of @rtptime
898 * @last_rtptime: last seen rtptime.
900 * Calculates the relation between the RTP timestamp and the GStreamer timestamp
901 * used for constructing timestamps.
903 * For extended RTP timestamp @rtptime with a clock-rate of @clock_rate,
904 * the GStreamer timestamp is currently @timestamp.
906 * The last seen extended RTP timestamp with clock-rate @clock-rate is returned in
910 rtp_jitter_buffer_get_sync (RTPJitterBuffer * jbuf, guint64 * rtptime,
911 guint64 * timestamp, guint32 * clock_rate, guint64 * last_rtptime)
914 *rtptime = jbuf->base_extrtp;
916 *timestamp = jbuf->base_time + jbuf->skew;
918 *clock_rate = jbuf->clock_rate;
920 *last_rtptime = jbuf->last_rtptime;