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., 51 Franklin St, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
21 #include <gst/rtp/gstrtpbuffer.h>
22 #include <gst/rtp/gstrtcpbuffer.h>
24 #include "rtpsource.h"
26 GST_DEBUG_CATEGORY_STATIC (rtp_source_debug);
27 #define GST_CAT_DEFAULT rtp_source_debug
29 #define RTP_MAX_PROBATION_LEN 32
31 /* signals and args */
37 #define DEFAULT_SSRC 0
38 #define DEFAULT_IS_CSRC FALSE
39 #define DEFAULT_IS_VALIDATED FALSE
40 #define DEFAULT_IS_SENDER FALSE
41 #define DEFAULT_SDES NULL
42 #define DEFAULT_PROBATION RTP_DEFAULT_PROBATION
57 /* GObject vmethods */
58 static void rtp_source_finalize (GObject * object);
59 static void rtp_source_set_property (GObject * object, guint prop_id,
60 const GValue * value, GParamSpec * pspec);
61 static void rtp_source_get_property (GObject * object, guint prop_id,
62 GValue * value, GParamSpec * pspec);
64 /* static guint rtp_source_signals[LAST_SIGNAL] = { 0 }; */
66 G_DEFINE_TYPE (RTPSource, rtp_source, G_TYPE_OBJECT);
69 rtp_source_class_init (RTPSourceClass * klass)
71 GObjectClass *gobject_class;
73 gobject_class = (GObjectClass *) klass;
75 gobject_class->finalize = rtp_source_finalize;
77 gobject_class->set_property = rtp_source_set_property;
78 gobject_class->get_property = rtp_source_get_property;
80 g_object_class_install_property (gobject_class, PROP_SSRC,
81 g_param_spec_uint ("ssrc", "SSRC",
82 "The SSRC of this source", 0, G_MAXUINT, DEFAULT_SSRC,
83 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
85 g_object_class_install_property (gobject_class, PROP_IS_CSRC,
86 g_param_spec_boolean ("is-csrc", "Is CSRC",
87 "If this SSRC is acting as a contributing source",
88 DEFAULT_IS_CSRC, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
90 g_object_class_install_property (gobject_class, PROP_IS_VALIDATED,
91 g_param_spec_boolean ("is-validated", "Is Validated",
92 "If this SSRC is validated", DEFAULT_IS_VALIDATED,
93 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
95 g_object_class_install_property (gobject_class, PROP_IS_SENDER,
96 g_param_spec_boolean ("is-sender", "Is Sender",
97 "If this SSRC is a sender", DEFAULT_IS_SENDER,
98 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
103 * The current SDES items of the source. Returns a structure with name
104 * application/x-rtp-source-sdes and may contain the following fields:
106 * 'cname' G_TYPE_STRING : The canonical name
107 * 'name' G_TYPE_STRING : The user name
108 * 'email' G_TYPE_STRING : The user's electronic mail address
109 * 'phone' G_TYPE_STRING : The user's phone number
110 * 'location' G_TYPE_STRING : The geographic user location
111 * 'tool' G_TYPE_STRING : The name of application or tool
112 * 'note' G_TYPE_STRING : A notice about the source
114 * other fields may be present and these represent private items in
115 * the SDES where the field name is the prefix.
117 g_object_class_install_property (gobject_class, PROP_SDES,
118 g_param_spec_boxed ("sdes", "SDES",
119 "The SDES information for this source",
120 GST_TYPE_STRUCTURE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
125 * The statistics of the source. This property returns a GstStructure with
126 * name application/x-rtp-source-stats with the following fields:
128 * "ssrc" G_TYPE_UINT The SSRC of this source
129 * "internal" G_TYPE_BOOLEAN If this source is a source of the session
130 * "validated" G_TYPE_BOOLEAN If the source is validated
131 * "received-bye" G_TYPE_BOOLEAN If we received a BYE from this source
132 * "is-csrc" G_TYPE_BOOLEAN If this source was found as CSRC
133 * "is-sender" G_TYPE_BOOLEAN If this source is a sender
134 * "seqnum-base" G_TYPE_INT first seqnum if known
135 * "clock-rate" G_TYPE_INT the clock rate of the media
137 * The following two fields are only present when known.
139 * "rtp-from" G_TYPE_STRING where we received the last RTP packet from
140 * "rtcp-from" G_TYPE_STRING where we received the last RTCP packet from
142 * The following fields make sense for internal sources and will only increase
143 * when "is-sender" is TRUE:
145 * "octets-sent" G_TYPE_UINT64 number of bytes we sent
146 * "packets-sent" G_TYPE_UINT64 number of packets we sent
148 * The following fields make sense for non-internal sources and will only
149 * increase when "is-sender" is TRUE.
151 * "octets-received" G_TYPE_UINT64 total number of bytes received
152 * "packets-received" G_TYPE_UINT64 total number of packets received
154 * Following fields are updated when "is-sender" is TRUE.
156 * "bitrate" G_TYPE_UINT64 bitrate in bits per second
157 * "jitter" G_TYPE_UINT estimated jitter
158 * "packets-lost" G_TYPE_INT estimated amount of packets lost
160 * The last SR report this source sent. This only updates when "is-sender" is
163 * "have-sr" G_TYPE_BOOLEAN the source has sent SR
164 * "sr-ntptime" G_TYPE_UINT64 ntptime of SR
165 * "sr-rtptime" G_TYPE_UINT rtptime of SR
166 * "sr-octet-count" G_TYPE_UINT the number of bytes in the SR
167 * "sr-packet-count" G_TYPE_UINT the number of packets in the SR
169 * The following fields are only present for non-internal sources and
170 * represent the content of the last RB packet that was sent to this source.
171 * These values are only updated when the source is sending.
173 * "sent-rb" G_TYPE_BOOLEAN we have sent an RB
174 * "sent-rb-fractionlost" G_TYPE_UINT calculated lost fraction
175 * "sent-rb-packetslost" G_TYPE_INT lost packets
176 * "sent-rb-exthighestseq" G_TYPE_UINT last seen seqnum
177 * "sent-rb-jitter" G_TYPE_UINT jitter
178 * "sent-rb-lsr" G_TYPE_UINT last SR time
179 * "sent-rb-dlsr" G_TYPE_UINT delay since last SR
181 * The following fields are only present for non-internal sources and
182 * represents the last RB that this source sent. This is only updated
183 * when the source is receiving data and sending RB blocks.
185 * "have-rb" G_TYPE_BOOLEAN the source has sent RB
186 * "rb-fractionlost" G_TYPE_UINT lost fraction
187 * "rb-packetslost" G_TYPE_INT lost packets
188 * "rb-exthighestseq" G_TYPE_UINT highest received seqnum
189 * "rb-jitter" G_TYPE_UINT reception jitter
190 * "rb-lsr" G_TYPE_UINT last SR time
191 * "rb-dlsr" G_TYPE_UINT delay since last SR
193 * The round trip of this source. This is calculated from the last RB
194 * values and the recption time of the last RB packet. Only present for
195 * non-internal sources.
197 * "rb-round-trip" G_TYPE_UINT the round trip time in nanoseconds
199 g_object_class_install_property (gobject_class, PROP_STATS,
200 g_param_spec_boxed ("stats", "Stats",
201 "The stats of this source", GST_TYPE_STRUCTURE,
202 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
204 g_object_class_install_property (gobject_class, PROP_PROBATION,
205 g_param_spec_uint ("probation", "Number of probations",
206 "Consecutive packet sequence numbers to accept the source",
207 0, G_MAXUINT, DEFAULT_PROBATION,
208 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
210 GST_DEBUG_CATEGORY_INIT (rtp_source_debug, "rtpsource", 0, "RTP Source");
215 * @src: an #RTPSource
217 * Reset the stats of @src.
220 rtp_source_reset (RTPSource * src)
222 src->marked_bye = FALSE;
224 g_free (src->bye_reason);
225 src->bye_reason = NULL;
226 src->sent_bye = FALSE;
227 g_hash_table_remove_all (src->reported_in_sr_of);
229 src->stats.cycles = -1;
230 src->stats.jitter = 0;
231 src->stats.transit = -1;
232 src->stats.curr_sr = 0;
233 src->stats.sr[0].is_valid = FALSE;
234 src->stats.curr_rr = 0;
235 src->stats.rr[0].is_valid = FALSE;
236 src->stats.prev_rtptime = GST_CLOCK_TIME_NONE;
237 src->stats.prev_rtcptime = GST_CLOCK_TIME_NONE;
238 src->stats.last_rtptime = GST_CLOCK_TIME_NONE;
239 src->stats.last_rtcptime = GST_CLOCK_TIME_NONE;
240 g_array_set_size (src->nacks, 0);
244 rtp_source_init (RTPSource * src)
246 /* sources are initialy on probation until we receive enough valid RTP
247 * packets or a valid RTCP packet */
248 src->validated = FALSE;
249 src->internal = FALSE;
250 src->probation = DEFAULT_PROBATION;
251 src->curr_probation = src->probation;
252 src->closing = FALSE;
254 src->sdes = gst_structure_new_empty ("application/x-rtp-source-sdes");
257 src->clock_rate = -1;
258 src->packets = g_queue_new ();
259 src->seqnum_base = -1;
260 src->last_rtptime = -1;
262 src->retained_feedback = g_queue_new ();
263 src->nacks = g_array_new (FALSE, FALSE, sizeof (guint32));
265 src->reported_in_sr_of = g_hash_table_new (g_direct_hash, g_direct_equal);
267 rtp_source_reset (src);
271 rtp_conflicting_address_free (RTPConflictingAddress * addr)
273 g_object_unref (addr->address);
274 g_slice_free (RTPConflictingAddress, addr);
278 rtp_source_finalize (GObject * object)
283 src = RTP_SOURCE_CAST (object);
285 while ((buffer = g_queue_pop_head (src->packets)))
286 gst_buffer_unref (buffer);
287 g_queue_free (src->packets);
289 gst_structure_free (src->sdes);
291 g_free (src->bye_reason);
293 gst_caps_replace (&src->caps, NULL);
295 g_list_free_full (src->conflicting_addresses,
296 (GDestroyNotify) rtp_conflicting_address_free);
297 while ((buffer = g_queue_pop_head (src->retained_feedback)))
298 gst_buffer_unref (buffer);
299 g_queue_free (src->retained_feedback);
301 g_array_free (src->nacks, TRUE);
304 g_object_unref (src->rtp_from);
306 g_object_unref (src->rtcp_from);
308 g_hash_table_unref (src->reported_in_sr_of);
310 G_OBJECT_CLASS (rtp_source_parent_class)->finalize (object);
313 static GstStructure *
314 rtp_source_create_stats (RTPSource * src)
317 gboolean is_sender = src->is_sender;
318 gboolean internal = src->internal;
321 guint8 fractionlost = 0;
322 gint32 packetslost = 0;
323 guint32 exthighestseq = 0;
327 guint32 round_trip = 0;
329 GstClockTime time = 0;
332 guint32 packet_count = 0;
333 guint32 octet_count = 0;
336 /* common data for all types of sources */
337 s = gst_structure_new ("application/x-rtp-source-stats",
338 "ssrc", G_TYPE_UINT, (guint) src->ssrc,
339 "internal", G_TYPE_BOOLEAN, internal,
340 "validated", G_TYPE_BOOLEAN, src->validated,
341 "received-bye", G_TYPE_BOOLEAN, src->marked_bye,
342 "is-csrc", G_TYPE_BOOLEAN, src->is_csrc,
343 "is-sender", G_TYPE_BOOLEAN, is_sender,
344 "seqnum-base", G_TYPE_INT, src->seqnum_base,
345 "clock-rate", G_TYPE_INT, src->clock_rate, NULL);
347 /* add address and port */
349 address_str = __g_socket_address_to_string (src->rtp_from);
350 gst_structure_set (s, "rtp-from", G_TYPE_STRING, address_str, NULL);
351 g_free (address_str);
353 if (src->rtcp_from) {
354 address_str = __g_socket_address_to_string (src->rtcp_from);
355 gst_structure_set (s, "rtcp-from", G_TYPE_STRING, address_str, NULL);
356 g_free (address_str);
359 gst_structure_set (s,
360 "octets-sent", G_TYPE_UINT64, src->stats.octets_sent,
361 "packets-sent", G_TYPE_UINT64, src->stats.packets_sent,
362 "octets-received", G_TYPE_UINT64, src->stats.octets_received,
363 "packets-received", G_TYPE_UINT64, src->stats.packets_received,
364 "bitrate", G_TYPE_UINT64, src->bitrate,
365 "packets-lost", G_TYPE_INT,
366 (gint) rtp_stats_get_packets_lost (&src->stats), "jitter", G_TYPE_UINT,
367 (guint) (src->stats.jitter >> 4), NULL);
369 /* get the last SR. */
370 have_sr = rtp_source_get_last_sr (src, &time, &ntptime, &rtptime,
371 &packet_count, &octet_count);
372 gst_structure_set (s,
373 "have-sr", G_TYPE_BOOLEAN, have_sr,
374 "sr-ntptime", G_TYPE_UINT64, ntptime,
375 "sr-rtptime", G_TYPE_UINT, (guint) rtptime,
376 "sr-octet-count", G_TYPE_UINT, (guint) octet_count,
377 "sr-packet-count", G_TYPE_UINT, (guint) packet_count, NULL);
380 /* get the last RB we sent */
381 gst_structure_set (s,
382 "sent-rb", G_TYPE_BOOLEAN, src->last_rr.is_valid,
383 "sent-rb-fractionlost", G_TYPE_UINT, (guint) src->last_rr.fractionlost,
384 "sent-rb-packetslost", G_TYPE_INT, (gint) src->last_rr.packetslost,
385 "sent-rb-exthighestseq", G_TYPE_UINT,
386 (guint) src->last_rr.exthighestseq, "sent-rb-jitter", G_TYPE_UINT,
387 (guint) src->last_rr.jitter, "sent-rb-lsr", G_TYPE_UINT,
388 (guint) src->last_rr.lsr, "sent-rb-dlsr", G_TYPE_UINT,
389 (guint) src->last_rr.dlsr, NULL);
391 /* get the last RB */
392 have_rb = rtp_source_get_last_rb (src, &fractionlost, &packetslost,
393 &exthighestseq, &jitter, &lsr, &dlsr, &round_trip);
395 gst_structure_set (s,
396 "have-rb", G_TYPE_BOOLEAN, have_rb,
397 "rb-fractionlost", G_TYPE_UINT, (guint) fractionlost,
398 "rb-packetslost", G_TYPE_INT, (gint) packetslost,
399 "rb-exthighestseq", G_TYPE_UINT, (guint) exthighestseq,
400 "rb-jitter", G_TYPE_UINT, (guint) jitter,
401 "rb-lsr", G_TYPE_UINT, (guint) lsr,
402 "rb-dlsr", G_TYPE_UINT, (guint) dlsr,
403 "rb-round-trip", G_TYPE_UINT, (guint) round_trip, NULL);
410 * rtp_source_get_sdes_struct:
411 * @src: an #RTPSource
413 * Get the SDES from @src. See the SDES property for more details.
415 * Returns: %GstStructure of type "application/x-rtp-source-sdes". The result is
416 * valid until the SDES items of @src are modified.
419 rtp_source_get_sdes_struct (RTPSource * src)
421 g_return_val_if_fail (RTP_IS_SOURCE (src), NULL);
427 sdes_struct_compare_func (GQuark field_id, const GValue * value,
433 old = GST_STRUCTURE (user_data);
434 field = g_quark_to_string (field_id);
436 if (!gst_structure_has_field (old, field))
439 g_assert (G_VALUE_HOLDS_STRING (value));
441 return strcmp (g_value_get_string (value), gst_structure_get_string (old,
446 * rtp_source_set_sdes_struct:
447 * @src: an #RTPSource
448 * @sdes: the SDES structure
450 * Store the @sdes in @src. @sdes must be a structure of type
451 * "application/x-rtp-source-sdes", see the SDES property for more details.
453 * This function takes ownership of @sdes.
455 * Returns: %FALSE if the SDES was unchanged.
458 rtp_source_set_sdes_struct (RTPSource * src, GstStructure * sdes)
462 g_return_val_if_fail (RTP_IS_SOURCE (src), FALSE);
463 g_return_val_if_fail (strcmp (gst_structure_get_name (sdes),
464 "application/x-rtp-source-sdes") == 0, FALSE);
466 changed = !gst_structure_foreach (sdes, sdes_struct_compare_func, src->sdes);
469 gst_structure_free (src->sdes);
472 gst_structure_free (sdes);
478 rtp_source_set_property (GObject * object, guint prop_id,
479 const GValue * value, GParamSpec * pspec)
483 src = RTP_SOURCE (object);
487 src->ssrc = g_value_get_uint (value);
490 src->probation = g_value_get_uint (value);
493 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
499 rtp_source_get_property (GObject * object, guint prop_id,
500 GValue * value, GParamSpec * pspec)
504 src = RTP_SOURCE (object);
508 g_value_set_uint (value, rtp_source_get_ssrc (src));
511 g_value_set_boolean (value, rtp_source_is_as_csrc (src));
513 case PROP_IS_VALIDATED:
514 g_value_set_boolean (value, rtp_source_is_validated (src));
517 g_value_set_boolean (value, rtp_source_is_sender (src));
520 g_value_set_boxed (value, rtp_source_get_sdes_struct (src));
523 g_value_take_boxed (value, rtp_source_create_stats (src));
526 g_value_set_uint (value, src->probation);
529 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
538 * Create a #RTPSource with @ssrc.
540 * Returns: a new #RTPSource. Use g_object_unref() after usage.
543 rtp_source_new (guint32 ssrc)
547 src = g_object_new (RTP_TYPE_SOURCE, NULL);
554 * rtp_source_set_callbacks:
555 * @src: an #RTPSource
556 * @cb: callback functions
557 * @user_data: user data
559 * Set the callbacks for the source.
562 rtp_source_set_callbacks (RTPSource * src, RTPSourceCallbacks * cb,
565 g_return_if_fail (RTP_IS_SOURCE (src));
567 src->callbacks.push_rtp = cb->push_rtp;
568 src->callbacks.clock_rate = cb->clock_rate;
569 src->user_data = user_data;
573 * rtp_source_get_ssrc:
574 * @src: an #RTPSource
576 * Get the SSRC of @source.
578 * Returns: the SSRC of src.
581 rtp_source_get_ssrc (RTPSource * src)
585 g_return_val_if_fail (RTP_IS_SOURCE (src), 0);
593 * rtp_source_set_as_csrc:
594 * @src: an #RTPSource
596 * Configure @src as a CSRC, this will also validate @src.
599 rtp_source_set_as_csrc (RTPSource * src)
601 g_return_if_fail (RTP_IS_SOURCE (src));
603 src->validated = TRUE;
608 * rtp_source_is_as_csrc:
609 * @src: an #RTPSource
611 * Check if @src is a contributing source.
613 * Returns: %TRUE if @src is acting as a contributing source.
616 rtp_source_is_as_csrc (RTPSource * src)
620 g_return_val_if_fail (RTP_IS_SOURCE (src), FALSE);
622 result = src->is_csrc;
628 * rtp_source_is_active:
629 * @src: an #RTPSource
631 * Check if @src is an active source. A source is active if it has been
632 * validated and has not yet received a BYE packet
634 * Returns: %TRUE if @src is an qactive source.
637 rtp_source_is_active (RTPSource * src)
641 g_return_val_if_fail (RTP_IS_SOURCE (src), FALSE);
643 result = RTP_SOURCE_IS_ACTIVE (src);
649 * rtp_source_is_validated:
650 * @src: an #RTPSource
652 * Check if @src is a validated source.
654 * Returns: %TRUE if @src is a validated source.
657 rtp_source_is_validated (RTPSource * src)
661 g_return_val_if_fail (RTP_IS_SOURCE (src), FALSE);
663 result = src->validated;
669 * rtp_source_is_sender:
670 * @src: an #RTPSource
672 * Check if @src is a sending source.
674 * Returns: %TRUE if @src is a sending source.
677 rtp_source_is_sender (RTPSource * src)
681 g_return_val_if_fail (RTP_IS_SOURCE (src), FALSE);
683 result = RTP_SOURCE_IS_SENDER (src);
689 * rtp_source_is_marked_bye:
690 * @src: an #RTPSource
692 * Check if @src is marked as leaving the session with a BYE packet.
694 * Returns: %TRUE if @src has been marked BYE.
697 rtp_source_is_marked_bye (RTPSource * src)
701 g_return_val_if_fail (RTP_IS_SOURCE (src), FALSE);
703 result = RTP_SOURCE_IS_MARKED_BYE (src);
710 * rtp_source_get_bye_reason:
711 * @src: an #RTPSource
713 * Get the BYE reason for @src. Check if the source is marked as leaving the
714 * session with a BYE message first with rtp_source_is_marked_bye().
716 * Returns: The BYE reason or NULL when no reason was given or the source was
717 * not marked BYE yet. g_free() after usage.
720 rtp_source_get_bye_reason (RTPSource * src)
724 g_return_val_if_fail (RTP_IS_SOURCE (src), NULL);
726 result = g_strdup (src->bye_reason);
732 * rtp_source_update_caps:
733 * @src: an #RTPSource
736 * Parse @caps and store all relevant information in @source.
739 rtp_source_update_caps (RTPSource * src, GstCaps * caps)
745 /* nothing changed, return */
746 if (caps == NULL || src->caps == caps)
749 s = gst_caps_get_structure (caps, 0);
751 if (gst_structure_get_int (s, "payload", &ival))
755 GST_DEBUG ("got payload %d", src->payload);
757 if (gst_structure_get_int (s, "clock-rate", &ival))
758 src->clock_rate = ival;
760 src->clock_rate = -1;
762 GST_DEBUG ("got clock-rate %d", src->clock_rate);
764 if (gst_structure_get_uint (s, "seqnum-base", &val))
765 src->seqnum_base = val;
767 src->seqnum_base = -1;
769 GST_DEBUG ("got seqnum-base %" G_GINT32_FORMAT, src->seqnum_base);
771 gst_caps_replace (&src->caps, caps);
775 * rtp_source_set_rtp_from:
776 * @src: an #RTPSource
777 * @address: the RTP address to set
779 * Set that @src is receiving RTP packets from @address. This is used for
780 * collistion checking.
783 rtp_source_set_rtp_from (RTPSource * src, GSocketAddress * address)
785 g_return_if_fail (RTP_IS_SOURCE (src));
788 g_object_unref (src->rtp_from);
789 src->rtp_from = G_SOCKET_ADDRESS (g_object_ref (address));
793 * rtp_source_set_rtcp_from:
794 * @src: an #RTPSource
795 * @address: the RTCP address to set
797 * Set that @src is receiving RTCP packets from @address. This is used for
798 * collistion checking.
801 rtp_source_set_rtcp_from (RTPSource * src, GSocketAddress * address)
803 g_return_if_fail (RTP_IS_SOURCE (src));
806 g_object_unref (src->rtcp_from);
807 src->rtcp_from = G_SOCKET_ADDRESS (g_object_ref (address));
811 push_packet (RTPSource * src, GstBuffer * buffer)
813 GstFlowReturn ret = GST_FLOW_OK;
815 /* push queued packets first if any */
816 while (!g_queue_is_empty (src->packets)) {
817 GstBuffer *buffer = GST_BUFFER_CAST (g_queue_pop_head (src->packets));
819 GST_LOG ("pushing queued packet");
820 if (src->callbacks.push_rtp)
821 src->callbacks.push_rtp (src, buffer, src->user_data);
823 gst_buffer_unref (buffer);
825 GST_LOG ("pushing new packet");
827 if (src->callbacks.push_rtp)
828 ret = src->callbacks.push_rtp (src, buffer, src->user_data);
830 gst_buffer_unref (buffer);
836 get_clock_rate (RTPSource * src, guint8 payload)
838 if (src->payload == -1) {
839 /* first payload received, nothing was in the caps, lock on to this payload */
840 src->payload = payload;
841 GST_DEBUG ("first payload %d", payload);
842 } else if (payload != src->payload) {
843 /* we have a different payload than before, reset the clock-rate */
844 GST_DEBUG ("new payload %d", payload);
845 src->payload = payload;
846 src->clock_rate = -1;
847 src->stats.transit = -1;
850 if (src->clock_rate == -1) {
851 gint clock_rate = -1;
853 if (src->callbacks.clock_rate)
854 clock_rate = src->callbacks.clock_rate (src, payload, src->user_data);
856 GST_DEBUG ("got clock-rate %d", clock_rate);
858 src->clock_rate = clock_rate;
860 return src->clock_rate;
863 /* Jitter is the variation in the delay of received packets in a flow. It is
864 * measured by comparing the interval when RTP packets were sent to the interval
865 * at which they were received. For instance, if packet #1 and packet #2 leave
866 * 50 milliseconds apart and arrive 60 milliseconds apart, then the jitter is 10
869 calculate_jitter (RTPSource * src, RTPPacketInfo * pinfo)
871 GstClockTime running_time;
872 guint32 rtparrival, transit, rtptime;
877 /* get arrival time */
878 if ((running_time = pinfo->running_time) == GST_CLOCK_TIME_NONE)
883 GST_LOG ("SSRC %08x got payload %d", src->ssrc, pt);
886 if ((clock_rate = get_clock_rate (src, pt)) == -1)
889 rtptime = pinfo->rtptime;
891 /* convert arrival time to RTP timestamp units, truncate to 32 bits, we don't
892 * care about the absolute value, just the difference. */
893 rtparrival = gst_util_uint64_scale_int (running_time, clock_rate, GST_SECOND);
895 /* transit time is difference with RTP timestamp */
896 transit = rtparrival - rtptime;
898 /* get ABS diff with previous transit time */
899 if (src->stats.transit != -1) {
900 if (transit > src->stats.transit)
901 diff = transit - src->stats.transit;
903 diff = src->stats.transit - transit;
907 src->stats.transit = transit;
909 /* update jitter, the value we store is scaled up so we can keep precision. */
910 src->stats.jitter += diff - ((src->stats.jitter + 8) >> 4);
912 src->stats.prev_rtptime = src->stats.last_rtptime;
913 src->stats.last_rtptime = rtparrival;
915 GST_LOG ("rtparrival %u, rtptime %u, clock-rate %d, diff %d, jitter: %f",
916 rtparrival, rtptime, clock_rate, diff, (src->stats.jitter) / 16.0);
923 GST_WARNING ("cannot get current running_time");
928 GST_WARNING ("cannot get clock-rate for pt %d", pt);
934 init_seq (RTPSource * src, guint16 seq)
936 src->stats.base_seq = seq;
937 src->stats.max_seq = seq;
938 src->stats.bad_seq = RTP_SEQ_MOD + 1; /* so seq == bad_seq is false */
939 src->stats.cycles = 0;
940 src->stats.packets_received = 0;
941 src->stats.octets_received = 0;
942 src->stats.bytes_received = 0;
943 src->stats.prev_received = 0;
944 src->stats.prev_expected = 0;
946 GST_DEBUG ("base_seq %d", seq);
949 #define BITRATE_INTERVAL (2 * GST_SECOND)
952 do_bitrate_estimation (RTPSource * src, GstClockTime running_time,
953 guint64 * bytes_handled)
957 if (src->prev_rtime) {
958 elapsed = running_time - src->prev_rtime;
960 if (elapsed > BITRATE_INTERVAL) {
963 rate = gst_util_uint64_scale (*bytes_handled, 8 * GST_SECOND, elapsed);
965 GST_LOG ("Elapsed %" G_GUINT64_FORMAT ", bytes %" G_GUINT64_FORMAT
966 ", rate %" G_GUINT64_FORMAT, elapsed, *bytes_handled, rate);
968 if (src->bitrate == 0)
971 src->bitrate = ((src->bitrate * 3) + rate) / 4;
973 src->prev_rtime = running_time;
977 GST_LOG ("Reset bitrate measurement");
978 src->prev_rtime = running_time;
984 update_receiver_stats (RTPSource * src, RTPPacketInfo * pinfo)
986 guint16 seqnr, udelta;
987 RTPSourceStats *stats;
992 seqnr = pinfo->seqnum;
994 if (stats->cycles == -1) {
995 GST_DEBUG ("received first packet");
996 /* first time we heard of this source */
997 init_seq (src, seqnr);
998 src->stats.max_seq = seqnr - 1;
999 src->curr_probation = src->probation;
1002 udelta = seqnr - stats->max_seq;
1004 /* if we are still on probation, check seqnum */
1005 if (src->curr_probation) {
1006 expected = src->stats.max_seq + 1;
1008 /* when in probation, we require consecutive seqnums */
1009 if (seqnr == expected) {
1010 /* expected packet */
1011 GST_DEBUG ("probation: seqnr %d == expected %d", seqnr, expected);
1012 src->curr_probation--;
1013 src->stats.max_seq = seqnr;
1014 if (src->curr_probation == 0) {
1015 GST_DEBUG ("probation done!");
1016 init_seq (src, seqnr);
1020 GST_DEBUG ("probation %d: queue packet", src->curr_probation);
1021 /* when still in probation, keep packets in a list. */
1022 g_queue_push_tail (src->packets, pinfo->data);
1024 /* remove packets from queue if there are too many */
1025 while (g_queue_get_length (src->packets) > RTP_MAX_PROBATION_LEN) {
1026 q = g_queue_pop_head (src->packets);
1027 gst_buffer_unref (q);
1032 /* unexpected seqnum in probation */
1033 goto probation_seqnum;
1035 } else if (udelta < RTP_MAX_DROPOUT) {
1036 /* in order, with permissible gap */
1037 if (seqnr < stats->max_seq) {
1038 /* sequence number wrapped - count another 64K cycle. */
1039 stats->cycles += RTP_SEQ_MOD;
1041 stats->max_seq = seqnr;
1042 } else if (udelta <= RTP_SEQ_MOD - RTP_MAX_MISORDER) {
1043 /* the sequence number made a very large jump */
1044 if (seqnr == stats->bad_seq) {
1045 /* two sequential packets -- assume that the other side
1046 * restarted without telling us so just re-sync
1047 * (i.e., pretend this was the first packet). */
1048 init_seq (src, seqnr);
1050 /* unacceptable jump */
1051 stats->bad_seq = (seqnr + 1) & (RTP_SEQ_MOD - 1);
1055 /* duplicate or reordered packet, will be filtered by jitterbuffer. */
1056 GST_WARNING ("duplicate or reordered packet (seqnr %d)", seqnr);
1059 src->stats.octets_received += pinfo->payload_len;
1060 src->stats.bytes_received += pinfo->bytes;
1061 src->stats.packets_received++;
1062 /* for the bitrate estimation */
1063 src->bytes_received += pinfo->payload_len;
1065 GST_LOG ("seq %d, PC: %" G_GUINT64_FORMAT ", OC: %" G_GUINT64_FORMAT,
1066 seqnr, src->stats.packets_received, src->stats.octets_received);
1077 GST_WARNING ("unacceptable seqnum received");
1082 GST_WARNING ("probation: seqnr %d != expected %d", seqnr, expected);
1083 src->curr_probation = src->probation;
1084 src->stats.max_seq = seqnr;
1090 * rtp_source_process_rtp:
1091 * @src: an #RTPSource
1092 * @pinfo: an #RTPPacketInfo
1094 * Let @src handle the incomming RTP packet described in @pinfo.
1096 * Returns: a #GstFlowReturn.
1099 rtp_source_process_rtp (RTPSource * src, RTPPacketInfo * pinfo)
1101 GstFlowReturn result;
1103 g_return_val_if_fail (RTP_IS_SOURCE (src), GST_FLOW_ERROR);
1104 g_return_val_if_fail (pinfo != NULL, GST_FLOW_ERROR);
1106 if (!update_receiver_stats (src, pinfo))
1109 /* the source that sent the packet must be a sender */
1110 src->is_sender = TRUE;
1111 src->validated = TRUE;
1113 do_bitrate_estimation (src, pinfo->running_time, &src->bytes_received);
1115 /* calculate jitter for the stats */
1116 calculate_jitter (src, pinfo);
1118 /* we're ready to push the RTP packet now */
1119 result = push_packet (src, pinfo->data);
1126 * rtp_source_mark_bye:
1127 * @src: an #RTPSource
1128 * @reason: the reason for leaving
1130 * Mark @src in the BYE state. This can happen when the source wants to
1131 * leave the sesssion or when a BYE packets has been received.
1133 * This will make the source inactive.
1136 rtp_source_mark_bye (RTPSource * src, const gchar * reason)
1138 g_return_if_fail (RTP_IS_SOURCE (src));
1140 GST_DEBUG ("marking SSRC %08x as BYE, reason: %s", src->ssrc,
1141 GST_STR_NULL (reason));
1143 /* copy the reason and mark as bye */
1144 g_free (src->bye_reason);
1145 src->bye_reason = g_strdup (reason);
1146 src->marked_bye = TRUE;
1150 * rtp_source_send_rtp:
1151 * @src: an #RTPSource
1152 * @data: an RTP buffer or a list of RTP buffers
1153 * @is_list: if @data is a buffer or list
1154 * @running_time: the running time of @data
1156 * Send @data (an RTP buffer or list of buffers) originating from @src.
1157 * This will make @src a sender. This function takes ownership of @data and
1158 * modifies the SSRC in the RTP packet to that of @src when needed.
1160 * Returns: a #GstFlowReturn.
1163 rtp_source_send_rtp (RTPSource * src, RTPPacketInfo * pinfo)
1165 GstFlowReturn result;
1166 GstClockTime running_time;
1168 guint64 ext_rtptime;
1169 guint64 rt_diff, rtp_diff;
1171 g_return_val_if_fail (RTP_IS_SOURCE (src), GST_FLOW_ERROR);
1173 /* we are a sender now */
1174 src->is_sender = TRUE;
1176 /* update stats for the SR */
1177 src->stats.packets_sent += pinfo->packets;
1178 src->stats.octets_sent += pinfo->payload_len;
1179 src->bytes_sent += pinfo->payload_len;
1180 /* we are also a receiver of our packets */
1181 update_receiver_stats (src, pinfo);
1183 running_time = pinfo->running_time;
1185 do_bitrate_estimation (src, running_time, &src->bytes_sent);
1187 rtptime = pinfo->rtptime;
1189 ext_rtptime = src->last_rtptime;
1190 ext_rtptime = gst_rtp_buffer_ext_timestamp (&ext_rtptime, rtptime);
1192 GST_LOG ("SSRC %08x, RTP %" G_GUINT64_FORMAT ", running_time %"
1193 GST_TIME_FORMAT, src->ssrc, ext_rtptime, GST_TIME_ARGS (running_time));
1195 if (ext_rtptime > src->last_rtptime) {
1196 rtp_diff = ext_rtptime - src->last_rtptime;
1197 rt_diff = running_time - src->last_rtime;
1199 /* calc the diff so we can detect drift at the sender. This can also be used
1200 * to guestimate the clock rate if the NTP time is locked to the RTP
1201 * timestamps (as is the case when the capture device is providing the clock). */
1202 GST_LOG ("SSRC %08x, diff RTP %" G_GUINT64_FORMAT ", diff running_time %"
1203 GST_TIME_FORMAT, src->ssrc, rtp_diff, GST_TIME_ARGS (rt_diff));
1206 /* we keep track of the last received RTP timestamp and the corresponding
1207 * buffer running_time so that we can use this info when constructing SR reports */
1208 src->last_rtime = running_time;
1209 src->last_rtptime = ext_rtptime;
1212 if (!src->callbacks.push_rtp)
1215 GST_LOG ("pushing RTP %s %" G_GUINT64_FORMAT,
1216 pinfo->is_list ? "list" : "packet", src->stats.packets_sent);
1218 result = src->callbacks.push_rtp (src, pinfo->data, src->user_data);
1226 GST_WARNING ("no callback installed, dropping packet");
1232 * rtp_source_process_sr:
1233 * @src: an #RTPSource
1234 * @time: time of packet arrival
1235 * @ntptime: the NTP time in 32.32 fixed point
1236 * @rtptime: the RTP time
1237 * @packet_count: the packet count
1238 * @octet_count: the octect count
1240 * Update the sender report in @src.
1243 rtp_source_process_sr (RTPSource * src, GstClockTime time, guint64 ntptime,
1244 guint32 rtptime, guint32 packet_count, guint32 octet_count)
1246 RTPSenderReport *curr;
1249 g_return_if_fail (RTP_IS_SOURCE (src));
1251 GST_DEBUG ("got SR packet: SSRC %08x, NTP %08x:%08x, RTP %" G_GUINT32_FORMAT
1252 ", PC %" G_GUINT32_FORMAT ", OC %" G_GUINT32_FORMAT, src->ssrc,
1253 (guint32) (ntptime >> 32), (guint32) (ntptime & 0xffffffff), rtptime,
1254 packet_count, octet_count);
1256 curridx = src->stats.curr_sr ^ 1;
1257 curr = &src->stats.sr[curridx];
1259 /* this is a sender now */
1260 src->is_sender = TRUE;
1262 /* update current */
1263 curr->is_valid = TRUE;
1264 curr->ntptime = ntptime;
1265 curr->rtptime = rtptime;
1266 curr->packet_count = packet_count;
1267 curr->octet_count = octet_count;
1271 src->stats.curr_sr = curridx;
1273 src->stats.prev_rtcptime = src->stats.last_rtcptime;
1274 src->stats.last_rtcptime = time;
1278 * rtp_source_process_rb:
1279 * @src: an #RTPSource
1280 * @ntpnstime: the current time in nanoseconds since 1970
1281 * @fractionlost: fraction lost since last SR/RR
1282 * @packetslost: the cumululative number of packets lost
1283 * @exthighestseq: the extended last sequence number received
1284 * @jitter: the interarrival jitter
1285 * @lsr: the last SR packet from this source
1286 * @dlsr: the delay since last SR packet
1288 * Update the report block in @src.
1291 rtp_source_process_rb (RTPSource * src, guint64 ntpnstime,
1292 guint8 fractionlost, gint32 packetslost, guint32 exthighestseq,
1293 guint32 jitter, guint32 lsr, guint32 dlsr)
1295 RTPReceiverReport *curr;
1300 g_return_if_fail (RTP_IS_SOURCE (src));
1302 GST_DEBUG ("got RB packet: SSRC %08x, FL %2x, PL %d, HS %" G_GUINT32_FORMAT
1303 ", jitter %" G_GUINT32_FORMAT ", LSR %04x:%04x, DLSR %04x:%04x",
1304 src->ssrc, fractionlost, packetslost, exthighestseq, jitter, lsr >> 16,
1305 lsr & 0xffff, dlsr >> 16, dlsr & 0xffff);
1307 curridx = src->stats.curr_rr ^ 1;
1308 curr = &src->stats.rr[curridx];
1310 /* update current */
1311 curr->is_valid = TRUE;
1312 curr->fractionlost = fractionlost;
1313 curr->packetslost = packetslost;
1314 curr->exthighestseq = exthighestseq;
1315 curr->jitter = jitter;
1319 /* convert the NTP time in nanoseconds to 32.32 fixed point */
1320 f_ntp = gst_util_uint64_scale (ntpnstime, (1LL << 32), GST_SECOND);
1321 /* calculate round trip, round the time up */
1322 ntp = ((f_ntp + 0xffff) >> 16) & 0xffffffff;
1325 if (A > 0 && ntp > A)
1329 curr->round_trip = A;
1331 GST_DEBUG ("NTP %04x:%04x, round trip %04x:%04x", ntp >> 16, ntp & 0xffff,
1332 A >> 16, A & 0xffff);
1335 src->stats.curr_rr = curridx;
1339 * rtp_source_get_new_sr:
1340 * @src: an #RTPSource
1341 * @ntpnstime: the current time in nanoseconds since 1970
1342 * @running_time: the current running_time of the pipeline.
1343 * @ntptime: the NTP time in 32.32 fixed point
1344 * @rtptime: the RTP time corresponding to @ntptime
1345 * @packet_count: the packet count
1346 * @octet_count: the octect count
1348 * Get new values to put into a new SR report from this source.
1350 * @running_time and @ntpnstime are captured at the same time and represent the
1351 * running time of the pipeline clock and the absolute current system time in
1352 * nanoseconds respectively. Together with the last running_time and rtp timestamp
1353 * we have observed in the source, we can generate @ntptime and @rtptime for an SR
1354 * packet. @ntptime is basically the fixed point representation of @ntpnstime
1355 * and @rtptime the associated RTP timestamp.
1357 * Returns: %TRUE on success.
1360 rtp_source_get_new_sr (RTPSource * src, guint64 ntpnstime,
1361 GstClockTime running_time, guint64 * ntptime, guint32 * rtptime,
1362 guint32 * packet_count, guint32 * octet_count)
1365 guint64 t_current_ntp;
1366 GstClockTimeDiff diff;
1368 g_return_val_if_fail (RTP_IS_SOURCE (src), FALSE);
1370 /* We last saw a buffer with last_rtptime at last_rtime. Given a running_time
1371 * and an NTP time, we can scale the RTP timestamps so that they match the
1372 * given NTP time. for scaling, we assume that the slope of the rtptime vs
1373 * running_time vs ntptime curve is close to 1, which is certainly
1374 * sufficient for the frequency at which we report SR and the rate we send
1375 * out RTP packets. */
1376 t_rtp = src->last_rtptime;
1378 GST_DEBUG ("last_rtime %" GST_TIME_FORMAT ", last_rtptime %"
1379 G_GUINT64_FORMAT, GST_TIME_ARGS (src->last_rtime), t_rtp);
1381 if (src->clock_rate != -1) {
1382 /* get the diff between the clock running_time and the buffer running_time.
1383 * This is the elapsed time, as measured against the pipeline clock, between
1384 * when the rtp timestamp was observed and the current running_time.
1386 * We need to apply this diff to the RTP timestamp to get the RTP timestamp
1387 * for the given ntpnstime. */
1388 diff = GST_CLOCK_DIFF (src->last_rtime, running_time);
1390 /* now translate the diff to RTP time, handle positive and negative cases.
1391 * If there is no diff, we already set rtptime correctly above. */
1393 GST_DEBUG ("running_time %" GST_TIME_FORMAT ", diff %" GST_TIME_FORMAT,
1394 GST_TIME_ARGS (running_time), GST_TIME_ARGS (diff));
1395 t_rtp += gst_util_uint64_scale_int (diff, src->clock_rate, GST_SECOND);
1398 GST_DEBUG ("running_time %" GST_TIME_FORMAT ", diff -%" GST_TIME_FORMAT,
1399 GST_TIME_ARGS (running_time), GST_TIME_ARGS (diff));
1400 t_rtp -= gst_util_uint64_scale_int (diff, src->clock_rate, GST_SECOND);
1403 GST_WARNING ("no clock-rate, cannot interpolate rtp time");
1406 /* convert the NTP time in nanoseconds to 32.32 fixed point */
1407 t_current_ntp = gst_util_uint64_scale (ntpnstime, (1LL << 32), GST_SECOND);
1409 GST_DEBUG ("NTP %08x:%08x, RTP %" G_GUINT32_FORMAT,
1410 (guint32) (t_current_ntp >> 32), (guint32) (t_current_ntp & 0xffffffff),
1414 *ntptime = t_current_ntp;
1418 *packet_count = src->stats.packets_sent;
1420 *octet_count = src->stats.octets_sent;
1426 * rtp_source_get_new_rb:
1427 * @src: an #RTPSource
1428 * @time: the current time of the system clock
1429 * @fractionlost: fraction lost since last SR/RR
1430 * @packetslost: the cumululative number of packets lost
1431 * @exthighestseq: the extended last sequence number received
1432 * @jitter: the interarrival jitter
1433 * @lsr: the last SR packet from this source
1434 * @dlsr: the delay since last SR packet
1436 * Get new values to put into a new report block from this source.
1438 * Returns: %TRUE on success.
1441 rtp_source_get_new_rb (RTPSource * src, GstClockTime time,
1442 guint8 * fractionlost, gint32 * packetslost, guint32 * exthighestseq,
1443 guint32 * jitter, guint32 * lsr, guint32 * dlsr)
1445 RTPSourceStats *stats;
1446 guint64 extended_max, expected;
1447 guint64 expected_interval, received_interval, ntptime;
1448 gint64 lost, lost_interval;
1449 guint32 fraction, LSR, DLSR;
1450 GstClockTime sr_time;
1452 stats = &src->stats;
1454 extended_max = stats->cycles + stats->max_seq;
1455 expected = extended_max - stats->base_seq + 1;
1457 GST_DEBUG ("ext_max %" G_GUINT64_FORMAT ", expected %" G_GUINT64_FORMAT
1458 ", received %" G_GUINT64_FORMAT ", base_seq %" G_GUINT32_FORMAT,
1459 extended_max, expected, stats->packets_received, stats->base_seq);
1461 lost = expected - stats->packets_received;
1462 lost = CLAMP (lost, -0x800000, 0x7fffff);
1464 expected_interval = expected - stats->prev_expected;
1465 stats->prev_expected = expected;
1466 received_interval = stats->packets_received - stats->prev_received;
1467 stats->prev_received = stats->packets_received;
1469 lost_interval = expected_interval - received_interval;
1471 if (expected_interval == 0 || lost_interval <= 0)
1474 fraction = (lost_interval << 8) / expected_interval;
1476 GST_DEBUG ("add RR for SSRC %08x", src->ssrc);
1477 /* we scaled the jitter up for additional precision */
1478 GST_DEBUG ("fraction %" G_GUINT32_FORMAT ", lost %" G_GINT64_FORMAT
1479 ", extseq %" G_GUINT64_FORMAT ", jitter %d", fraction, lost,
1480 extended_max, stats->jitter >> 4);
1482 if (rtp_source_get_last_sr (src, &sr_time, &ntptime, NULL, NULL, NULL)) {
1485 /* LSR is middle 32 bits of the last ntptime */
1486 LSR = (ntptime >> 16) & 0xffffffff;
1487 diff = time - sr_time;
1488 GST_DEBUG ("last SR time diff %" GST_TIME_FORMAT, GST_TIME_ARGS (diff));
1489 /* DLSR, delay since last SR is expressed in 1/65536 second units */
1490 DLSR = gst_util_uint64_scale_int (diff, 65536, GST_SECOND);
1492 /* No valid SR received, LSR/DLSR are set to 0 then */
1493 GST_DEBUG ("no valid SR received");
1497 GST_DEBUG ("LSR %04x:%04x, DLSR %04x:%04x", LSR >> 16, LSR & 0xffff,
1498 DLSR >> 16, DLSR & 0xffff);
1501 *fractionlost = fraction;
1503 *packetslost = lost;
1505 *exthighestseq = extended_max;
1507 *jitter = stats->jitter >> 4;
1517 * rtp_source_get_last_sr:
1518 * @src: an #RTPSource
1519 * @time: time of packet arrival
1520 * @ntptime: the NTP time in 32.32 fixed point
1521 * @rtptime: the RTP time
1522 * @packet_count: the packet count
1523 * @octet_count: the octect count
1525 * Get the values of the last sender report as set with rtp_source_process_sr().
1527 * Returns: %TRUE if there was a valid SR report.
1530 rtp_source_get_last_sr (RTPSource * src, GstClockTime * time, guint64 * ntptime,
1531 guint32 * rtptime, guint32 * packet_count, guint32 * octet_count)
1533 RTPSenderReport *curr;
1535 g_return_val_if_fail (RTP_IS_SOURCE (src), FALSE);
1537 curr = &src->stats.sr[src->stats.curr_sr];
1538 if (!curr->is_valid)
1542 *ntptime = curr->ntptime;
1544 *rtptime = curr->rtptime;
1546 *packet_count = curr->packet_count;
1548 *octet_count = curr->octet_count;
1556 * rtp_source_get_last_rb:
1557 * @src: an #RTPSource
1558 * @fractionlost: fraction lost since last SR/RR
1559 * @packetslost: the cumululative number of packets lost
1560 * @exthighestseq: the extended last sequence number received
1561 * @jitter: the interarrival jitter
1562 * @lsr: the last SR packet from this source
1563 * @dlsr: the delay since last SR packet
1564 * @round_trip: the round trip time
1566 * Get the values of the last RB report set with rtp_source_process_rb().
1568 * Returns: %TRUE if there was a valid SB report.
1571 rtp_source_get_last_rb (RTPSource * src, guint8 * fractionlost,
1572 gint32 * packetslost, guint32 * exthighestseq, guint32 * jitter,
1573 guint32 * lsr, guint32 * dlsr, guint32 * round_trip)
1575 RTPReceiverReport *curr;
1577 g_return_val_if_fail (RTP_IS_SOURCE (src), FALSE);
1579 curr = &src->stats.rr[src->stats.curr_rr];
1580 if (!curr->is_valid)
1584 *fractionlost = curr->fractionlost;
1586 *packetslost = curr->packetslost;
1588 *exthighestseq = curr->exthighestseq;
1590 *jitter = curr->jitter;
1596 *round_trip = curr->round_trip;
1602 find_conflicting_address (GList * conflicting_addresses,
1603 GSocketAddress * address, GstClockTime time)
1607 for (item = conflicting_addresses; item; item = g_list_next (item)) {
1608 RTPConflictingAddress *known_conflict = item->data;
1610 if (__g_socket_address_equal (address, known_conflict->address)) {
1611 known_conflict->time = time;
1620 add_conflicting_address (GList * conflicting_addresses,
1621 GSocketAddress * address, GstClockTime time)
1623 RTPConflictingAddress *new_conflict;
1625 new_conflict = g_slice_new (RTPConflictingAddress);
1627 new_conflict->address = G_SOCKET_ADDRESS (g_object_ref (address));
1628 new_conflict->time = time;
1630 return g_list_prepend (conflicting_addresses, new_conflict);
1634 timeout_conflicting_addresses (GList * conflicting_addresses,
1635 GstClockTime current_time)
1638 /* "a relatively long time" -- RFC 3550 section 8.2 */
1639 const GstClockTime collision_timeout =
1640 RTP_STATS_MIN_INTERVAL * GST_SECOND * 10;
1642 item = g_list_first (conflicting_addresses);
1644 RTPConflictingAddress *known_conflict = item->data;
1645 GList *next_item = g_list_next (item);
1647 if (known_conflict->time < current_time - collision_timeout) {
1650 conflicting_addresses = g_list_delete_link (conflicting_addresses, item);
1651 buf = __g_socket_address_to_string (known_conflict->address);
1652 GST_DEBUG ("collision %p timed out: %s", known_conflict, buf);
1654 rtp_conflicting_address_free (known_conflict);
1659 return conflicting_addresses;
1663 * rtp_source_find_conflicting_address:
1664 * @src: The source the packet came in
1665 * @address: address to check for
1666 * @time: The time when the packet that is possibly in conflict arrived
1668 * Checks if an address which has a conflict is already known. If it is
1669 * a known conflict, remember the time
1671 * Returns: TRUE if it was a known conflict, FALSE otherwise
1674 rtp_source_find_conflicting_address (RTPSource * src, GSocketAddress * address,
1677 return find_conflicting_address (src->conflicting_addresses, address, time);
1681 * rtp_source_add_conflicting_address:
1682 * @src: The source the packet came in
1683 * @address: address to remember
1684 * @time: The time when the packet that is in conflict arrived
1686 * Adds a new conflict address
1689 rtp_source_add_conflicting_address (RTPSource * src,
1690 GSocketAddress * address, GstClockTime time)
1692 src->conflicting_addresses =
1693 add_conflicting_address (src->conflicting_addresses, address, time);
1697 * rtp_source_timeout:
1698 * @src: The #RTPSource
1699 * @current_time: The current time
1700 * @feedback_retention_window: The running time before which retained feedback
1701 * packets have to be discarded
1703 * This is processed on each RTCP interval. It times out old collisions.
1704 * It also times out old retained feedback packets
1707 rtp_source_timeout (RTPSource * src, GstClockTime current_time,
1708 GstClockTime feedback_retention_window)
1712 src->conflicting_addresses =
1713 timeout_conflicting_addresses (src->conflicting_addresses, current_time);
1715 /* Time out AVPF packets that are older than the desired length */
1716 while ((pkt = g_queue_peek_tail (src->retained_feedback)) &&
1717 GST_BUFFER_TIMESTAMP (pkt) < feedback_retention_window)
1718 gst_buffer_unref (g_queue_pop_tail (src->retained_feedback));
1722 compare_buffers (gconstpointer a, gconstpointer b, gpointer user_data)
1724 const GstBuffer *bufa = a;
1725 const GstBuffer *bufb = b;
1727 return GST_BUFFER_TIMESTAMP (bufa) - GST_BUFFER_TIMESTAMP (bufb);
1731 rtp_source_retain_rtcp_packet (RTPSource * src, GstRTCPPacket * packet,
1732 GstClockTime running_time)
1736 buffer = gst_buffer_copy_region (packet->rtcp->buffer, GST_BUFFER_COPY_MEMORY,
1737 packet->offset, (gst_rtcp_packet_get_length (packet) + 1) * 4);
1739 GST_BUFFER_TIMESTAMP (buffer) = running_time;
1741 g_queue_insert_sorted (src->retained_feedback, buffer, compare_buffers, NULL);
1745 rtp_source_has_retained (RTPSource * src, GCompareFunc func, gconstpointer data)
1747 if (g_queue_find_custom (src->retained_feedback, data, func))
1754 * @src: The #RTPSource
1757 * Register that @seqnum has not been received from @src.
1760 rtp_source_register_nack (RTPSource * src, guint16 seqnum)
1763 guint32 dword = seqnum << 16;
1766 len = src->nacks->len;
1767 for (i = 0; i < len; i++) {
1771 tdword = g_array_index (src->nacks, guint32, i);
1772 tseq = tdword >> 16;
1774 diff = gst_rtp_buffer_compare_seqnum (tseq, seqnum);
1778 /* we already have this seqnum */
1781 /* it comes before the recorded seqnum, FIXME, we could merge it
1782 * if not to far away */
1784 GST_DEBUG ("insert NACK #%u at %u", seqnum, i);
1785 g_array_insert_val (src->nacks, i, dword);
1786 } else if (diff < 16) {
1787 /* we can merge it */
1788 dword = g_array_index (src->nacks, guint32, i);
1789 dword |= 1 << (diff - 1);
1790 GST_DEBUG ("merge NACK #%u at %u with NACK #%u -> 0x%08x", seqnum, i,
1791 dword >> 16, dword);
1792 g_array_index (src->nacks, guint32, i) = dword;
1794 GST_DEBUG ("append NACK #%u", seqnum);
1795 g_array_append_val (src->nacks, dword);
1797 src->send_nack = TRUE;
1801 * @src: The #RTPSource
1802 * @n_nacks: result number of nacks
1804 * Get the registered NACKS since the last rtp_source_clear_nacks().
1806 * Returns: an array of @n_nacks seqnum values.
1809 rtp_source_get_nacks (RTPSource * src, guint * n_nacks)
1812 *n_nacks = src->nacks->len;
1814 return (guint32 *) src->nacks->data;
1818 rtp_source_clear_nacks (RTPSource * src)
1820 g_array_set_size (src->nacks, 0);
1821 src->send_nack = FALSE;