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.
20 /* FIXME 0.11: suppress warnings for deprecated API such as GValueArray
21 * with newer GLib versions (>= 2.31.0) */
22 #define GLIB_DISABLE_DEPRECATION_WARNINGS
26 #include <gst/rtp/gstrtpbuffer.h>
27 #include <gst/rtp/gstrtcpbuffer.h>
29 #include <gst/glib-compat-private.h>
31 #include "gstrtpbin-marshal.h"
32 #include "rtpsession.h"
34 GST_DEBUG_CATEGORY_STATIC (rtp_session_debug);
35 #define GST_CAT_DEFAULT rtp_session_debug
37 /* signals and args */
40 SIGNAL_GET_SOURCE_BY_SSRC,
42 SIGNAL_ON_SSRC_COLLISION,
43 SIGNAL_ON_SSRC_VALIDATED,
44 SIGNAL_ON_SSRC_ACTIVE,
47 SIGNAL_ON_BYE_TIMEOUT,
49 SIGNAL_ON_SENDER_TIMEOUT,
50 SIGNAL_ON_SENDING_RTCP,
51 SIGNAL_ON_FEEDBACK_RTCP,
56 #define DEFAULT_INTERNAL_SOURCE NULL
57 #define DEFAULT_BANDWIDTH RTP_STATS_BANDWIDTH
58 #define DEFAULT_RTCP_FRACTION (RTP_STATS_RTCP_FRACTION * RTP_STATS_BANDWIDTH)
59 #define DEFAULT_RTCP_RR_BANDWIDTH -1
60 #define DEFAULT_RTCP_RS_BANDWIDTH -1
61 #define DEFAULT_RTCP_MTU 1400
62 #define DEFAULT_SDES NULL
63 #define DEFAULT_NUM_SOURCES 0
64 #define DEFAULT_NUM_ACTIVE_SOURCES 0
65 #define DEFAULT_SOURCES NULL
66 #define DEFAULT_RTCP_MIN_INTERVAL (RTP_STATS_MIN_INTERVAL * GST_SECOND)
67 #define DEFAULT_RTCP_FEEDBACK_RETENTION_WINDOW (2 * GST_SECOND)
68 #define DEFAULT_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD (3)
69 #define DEFAULT_PROBATION RTP_DEFAULT_PROBATION
78 PROP_RTCP_RR_BANDWIDTH,
79 PROP_RTCP_RS_BANDWIDTH,
83 PROP_NUM_ACTIVE_SOURCES,
86 PROP_RTCP_MIN_INTERVAL,
87 PROP_RTCP_FEEDBACK_RETENTION_WINDOW,
88 PROP_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD,
93 /* update average packet size */
94 #define INIT_AVG(avg, val) \
96 #define UPDATE_AVG(avg, val) \
100 (avg) = ((val) + (15 * (avg))) >> 4;
103 /* The number RTCP intervals after which to timeout entries in the
106 #define RTCP_INTERVAL_COLLISION_TIMEOUT 10
108 /* GObject vmethods */
109 static void rtp_session_finalize (GObject * object);
110 static void rtp_session_set_property (GObject * object, guint prop_id,
111 const GValue * value, GParamSpec * pspec);
112 static void rtp_session_get_property (GObject * object, guint prop_id,
113 GValue * value, GParamSpec * pspec);
115 static gboolean rtp_session_on_sending_rtcp (RTPSession * sess,
116 GstBuffer * buffer, gboolean early);
117 static void rtp_session_send_rtcp (RTPSession * sess,
118 GstClockTimeDiff max_delay);
121 static guint rtp_session_signals[LAST_SIGNAL] = { 0 };
123 G_DEFINE_TYPE (RTPSession, rtp_session, G_TYPE_OBJECT);
125 static RTPSource *obtain_source (RTPSession * sess, guint32 ssrc,
126 gboolean * created, RTPArrivalStats * arrival, gboolean rtp);
127 static GstFlowReturn rtp_session_schedule_bye_locked (RTPSession * sess,
128 const gchar * reason, GstClockTime current_time);
129 static GstClockTime calculate_rtcp_interval (RTPSession * sess,
130 gboolean deterministic, gboolean first);
133 accumulate_trues (GSignalInvocationHint * ihint, GValue * return_accu,
134 const GValue * handler_return, gpointer data)
136 if (g_value_get_boolean (handler_return))
137 g_value_set_boolean (return_accu, TRUE);
143 rtp_session_class_init (RTPSessionClass * klass)
145 GObjectClass *gobject_class;
147 gobject_class = (GObjectClass *) klass;
149 gobject_class->finalize = rtp_session_finalize;
150 gobject_class->set_property = rtp_session_set_property;
151 gobject_class->get_property = rtp_session_get_property;
154 * RTPSession::get-source-by-ssrc:
155 * @session: the object which received the signal
156 * @ssrc: the SSRC of the RTPSource
158 * Request the #RTPSource object with SSRC @ssrc in @session.
160 rtp_session_signals[SIGNAL_GET_SOURCE_BY_SSRC] =
161 g_signal_new ("get-source-by-ssrc", G_TYPE_FROM_CLASS (klass),
162 G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (RTPSessionClass,
163 get_source_by_ssrc), NULL, NULL, gst_rtp_bin_marshal_OBJECT__UINT,
164 RTP_TYPE_SOURCE, 1, G_TYPE_UINT);
167 * RTPSession::on-new-ssrc:
168 * @session: the object which received the signal
169 * @src: the new RTPSource
171 * Notify of a new SSRC that entered @session.
173 rtp_session_signals[SIGNAL_ON_NEW_SSRC] =
174 g_signal_new ("on-new-ssrc", G_TYPE_FROM_CLASS (klass),
175 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_new_ssrc),
176 NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
179 * RTPSession::on-ssrc-collision:
180 * @session: the object which received the signal
181 * @src: the #RTPSource that caused a collision
183 * Notify when we have an SSRC collision
185 rtp_session_signals[SIGNAL_ON_SSRC_COLLISION] =
186 g_signal_new ("on-ssrc-collision", G_TYPE_FROM_CLASS (klass),
187 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_collision),
188 NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
191 * RTPSession::on-ssrc-validated:
192 * @session: the object which received the signal
193 * @src: the new validated RTPSource
195 * Notify of a new SSRC that became validated.
197 rtp_session_signals[SIGNAL_ON_SSRC_VALIDATED] =
198 g_signal_new ("on-ssrc-validated", G_TYPE_FROM_CLASS (klass),
199 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_validated),
200 NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
203 * RTPSession::on-ssrc-active:
204 * @session: the object which received the signal
205 * @src: the active RTPSource
207 * Notify of a SSRC that is active, i.e., sending RTCP.
209 rtp_session_signals[SIGNAL_ON_SSRC_ACTIVE] =
210 g_signal_new ("on-ssrc-active", G_TYPE_FROM_CLASS (klass),
211 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_active),
212 NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
215 * RTPSession::on-ssrc-sdes:
216 * @session: the object which received the signal
217 * @src: the RTPSource
219 * Notify that a new SDES was received for SSRC.
221 rtp_session_signals[SIGNAL_ON_SSRC_SDES] =
222 g_signal_new ("on-ssrc-sdes", G_TYPE_FROM_CLASS (klass),
223 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_sdes),
224 NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
227 * RTPSession::on-bye-ssrc:
228 * @session: the object which received the signal
229 * @src: the RTPSource that went away
231 * Notify of an SSRC that became inactive because of a BYE packet.
233 rtp_session_signals[SIGNAL_ON_BYE_SSRC] =
234 g_signal_new ("on-bye-ssrc", G_TYPE_FROM_CLASS (klass),
235 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_bye_ssrc),
236 NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
239 * RTPSession::on-bye-timeout:
240 * @session: the object which received the signal
241 * @src: the RTPSource that timed out
243 * Notify of an SSRC that has timed out because of BYE
245 rtp_session_signals[SIGNAL_ON_BYE_TIMEOUT] =
246 g_signal_new ("on-bye-timeout", G_TYPE_FROM_CLASS (klass),
247 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_bye_timeout),
248 NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
251 * RTPSession::on-timeout:
252 * @session: the object which received the signal
253 * @src: the RTPSource that timed out
255 * Notify of an SSRC that has timed out
257 rtp_session_signals[SIGNAL_ON_TIMEOUT] =
258 g_signal_new ("on-timeout", G_TYPE_FROM_CLASS (klass),
259 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_timeout),
260 NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
263 * RTPSession::on-sender-timeout:
264 * @session: the object which received the signal
265 * @src: the RTPSource that timed out
267 * Notify of an SSRC that was a sender but timed out and became a receiver.
269 rtp_session_signals[SIGNAL_ON_SENDER_TIMEOUT] =
270 g_signal_new ("on-sender-timeout", G_TYPE_FROM_CLASS (klass),
271 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_sender_timeout),
272 NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
276 * RTPSession::on-sending-rtcp
277 * @session: the object which received the signal
278 * @buffer: the #GstBuffer containing the RTCP packet about to be sent
279 * @early: %TRUE if the packet is early, %FALSE if it is regular
281 * This signal is emitted before sending an RTCP packet, it can be used
282 * to add extra RTCP Packets.
284 * Returns: %TRUE if the RTCP buffer should NOT be suppressed, %FALSE
285 * if suppressing it is acceptable
287 rtp_session_signals[SIGNAL_ON_SENDING_RTCP] =
288 g_signal_new ("on-sending-rtcp", G_TYPE_FROM_CLASS (klass),
289 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_sending_rtcp),
290 accumulate_trues, NULL, gst_rtp_bin_marshal_BOOLEAN__BOXED_BOOLEAN,
291 G_TYPE_BOOLEAN, 2, GST_TYPE_BUFFER | G_SIGNAL_TYPE_STATIC_SCOPE,
295 * RTPSession::on-feedback-rtcp:
296 * @session: the object which received the signal
297 * @type: Type of RTCP packet, will be %GST_RTCP_TYPE_RTPFB or
298 * %GST_RTCP_TYPE_RTPFB
299 * @fbtype: The type of RTCP FB packet, probably part of #GstRTCPFBType
300 * @sender_ssrc: The SSRC of the sender
301 * @media_ssrc: The SSRC of the media this refers to
302 * @fci: a #GstBuffer with the FCI data from the FB packet or %NULL if
305 * Notify that a RTCP feedback packet has been received
307 rtp_session_signals[SIGNAL_ON_FEEDBACK_RTCP] =
308 g_signal_new ("on-feedback-rtcp", G_TYPE_FROM_CLASS (klass),
309 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_feedback_rtcp),
310 NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT_UINT_UINT_BOXED,
311 G_TYPE_NONE, 5, G_TYPE_UINT, G_TYPE_UINT, G_TYPE_UINT, G_TYPE_UINT,
315 * RTPSession::send-rtcp:
316 * @session: the object which received the signal
317 * @max_delay: The maximum delay after which the feedback will not be useful
320 * Requests that the #RTPSession initiate a new RTCP packet as soon as
321 * possible within the requested delay.
324 rtp_session_signals[SIGNAL_SEND_RTCP] =
325 g_signal_new ("send-rtcp", G_TYPE_FROM_CLASS (klass),
326 G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
327 G_STRUCT_OFFSET (RTPSessionClass, send_rtcp), NULL, NULL,
328 gst_rtp_bin_marshal_VOID__UINT64, G_TYPE_NONE, 1, G_TYPE_UINT64);
330 g_object_class_install_property (gobject_class, PROP_INTERNAL_SSRC,
331 g_param_spec_uint ("internal-ssrc", "Internal SSRC",
332 "The internal SSRC used for the session",
333 0, G_MAXUINT, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
335 g_object_class_install_property (gobject_class, PROP_INTERNAL_SOURCE,
336 g_param_spec_object ("internal-source", "Internal Source",
337 "The internal source element of the session",
338 RTP_TYPE_SOURCE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
340 g_object_class_install_property (gobject_class, PROP_BANDWIDTH,
341 g_param_spec_double ("bandwidth", "Bandwidth",
342 "The bandwidth of the session (0 for auto-discover)",
343 0.0, G_MAXDOUBLE, DEFAULT_BANDWIDTH,
344 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
346 g_object_class_install_property (gobject_class, PROP_RTCP_FRACTION,
347 g_param_spec_double ("rtcp-fraction", "RTCP Fraction",
348 "The fraction of the bandwidth used for RTCP (or as a real fraction of the RTP bandwidth if < 1)",
349 0.0, G_MAXDOUBLE, DEFAULT_RTCP_FRACTION,
350 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
352 g_object_class_install_property (gobject_class, PROP_RTCP_RR_BANDWIDTH,
353 g_param_spec_int ("rtcp-rr-bandwidth", "RTCP RR bandwidth",
354 "The RTCP bandwidth used for receivers in bytes per second (-1 = default)",
355 -1, G_MAXINT, DEFAULT_RTCP_RR_BANDWIDTH,
356 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
358 g_object_class_install_property (gobject_class, PROP_RTCP_RS_BANDWIDTH,
359 g_param_spec_int ("rtcp-rs-bandwidth", "RTCP RS bandwidth",
360 "The RTCP bandwidth used for senders in bytes per second (-1 = default)",
361 -1, G_MAXINT, DEFAULT_RTCP_RS_BANDWIDTH,
362 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
364 g_object_class_install_property (gobject_class, PROP_RTCP_MTU,
365 g_param_spec_uint ("rtcp-mtu", "RTCP MTU",
366 "The maximum size of the RTCP packets",
367 16, G_MAXINT16, DEFAULT_RTCP_MTU,
368 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
370 g_object_class_install_property (gobject_class, PROP_SDES,
371 g_param_spec_boxed ("sdes", "SDES",
372 "The SDES items of this session",
373 GST_TYPE_STRUCTURE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
375 g_object_class_install_property (gobject_class, PROP_NUM_SOURCES,
376 g_param_spec_uint ("num-sources", "Num Sources",
377 "The number of sources in the session", 0, G_MAXUINT,
378 DEFAULT_NUM_SOURCES, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
380 g_object_class_install_property (gobject_class, PROP_NUM_ACTIVE_SOURCES,
381 g_param_spec_uint ("num-active-sources", "Num Active Sources",
382 "The number of active sources in the session", 0, G_MAXUINT,
383 DEFAULT_NUM_ACTIVE_SOURCES,
384 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
388 * Get a GValue Array of all sources in the session.
391 * <title>Getting the #RTPSources of a session
398 * g_object_get (sess, "sources", &arr, NULL);
400 * for (i = 0; i < arr->n_values; i++) {
403 * val = g_value_array_get_nth (arr, i);
404 * source = g_value_get_object (val);
406 * g_value_array_free (arr);
411 g_object_class_install_property (gobject_class, PROP_SOURCES,
412 g_param_spec_boxed ("sources", "Sources",
413 "An array of all known sources in the session",
414 G_TYPE_VALUE_ARRAY, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
416 g_object_class_install_property (gobject_class, PROP_FAVOR_NEW,
417 g_param_spec_boolean ("favor-new", "Favor new sources",
418 "Resolve SSRC conflict in favor of new sources", FALSE,
419 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
421 g_object_class_install_property (gobject_class, PROP_RTCP_MIN_INTERVAL,
422 g_param_spec_uint64 ("rtcp-min-interval", "Minimum RTCP interval",
423 "Minimum interval between Regular RTCP packet (in ns)",
424 0, G_MAXUINT64, DEFAULT_RTCP_MIN_INTERVAL,
425 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
427 g_object_class_install_property (gobject_class,
428 PROP_RTCP_FEEDBACK_RETENTION_WINDOW,
429 g_param_spec_uint64 ("rtcp-feedback-retention-window",
430 "RTCP Feedback retention window",
431 "Duration during which RTCP Feedback packets are retained (in ns)",
432 0, G_MAXUINT64, DEFAULT_RTCP_FEEDBACK_RETENTION_WINDOW,
433 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
435 g_object_class_install_property (gobject_class,
436 PROP_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD,
437 g_param_spec_uint ("rtcp-immediate-feedback-threshold",
438 "RTCP Immediate Feedback threshold",
439 "The maximum number of members of a RTP session for which immediate"
441 0, G_MAXUINT, DEFAULT_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD,
442 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
444 g_object_class_install_property (gobject_class, PROP_PROBATION,
445 g_param_spec_uint ("probation", "Number of probations",
446 "Consecutive packet sequence numbers to accept the source",
447 0, G_MAXUINT, DEFAULT_PROBATION,
448 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
450 klass->get_source_by_ssrc =
451 GST_DEBUG_FUNCPTR (rtp_session_get_source_by_ssrc);
452 klass->on_sending_rtcp = GST_DEBUG_FUNCPTR (rtp_session_on_sending_rtcp);
453 klass->send_rtcp = GST_DEBUG_FUNCPTR (rtp_session_send_rtcp);
455 GST_DEBUG_CATEGORY_INIT (rtp_session_debug, "rtpsession", 0, "RTP Session");
459 rtp_session_init (RTPSession * sess)
464 g_mutex_init (&sess->lock);
465 sess->key = g_random_int ();
469 for (i = 0; i < 32; i++) {
471 g_hash_table_new_full (NULL, NULL, NULL,
472 (GDestroyNotify) g_object_unref);
474 sess->cnames = g_hash_table_new_full (NULL, NULL, g_free, NULL);
476 rtp_stats_init_defaults (&sess->stats);
478 sess->recalc_bandwidth = TRUE;
479 sess->bandwidth = DEFAULT_BANDWIDTH;
480 sess->rtcp_bandwidth = DEFAULT_RTCP_FRACTION;
481 sess->rtcp_rr_bandwidth = DEFAULT_RTCP_RR_BANDWIDTH;
482 sess->rtcp_rs_bandwidth = DEFAULT_RTCP_RS_BANDWIDTH;
484 /* create an active SSRC for this session manager */
485 sess->source = rtp_session_create_source (sess);
486 sess->source->validated = TRUE;
487 sess->source->internal = TRUE;
488 sess->stats.active_sources++;
489 INIT_AVG (sess->stats.avg_rtcp_packet_size, 100);
490 sess->source->stats.prev_rtcptime = 0;
491 sess->source->stats.last_rtcptime = 1;
493 rtp_stats_set_min_interval (&sess->stats,
494 (gdouble) DEFAULT_RTCP_MIN_INTERVAL / GST_SECOND);
496 /* default UDP header length */
497 sess->header_len = 28;
498 sess->mtu = DEFAULT_RTCP_MTU;
500 sess->probation = DEFAULT_PROBATION;
502 /* some default SDES entries */
504 /* we do not want to leak details like the username or hostname here */
505 str = g_strdup_printf ("user%u@host-%x", g_random_int (), g_random_int ());
506 rtp_source_set_sdes_string (sess->source, GST_RTCP_SDES_CNAME, str);
510 /* we do not want to leak the user's real name here */
511 str = g_strdup_printf ("Anon%u", g_random_int ());
512 rtp_source_set_sdes_string (sess->source, GST_RTCP_SDES_NAME, str);
516 rtp_source_set_sdes_string (sess->source, GST_RTCP_SDES_TOOL, "GStreamer");
518 sess->first_rtcp = TRUE;
519 sess->allow_early = TRUE;
520 sess->rtcp_feedback_retention_window = DEFAULT_RTCP_FEEDBACK_RETENTION_WINDOW;
521 sess->rtcp_immediate_feedback_threshold =
522 DEFAULT_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD;
524 sess->last_keyframe_request = GST_CLOCK_TIME_NONE;
526 GST_DEBUG ("%p: session using SSRC: %08x", sess, sess->source->ssrc);
530 rtp_session_finalize (GObject * object)
535 sess = RTP_SESSION_CAST (object);
537 g_mutex_clear (&sess->lock);
538 for (i = 0; i < 32; i++)
539 g_hash_table_destroy (sess->ssrcs[i]);
541 g_free (sess->bye_reason);
543 g_hash_table_destroy (sess->cnames);
544 g_object_unref (sess->source);
546 G_OBJECT_CLASS (rtp_session_parent_class)->finalize (object);
550 copy_source (gpointer key, RTPSource * source, GValueArray * arr)
552 GValue value = { 0 };
554 g_value_init (&value, RTP_TYPE_SOURCE);
555 g_value_take_object (&value, source);
556 /* copies the value */
557 g_value_array_append (arr, &value);
561 rtp_session_create_sources (RTPSession * sess)
566 RTP_SESSION_LOCK (sess);
567 /* get number of elements in the table */
568 size = g_hash_table_size (sess->ssrcs[sess->mask_idx]);
569 /* create the result value array */
570 res = g_value_array_new (size);
572 /* and copy all values into the array */
573 g_hash_table_foreach (sess->ssrcs[sess->mask_idx], (GHFunc) copy_source, res);
574 RTP_SESSION_UNLOCK (sess);
580 rtp_session_set_property (GObject * object, guint prop_id,
581 const GValue * value, GParamSpec * pspec)
585 sess = RTP_SESSION (object);
588 case PROP_INTERNAL_SSRC:
589 rtp_session_set_internal_ssrc (sess, g_value_get_uint (value));
592 sess->bandwidth = g_value_get_double (value);
593 sess->recalc_bandwidth = TRUE;
595 case PROP_RTCP_FRACTION:
596 sess->rtcp_bandwidth = g_value_get_double (value);
597 sess->recalc_bandwidth = TRUE;
599 case PROP_RTCP_RR_BANDWIDTH:
600 sess->rtcp_rr_bandwidth = g_value_get_int (value);
601 sess->recalc_bandwidth = TRUE;
603 case PROP_RTCP_RS_BANDWIDTH:
604 sess->rtcp_rs_bandwidth = g_value_get_int (value);
605 sess->recalc_bandwidth = TRUE;
608 sess->mtu = g_value_get_uint (value);
611 rtp_session_set_sdes_struct (sess, g_value_get_boxed (value));
614 sess->favor_new = g_value_get_boolean (value);
616 case PROP_RTCP_MIN_INTERVAL:
617 rtp_stats_set_min_interval (&sess->stats,
618 (gdouble) g_value_get_uint64 (value) / GST_SECOND);
619 /* trigger reconsideration */
620 RTP_SESSION_LOCK (sess);
621 sess->next_rtcp_check_time = 0;
622 RTP_SESSION_UNLOCK (sess);
623 if (sess->callbacks.reconsider)
624 sess->callbacks.reconsider (sess, sess->reconsider_user_data);
626 case PROP_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD:
627 sess->rtcp_immediate_feedback_threshold = g_value_get_uint (value);
630 sess->probation = g_value_get_uint (value);
631 g_object_set_property (G_OBJECT (sess->source), "probation", value);
634 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
640 rtp_session_get_property (GObject * object, guint prop_id,
641 GValue * value, GParamSpec * pspec)
645 sess = RTP_SESSION (object);
648 case PROP_INTERNAL_SSRC:
649 g_value_set_uint (value, rtp_session_get_internal_ssrc (sess));
651 case PROP_INTERNAL_SOURCE:
652 g_value_take_object (value, rtp_session_get_internal_source (sess));
655 g_value_set_double (value, sess->bandwidth);
657 case PROP_RTCP_FRACTION:
658 g_value_set_double (value, sess->rtcp_bandwidth);
660 case PROP_RTCP_RR_BANDWIDTH:
661 g_value_set_int (value, sess->rtcp_rr_bandwidth);
663 case PROP_RTCP_RS_BANDWIDTH:
664 g_value_set_int (value, sess->rtcp_rs_bandwidth);
667 g_value_set_uint (value, sess->mtu);
670 g_value_take_boxed (value, rtp_session_get_sdes_struct (sess));
672 case PROP_NUM_SOURCES:
673 g_value_set_uint (value, rtp_session_get_num_sources (sess));
675 case PROP_NUM_ACTIVE_SOURCES:
676 g_value_set_uint (value, rtp_session_get_num_active_sources (sess));
679 g_value_take_boxed (value, rtp_session_create_sources (sess));
682 g_value_set_boolean (value, sess->favor_new);
684 case PROP_RTCP_MIN_INTERVAL:
685 g_value_set_uint64 (value, sess->stats.min_interval * GST_SECOND);
687 case PROP_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD:
688 g_value_set_uint (value, sess->rtcp_immediate_feedback_threshold);
691 g_value_set_uint (value, sess->probation);
692 g_object_get_property (G_OBJECT (sess->source), "probation", value);
695 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
701 on_new_ssrc (RTPSession * sess, RTPSource * source)
703 g_object_ref (source);
704 RTP_SESSION_UNLOCK (sess);
705 g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_NEW_SSRC], 0, source);
706 RTP_SESSION_LOCK (sess);
707 g_object_unref (source);
711 on_ssrc_collision (RTPSession * sess, RTPSource * source)
713 g_object_ref (source);
714 RTP_SESSION_UNLOCK (sess);
715 g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_COLLISION], 0,
717 RTP_SESSION_LOCK (sess);
718 g_object_unref (source);
722 on_ssrc_validated (RTPSession * sess, RTPSource * source)
724 g_object_ref (source);
725 RTP_SESSION_UNLOCK (sess);
726 g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_VALIDATED], 0,
728 RTP_SESSION_LOCK (sess);
729 g_object_unref (source);
733 on_ssrc_active (RTPSession * sess, RTPSource * source)
735 g_object_ref (source);
736 RTP_SESSION_UNLOCK (sess);
737 g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_ACTIVE], 0, source);
738 RTP_SESSION_LOCK (sess);
739 g_object_unref (source);
743 on_ssrc_sdes (RTPSession * sess, RTPSource * source)
745 g_object_ref (source);
746 GST_DEBUG ("SDES changed for SSRC %08x", source->ssrc);
747 RTP_SESSION_UNLOCK (sess);
748 g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_SDES], 0, source);
749 RTP_SESSION_LOCK (sess);
750 g_object_unref (source);
754 on_bye_ssrc (RTPSession * sess, RTPSource * source)
756 g_object_ref (source);
757 RTP_SESSION_UNLOCK (sess);
758 g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_BYE_SSRC], 0, source);
759 RTP_SESSION_LOCK (sess);
760 g_object_unref (source);
764 on_bye_timeout (RTPSession * sess, RTPSource * source)
766 g_object_ref (source);
767 RTP_SESSION_UNLOCK (sess);
768 g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_BYE_TIMEOUT], 0, source);
769 RTP_SESSION_LOCK (sess);
770 g_object_unref (source);
774 on_timeout (RTPSession * sess, RTPSource * source)
776 g_object_ref (source);
777 RTP_SESSION_UNLOCK (sess);
778 g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_TIMEOUT], 0, source);
779 RTP_SESSION_LOCK (sess);
780 g_object_unref (source);
784 on_sender_timeout (RTPSession * sess, RTPSource * source)
786 g_object_ref (source);
787 RTP_SESSION_UNLOCK (sess);
788 g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SENDER_TIMEOUT], 0,
790 RTP_SESSION_LOCK (sess);
791 g_object_unref (source);
797 * Create a new session object.
799 * Returns: a new #RTPSession. g_object_unref() after usage.
802 rtp_session_new (void)
806 sess = g_object_new (RTP_TYPE_SESSION, NULL);
812 * rtp_session_set_callbacks:
813 * @sess: an #RTPSession
814 * @callbacks: callbacks to configure
815 * @user_data: user data passed in the callbacks
817 * Configure a set of callbacks to be notified of actions.
820 rtp_session_set_callbacks (RTPSession * sess, RTPSessionCallbacks * callbacks,
823 g_return_if_fail (RTP_IS_SESSION (sess));
825 if (callbacks->process_rtp) {
826 sess->callbacks.process_rtp = callbacks->process_rtp;
827 sess->process_rtp_user_data = user_data;
829 if (callbacks->send_rtp) {
830 sess->callbacks.send_rtp = callbacks->send_rtp;
831 sess->send_rtp_user_data = user_data;
833 if (callbacks->send_rtcp) {
834 sess->callbacks.send_rtcp = callbacks->send_rtcp;
835 sess->send_rtcp_user_data = user_data;
837 if (callbacks->sync_rtcp) {
838 sess->callbacks.sync_rtcp = callbacks->sync_rtcp;
839 sess->sync_rtcp_user_data = user_data;
841 if (callbacks->clock_rate) {
842 sess->callbacks.clock_rate = callbacks->clock_rate;
843 sess->clock_rate_user_data = user_data;
845 if (callbacks->reconsider) {
846 sess->callbacks.reconsider = callbacks->reconsider;
847 sess->reconsider_user_data = user_data;
849 if (callbacks->request_key_unit) {
850 sess->callbacks.request_key_unit = callbacks->request_key_unit;
851 sess->request_key_unit_user_data = user_data;
853 if (callbacks->request_time) {
854 sess->callbacks.request_time = callbacks->request_time;
855 sess->request_time_user_data = user_data;
860 * rtp_session_set_process_rtp_callback:
861 * @sess: an #RTPSession
862 * @callback: callback to set
863 * @user_data: user data passed in the callback
865 * Configure only the process_rtp callback to be notified of the process_rtp action.
868 rtp_session_set_process_rtp_callback (RTPSession * sess,
869 RTPSessionProcessRTP callback, gpointer user_data)
871 g_return_if_fail (RTP_IS_SESSION (sess));
873 sess->callbacks.process_rtp = callback;
874 sess->process_rtp_user_data = user_data;
878 * rtp_session_set_send_rtp_callback:
879 * @sess: an #RTPSession
880 * @callback: callback to set
881 * @user_data: user data passed in the callback
883 * Configure only the send_rtp callback to be notified of the send_rtp action.
886 rtp_session_set_send_rtp_callback (RTPSession * sess,
887 RTPSessionSendRTP callback, gpointer user_data)
889 g_return_if_fail (RTP_IS_SESSION (sess));
891 sess->callbacks.send_rtp = callback;
892 sess->send_rtp_user_data = user_data;
896 * rtp_session_set_send_rtcp_callback:
897 * @sess: an #RTPSession
898 * @callback: callback to set
899 * @user_data: user data passed in the callback
901 * Configure only the send_rtcp callback to be notified of the send_rtcp action.
904 rtp_session_set_send_rtcp_callback (RTPSession * sess,
905 RTPSessionSendRTCP callback, gpointer user_data)
907 g_return_if_fail (RTP_IS_SESSION (sess));
909 sess->callbacks.send_rtcp = callback;
910 sess->send_rtcp_user_data = user_data;
914 * rtp_session_set_sync_rtcp_callback:
915 * @sess: an #RTPSession
916 * @callback: callback to set
917 * @user_data: user data passed in the callback
919 * Configure only the sync_rtcp callback to be notified of the sync_rtcp action.
922 rtp_session_set_sync_rtcp_callback (RTPSession * sess,
923 RTPSessionSyncRTCP callback, gpointer user_data)
925 g_return_if_fail (RTP_IS_SESSION (sess));
927 sess->callbacks.sync_rtcp = callback;
928 sess->sync_rtcp_user_data = user_data;
932 * rtp_session_set_clock_rate_callback:
933 * @sess: an #RTPSession
934 * @callback: callback to set
935 * @user_data: user data passed in the callback
937 * Configure only the clock_rate callback to be notified of the clock_rate action.
940 rtp_session_set_clock_rate_callback (RTPSession * sess,
941 RTPSessionClockRate callback, gpointer user_data)
943 g_return_if_fail (RTP_IS_SESSION (sess));
945 sess->callbacks.clock_rate = callback;
946 sess->clock_rate_user_data = user_data;
950 * rtp_session_set_reconsider_callback:
951 * @sess: an #RTPSession
952 * @callback: callback to set
953 * @user_data: user data passed in the callback
955 * Configure only the reconsider callback to be notified of the reconsider action.
958 rtp_session_set_reconsider_callback (RTPSession * sess,
959 RTPSessionReconsider callback, gpointer user_data)
961 g_return_if_fail (RTP_IS_SESSION (sess));
963 sess->callbacks.reconsider = callback;
964 sess->reconsider_user_data = user_data;
968 * rtp_session_set_request_time_callback:
969 * @sess: an #RTPSession
970 * @callback: callback to set
971 * @user_data: user data passed in the callback
973 * Configure only the request_time callback
976 rtp_session_set_request_time_callback (RTPSession * sess,
977 RTPSessionRequestTime callback, gpointer user_data)
979 g_return_if_fail (RTP_IS_SESSION (sess));
981 sess->callbacks.request_time = callback;
982 sess->request_time_user_data = user_data;
986 * rtp_session_set_bandwidth:
987 * @sess: an #RTPSession
988 * @bandwidth: the bandwidth allocated
990 * Set the session bandwidth in bytes per second.
993 rtp_session_set_bandwidth (RTPSession * sess, gdouble bandwidth)
995 g_return_if_fail (RTP_IS_SESSION (sess));
997 RTP_SESSION_LOCK (sess);
998 sess->stats.bandwidth = bandwidth;
999 RTP_SESSION_UNLOCK (sess);
1003 * rtp_session_get_bandwidth:
1004 * @sess: an #RTPSession
1006 * Get the session bandwidth.
1008 * Returns: the session bandwidth.
1011 rtp_session_get_bandwidth (RTPSession * sess)
1015 g_return_val_if_fail (RTP_IS_SESSION (sess), 0);
1017 RTP_SESSION_LOCK (sess);
1018 result = sess->stats.bandwidth;
1019 RTP_SESSION_UNLOCK (sess);
1025 * rtp_session_set_rtcp_fraction:
1026 * @sess: an #RTPSession
1027 * @bandwidth: the RTCP bandwidth
1029 * Set the bandwidth in bytes per second that should be used for RTCP
1033 rtp_session_set_rtcp_fraction (RTPSession * sess, gdouble bandwidth)
1035 g_return_if_fail (RTP_IS_SESSION (sess));
1037 RTP_SESSION_LOCK (sess);
1038 sess->stats.rtcp_bandwidth = bandwidth;
1039 RTP_SESSION_UNLOCK (sess);
1043 * rtp_session_get_rtcp_fraction:
1044 * @sess: an #RTPSession
1046 * Get the session bandwidth used for RTCP.
1048 * Returns: The bandwidth used for RTCP messages.
1051 rtp_session_get_rtcp_fraction (RTPSession * sess)
1055 g_return_val_if_fail (RTP_IS_SESSION (sess), 0.0);
1057 RTP_SESSION_LOCK (sess);
1058 result = sess->stats.rtcp_bandwidth;
1059 RTP_SESSION_UNLOCK (sess);
1065 * rtp_session_set_sdes_string:
1066 * @sess: an #RTPSession
1067 * @type: the type of the SDES item
1068 * @item: a null-terminated string to set.
1070 * Store an SDES item of @type in @sess.
1072 * Returns: %FALSE if the data was unchanged @type is invalid.
1075 rtp_session_set_sdes_string (RTPSession * sess, GstRTCPSDESType type,
1080 g_return_val_if_fail (RTP_IS_SESSION (sess), FALSE);
1082 RTP_SESSION_LOCK (sess);
1083 result = rtp_source_set_sdes_string (sess->source, type, item);
1084 RTP_SESSION_UNLOCK (sess);
1090 * rtp_session_get_sdes_string:
1091 * @sess: an #RTPSession
1092 * @type: the type of the SDES item
1094 * Get the SDES item of @type from @sess.
1096 * Returns: a null-terminated copy of the SDES item or NULL when @type was not
1097 * valid. g_free() after usage.
1100 rtp_session_get_sdes_string (RTPSession * sess, GstRTCPSDESType type)
1104 g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
1106 RTP_SESSION_LOCK (sess);
1107 result = rtp_source_get_sdes_string (sess->source, type);
1108 RTP_SESSION_UNLOCK (sess);
1114 * rtp_session_get_sdes_struct:
1115 * @sess: an #RTSPSession
1117 * Get the SDES data as a #GstStructure
1119 * Returns: a GstStructure with SDES items for @sess. This function returns a
1120 * copy of the SDES structure, use gst_structure_free() after usage.
1123 rtp_session_get_sdes_struct (RTPSession * sess)
1125 const GstStructure *sdes;
1126 GstStructure *result = NULL;
1128 g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
1130 RTP_SESSION_LOCK (sess);
1131 sdes = rtp_source_get_sdes_struct (sess->source);
1133 result = gst_structure_copy (sdes);
1134 RTP_SESSION_UNLOCK (sess);
1140 * rtp_session_set_sdes_struct:
1141 * @sess: an #RTSPSession
1142 * @sdes: a #GstStructure
1144 * Set the SDES data as a #GstStructure. This function makes a copy of @sdes.
1147 rtp_session_set_sdes_struct (RTPSession * sess, const GstStructure * sdes)
1149 g_return_if_fail (sdes);
1150 g_return_if_fail (RTP_IS_SESSION (sess));
1152 RTP_SESSION_LOCK (sess);
1153 rtp_source_set_sdes_struct (sess->source, gst_structure_copy (sdes));
1154 RTP_SESSION_UNLOCK (sess);
1157 static GstFlowReturn
1158 source_push_rtp (RTPSource * source, gpointer data, RTPSession * session)
1160 GstFlowReturn result = GST_FLOW_OK;
1162 if (source == session->source) {
1163 GST_LOG ("source %08x pushed sender RTP packet", source->ssrc);
1165 RTP_SESSION_UNLOCK (session);
1167 if (session->callbacks.send_rtp)
1169 session->callbacks.send_rtp (session, source, data,
1170 session->send_rtp_user_data);
1172 gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
1175 GST_LOG ("source %08x pushed receiver RTP packet", source->ssrc);
1176 RTP_SESSION_UNLOCK (session);
1178 if (session->callbacks.process_rtp)
1180 session->callbacks.process_rtp (session, source,
1181 GST_BUFFER_CAST (data), session->process_rtp_user_data);
1183 gst_buffer_unref (GST_BUFFER_CAST (data));
1185 RTP_SESSION_LOCK (session);
1191 source_clock_rate (RTPSource * source, guint8 pt, RTPSession * session)
1195 RTP_SESSION_UNLOCK (session);
1197 if (session->callbacks.clock_rate)
1199 session->callbacks.clock_rate (session, pt,
1200 session->clock_rate_user_data);
1204 RTP_SESSION_LOCK (session);
1206 GST_DEBUG ("got clock-rate %d for pt %d", result, pt);
1211 static RTPSourceCallbacks callbacks = {
1212 (RTPSourcePushRTP) source_push_rtp,
1213 (RTPSourceClockRate) source_clock_rate,
1217 check_collision (RTPSession * sess, RTPSource * source,
1218 RTPArrivalStats * arrival, gboolean rtp)
1220 /* If we have no arrival address, we can't do collision checking */
1221 if (!arrival->address)
1224 if (sess->source != source) {
1225 GSocketAddress *from;
1227 /* This is not our local source, but lets check if two remote
1232 from = source->rtp_from;
1234 from = source->rtcp_from;
1238 if (__g_socket_address_equal (from, arrival->address)) {
1239 /* Address is the same */
1242 GST_LOG ("we have a third-party collision or loop ssrc:%x",
1243 rtp_source_get_ssrc (source));
1244 if (sess->favor_new) {
1245 if (rtp_source_find_conflicting_address (source,
1246 arrival->address, arrival->current_time)) {
1249 buf1 = __g_socket_address_to_string (arrival->address);
1250 GST_LOG ("Known conflict on %x for %s, dropping packet",
1251 rtp_source_get_ssrc (source), buf1);
1258 /* Current address is not a known conflict, lets assume this is
1259 * a new source. Save old address in possible conflict list
1261 rtp_source_add_conflicting_address (source, from,
1262 arrival->current_time);
1264 buf1 = __g_socket_address_to_string (from);
1265 buf2 = __g_socket_address_to_string (arrival->address);
1267 GST_DEBUG ("New conflict for ssrc %x, replacing %s with %s,"
1268 " saving old as known conflict",
1269 rtp_source_get_ssrc (source), buf1, buf2);
1272 rtp_source_set_rtp_from (source, arrival->address);
1274 rtp_source_set_rtcp_from (source, arrival->address);
1282 /* Don't need to save old addresses, we ignore new sources */
1287 /* We don't already have a from address for RTP, just set it */
1289 rtp_source_set_rtp_from (source, arrival->address);
1291 rtp_source_set_rtcp_from (source, arrival->address);
1295 /* FIXME: Log 3rd party collision somehow
1296 * Maybe should be done in upper layer, only the SDES can tell us
1297 * if its a collision or a loop
1300 /* If the source has been inactive for some time, we assume that it has
1301 * simply changed its transport source address. Hence, there is no true
1302 * third-party collision - only a simulated one. */
1303 if (arrival->current_time > source->last_activity) {
1304 GstClockTime inactivity_period =
1305 arrival->current_time - source->last_activity;
1306 if (inactivity_period > 1 * GST_SECOND) {
1307 /* Use new network address */
1309 g_assert (source->rtp_from);
1310 rtp_source_set_rtp_from (source, arrival->address);
1312 g_assert (source->rtcp_from);
1313 rtp_source_set_rtcp_from (source, arrival->address);
1319 /* This is sending with our ssrc, is it an address we already know */
1321 if (rtp_source_find_conflicting_address (source, arrival->address,
1322 arrival->current_time)) {
1323 /* Its a known conflict, its probably a loop, not a collision
1324 * lets just drop the incoming packet
1326 GST_DEBUG ("Our packets are being looped back to us, dropping");
1328 /* Its a new collision, lets change our SSRC */
1330 rtp_source_add_conflicting_address (source, arrival->address,
1331 arrival->current_time);
1333 GST_DEBUG ("Collision for SSRC %x", rtp_source_get_ssrc (source));
1334 on_ssrc_collision (sess, source);
1336 rtp_session_schedule_bye_locked (sess, "SSRC Collision",
1337 arrival->current_time);
1339 sess->change_ssrc = TRUE;
1347 /* must be called with the session lock, the returned source needs to be
1348 * unreffed after usage. */
1350 obtain_source (RTPSession * sess, guint32 ssrc, gboolean * created,
1351 RTPArrivalStats * arrival, gboolean rtp)
1356 g_hash_table_lookup (sess->ssrcs[sess->mask_idx], GINT_TO_POINTER (ssrc));
1357 if (source == NULL) {
1358 /* make new Source in probation and insert */
1359 source = rtp_source_new (ssrc);
1361 /* for RTP packets we need to set the source in probation. Receiving RTCP
1362 * packets of an SSRC, on the other hand, is a strong indication that we
1363 * are dealing with a valid source. */
1365 g_object_set (source, "probation", sess->probation, NULL);
1367 g_object_set (source, "probation", 0, NULL);
1369 /* store from address, if any */
1370 if (arrival->address) {
1372 rtp_source_set_rtp_from (source, arrival->address);
1374 rtp_source_set_rtcp_from (source, arrival->address);
1377 /* configure a callback on the source */
1378 rtp_source_set_callbacks (source, &callbacks, sess);
1380 g_hash_table_insert (sess->ssrcs[sess->mask_idx], GINT_TO_POINTER (ssrc),
1383 /* we have one more source now */
1384 sess->total_sources++;
1388 /* check for collision, this updates the address when not previously set */
1389 if (check_collision (sess, source, arrival, rtp)) {
1392 /* Receiving RTCP packets of an SSRC is a strong indication that we
1393 * are dealing with a valid source. */
1395 g_object_set (source, "probation", 0, NULL);
1397 /* update last activity */
1398 source->last_activity = arrival->current_time;
1400 source->last_rtp_activity = arrival->current_time;
1401 g_object_ref (source);
1407 * rtp_session_get_internal_source:
1408 * @sess: a #RTPSession
1410 * Get the internal #RTPSource of @sess.
1412 * Returns: The internal #RTPSource. g_object_unref() after usage.
1415 rtp_session_get_internal_source (RTPSession * sess)
1419 g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
1421 result = g_object_ref (sess->source);
1427 * rtp_session_set_internal_ssrc:
1428 * @sess: a #RTPSession
1431 * Set the SSRC of @sess to @ssrc.
1434 rtp_session_set_internal_ssrc (RTPSession * sess, guint32 ssrc)
1436 RTP_SESSION_LOCK (sess);
1437 if (ssrc != sess->source->ssrc) {
1438 g_hash_table_steal (sess->ssrcs[sess->mask_idx],
1439 GINT_TO_POINTER (sess->source->ssrc));
1441 GST_DEBUG ("setting internal SSRC to %08x", ssrc);
1442 /* After this call, any receiver of the old SSRC either in RTP or RTCP
1443 * packets will timeout on the old SSRC, we could potentially schedule a
1444 * BYE RTCP for the old SSRC... */
1445 sess->source->ssrc = ssrc;
1446 rtp_source_reset (sess->source);
1448 /* rehash with the new SSRC */
1449 g_hash_table_insert (sess->ssrcs[sess->mask_idx],
1450 GINT_TO_POINTER (sess->source->ssrc), sess->source);
1452 RTP_SESSION_UNLOCK (sess);
1454 g_object_notify (G_OBJECT (sess), "internal-ssrc");
1458 * rtp_session_get_internal_ssrc:
1459 * @sess: a #RTPSession
1461 * Get the internal SSRC of @sess.
1463 * Returns: The SSRC of the session.
1466 rtp_session_get_internal_ssrc (RTPSession * sess)
1470 RTP_SESSION_LOCK (sess);
1471 ssrc = sess->source->ssrc;
1472 RTP_SESSION_UNLOCK (sess);
1478 * rtp_session_add_source:
1479 * @sess: a #RTPSession
1480 * @src: #RTPSource to add
1482 * Add @src to @session.
1484 * Returns: %TRUE on success, %FALSE if a source with the same SSRC already
1485 * existed in the session.
1488 rtp_session_add_source (RTPSession * sess, RTPSource * src)
1490 gboolean result = FALSE;
1493 g_return_val_if_fail (RTP_IS_SESSION (sess), FALSE);
1494 g_return_val_if_fail (src != NULL, FALSE);
1496 RTP_SESSION_LOCK (sess);
1498 g_hash_table_lookup (sess->ssrcs[sess->mask_idx],
1499 GINT_TO_POINTER (src->ssrc));
1501 g_hash_table_insert (sess->ssrcs[sess->mask_idx],
1502 GINT_TO_POINTER (src->ssrc), src);
1503 /* we have one more source now */
1504 sess->total_sources++;
1507 RTP_SESSION_UNLOCK (sess);
1513 * rtp_session_get_num_sources:
1514 * @sess: an #RTPSession
1516 * Get the number of sources in @sess.
1518 * Returns: The number of sources in @sess.
1521 rtp_session_get_num_sources (RTPSession * sess)
1525 g_return_val_if_fail (RTP_IS_SESSION (sess), FALSE);
1527 RTP_SESSION_LOCK (sess);
1528 result = sess->total_sources;
1529 RTP_SESSION_UNLOCK (sess);
1535 * rtp_session_get_num_active_sources:
1536 * @sess: an #RTPSession
1538 * Get the number of active sources in @sess. A source is considered active when
1539 * it has been validated and has not yet received a BYE RTCP message.
1541 * Returns: The number of active sources in @sess.
1544 rtp_session_get_num_active_sources (RTPSession * sess)
1548 g_return_val_if_fail (RTP_IS_SESSION (sess), 0);
1550 RTP_SESSION_LOCK (sess);
1551 result = sess->stats.active_sources;
1552 RTP_SESSION_UNLOCK (sess);
1558 * rtp_session_get_source_by_ssrc:
1559 * @sess: an #RTPSession
1562 * Find the source with @ssrc in @sess.
1564 * Returns: a #RTPSource with SSRC @ssrc or NULL if the source was not found.
1565 * g_object_unref() after usage.
1568 rtp_session_get_source_by_ssrc (RTPSession * sess, guint32 ssrc)
1572 g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
1574 RTP_SESSION_LOCK (sess);
1576 g_hash_table_lookup (sess->ssrcs[sess->mask_idx], GINT_TO_POINTER (ssrc));
1578 g_object_ref (result);
1579 RTP_SESSION_UNLOCK (sess);
1585 * rtp_session_get_source_by_cname:
1586 * @sess: a #RTPSession
1589 * Find the source with @cname in @sess.
1591 * Returns: a #RTPSource with CNAME @cname or NULL if the source was not found.
1592 * g_object_unref() after usage.
1595 rtp_session_get_source_by_cname (RTPSession * sess, const gchar * cname)
1599 g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
1600 g_return_val_if_fail (cname != NULL, NULL);
1602 RTP_SESSION_LOCK (sess);
1603 result = g_hash_table_lookup (sess->cnames, cname);
1605 g_object_ref (result);
1606 RTP_SESSION_UNLOCK (sess);
1611 /* should be called with the SESSION lock */
1613 rtp_session_create_new_ssrc (RTPSession * sess)
1618 ssrc = g_random_int ();
1620 /* see if it exists in the session, we're done if it doesn't */
1621 if (g_hash_table_lookup (sess->ssrcs[sess->mask_idx],
1622 GINT_TO_POINTER (ssrc)) == NULL)
1630 * rtp_session_create_source:
1631 * @sess: an #RTPSession
1633 * Create an #RTPSource for use in @sess. This function will create a source
1634 * with an ssrc that is currently not used by any participants in the session.
1636 * Returns: an #RTPSource.
1639 rtp_session_create_source (RTPSession * sess)
1644 RTP_SESSION_LOCK (sess);
1645 ssrc = rtp_session_create_new_ssrc (sess);
1646 source = rtp_source_new (ssrc);
1647 rtp_source_set_callbacks (source, &callbacks, sess);
1648 /* we need an additional ref for the source in the hashtable */
1649 g_object_ref (source);
1650 g_hash_table_insert (sess->ssrcs[sess->mask_idx], GINT_TO_POINTER (ssrc),
1652 /* we have one more source now */
1653 sess->total_sources++;
1654 RTP_SESSION_UNLOCK (sess);
1659 /* update the RTPArrivalStats structure with the current time and other bits
1660 * about the current buffer we are handling.
1661 * This function is typically called when a validated packet is received.
1662 * This function should be called with the SESSION_LOCK
1665 update_arrival_stats (RTPSession * sess, RTPArrivalStats * arrival,
1666 gboolean rtp, GstBuffer * buffer, GstClockTime current_time,
1667 GstClockTime running_time, guint64 ntpnstime)
1669 GstNetAddressMeta *meta;
1670 GstRTPBuffer rtpb = { NULL };
1672 /* get time of arrival */
1673 arrival->current_time = current_time;
1674 arrival->running_time = running_time;
1675 arrival->ntpnstime = ntpnstime;
1677 /* get packet size including header overhead */
1678 arrival->bytes = gst_buffer_get_size (buffer) + sess->header_len;
1681 gst_rtp_buffer_map (buffer, GST_MAP_READ, &rtpb);
1682 arrival->payload_len = gst_rtp_buffer_get_payload_len (&rtpb);
1683 gst_rtp_buffer_unmap (&rtpb);
1685 arrival->payload_len = 0;
1688 /* for netbuffer we can store the IP address to check for collisions */
1689 meta = gst_buffer_get_net_address_meta (buffer);
1690 if (arrival->address)
1691 g_object_unref (arrival->address);
1693 arrival->address = G_SOCKET_ADDRESS (g_object_ref (meta->addr));
1695 arrival->address = NULL;
1700 clean_arrival_stats (RTPArrivalStats * arrival)
1702 if (arrival->address)
1703 g_object_unref (arrival->address);
1707 * rtp_session_process_rtp:
1708 * @sess: and #RTPSession
1709 * @buffer: an RTP buffer
1710 * @current_time: the current system time
1711 * @running_time: the running_time of @buffer
1713 * Process an RTP buffer in the session manager. This function takes ownership
1716 * Returns: a #GstFlowReturn.
1719 rtp_session_process_rtp (RTPSession * sess, GstBuffer * buffer,
1720 GstClockTime current_time, GstClockTime running_time)
1722 GstFlowReturn result;
1726 gboolean prevsender, prevactive;
1727 RTPArrivalStats arrival = { NULL, };
1731 GstRTPBuffer rtp = { NULL };
1733 g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
1734 g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
1736 if (!gst_rtp_buffer_map (buffer, GST_MAP_READ, &rtp))
1737 goto invalid_packet;
1739 RTP_SESSION_LOCK (sess);
1740 /* ignore more RTP packets when we left the session */
1741 if (sess->source->received_bye)
1744 /* update arrival stats */
1745 update_arrival_stats (sess, &arrival, TRUE, buffer, current_time,
1748 /* get SSRC and look up in session database */
1749 ssrc = gst_rtp_buffer_get_ssrc (&rtp);
1750 source = obtain_source (sess, ssrc, &created, &arrival, TRUE);
1754 /* copy available csrc for later */
1755 count = gst_rtp_buffer_get_csrc_count (&rtp);
1756 /* make sure to not overflow our array. An RTP buffer can maximally contain
1758 count = MIN (count, 16);
1760 for (i = 0; i < count; i++)
1761 csrcs[i] = gst_rtp_buffer_get_csrc (&rtp, i);
1763 gst_rtp_buffer_unmap (&rtp);
1765 prevsender = RTP_SOURCE_IS_SENDER (source);
1766 prevactive = RTP_SOURCE_IS_ACTIVE (source);
1767 oldrate = source->bitrate;
1769 /* let source process the packet */
1770 result = rtp_source_process_rtp (source, buffer, &arrival);
1772 /* source became active */
1773 if (prevactive != RTP_SOURCE_IS_ACTIVE (source)) {
1774 sess->stats.active_sources++;
1775 GST_DEBUG ("source: %08x became active, %d active sources", ssrc,
1776 sess->stats.active_sources);
1777 on_ssrc_validated (sess, source);
1779 if (prevsender != RTP_SOURCE_IS_SENDER (source)) {
1780 sess->stats.sender_sources++;
1781 GST_DEBUG ("source: %08x became sender, %d sender sources", ssrc,
1782 sess->stats.sender_sources);
1784 if (oldrate != source->bitrate)
1785 sess->recalc_bandwidth = TRUE;
1788 on_new_ssrc (sess, source);
1790 if (source->validated) {
1793 /* for validated sources, we add the CSRCs as well */
1794 for (i = 0; i < count; i++) {
1796 RTPSource *csrc_src;
1801 csrc_src = obtain_source (sess, csrc, &created, &arrival, TRUE);
1806 GST_DEBUG ("created new CSRC: %08x", csrc);
1807 rtp_source_set_as_csrc (csrc_src);
1808 if (RTP_SOURCE_IS_ACTIVE (csrc_src))
1809 sess->stats.active_sources++;
1810 on_new_ssrc (sess, csrc_src);
1812 g_object_unref (csrc_src);
1815 g_object_unref (source);
1817 RTP_SESSION_UNLOCK (sess);
1819 clean_arrival_stats (&arrival);
1826 gst_buffer_unref (buffer);
1827 GST_DEBUG ("invalid RTP packet received");
1832 RTP_SESSION_UNLOCK (sess);
1833 gst_rtp_buffer_unmap (&rtp);
1834 gst_buffer_unref (buffer);
1835 GST_DEBUG ("ignoring RTP packet because we are leaving");
1840 RTP_SESSION_UNLOCK (sess);
1841 gst_rtp_buffer_unmap (&rtp);
1842 gst_buffer_unref (buffer);
1843 clean_arrival_stats (&arrival);
1844 GST_DEBUG ("ignoring packet because its collisioning");
1850 rtp_session_process_rb (RTPSession * sess, RTPSource * source,
1851 GstRTCPPacket * packet, RTPArrivalStats * arrival)
1855 count = gst_rtcp_packet_get_rb_count (packet);
1856 for (i = 0; i < count; i++) {
1857 guint32 ssrc, exthighestseq, jitter, lsr, dlsr;
1858 guint8 fractionlost;
1861 gst_rtcp_packet_get_rb (packet, i, &ssrc, &fractionlost,
1862 &packetslost, &exthighestseq, &jitter, &lsr, &dlsr);
1864 GST_DEBUG ("RB %d: SSRC %08x, jitter %" G_GUINT32_FORMAT, i, ssrc, jitter);
1866 if (ssrc == sess->source->ssrc) {
1867 /* only deal with report blocks for our session, we update the stats of
1868 * the sender of the RTCP message. We could also compare our stats against
1869 * the other sender to see if we are better or worse. */
1870 rtp_source_process_rb (source, arrival->ntpnstime, fractionlost,
1871 packetslost, exthighestseq, jitter, lsr, dlsr);
1874 on_ssrc_active (sess, source);
1877 /* A Sender report contains statistics about how the sender is doing. This
1878 * includes timing informataion such as the relation between RTP and NTP
1879 * timestamps and the number of packets/bytes it sent to us.
1881 * In this report is also included a set of report blocks related to how this
1882 * sender is receiving data (in case we (or somebody else) is also sending stuff
1883 * to it). This info includes the packet loss, jitter and seqnum. It also
1884 * contains information to calculate the round trip time (LSR/DLSR).
1887 rtp_session_process_sr (RTPSession * sess, GstRTCPPacket * packet,
1888 RTPArrivalStats * arrival, gboolean * do_sync)
1890 guint32 senderssrc, rtptime, packet_count, octet_count;
1893 gboolean created, prevsender;
1895 gst_rtcp_packet_sr_get_sender_info (packet, &senderssrc, &ntptime, &rtptime,
1896 &packet_count, &octet_count);
1898 GST_DEBUG ("got SR packet: SSRC %08x, time %" GST_TIME_FORMAT,
1899 senderssrc, GST_TIME_ARGS (arrival->current_time));
1901 source = obtain_source (sess, senderssrc, &created, arrival, FALSE);
1905 /* don't try to do lip-sync for sources that sent a BYE */
1906 if (rtp_source_received_bye (source))
1911 prevsender = RTP_SOURCE_IS_SENDER (source);
1913 /* first update the source */
1914 rtp_source_process_sr (source, arrival->current_time, ntptime, rtptime,
1915 packet_count, octet_count);
1917 if (prevsender != RTP_SOURCE_IS_SENDER (source)) {
1918 sess->stats.sender_sources++;
1919 GST_DEBUG ("source: %08x became sender, %d sender sources", senderssrc,
1920 sess->stats.sender_sources);
1924 on_new_ssrc (sess, source);
1926 rtp_session_process_rb (sess, source, packet, arrival);
1927 g_object_unref (source);
1930 /* A receiver report contains statistics about how a receiver is doing. It
1931 * includes stuff like packet loss, jitter and the seqnum it received last. It
1932 * also contains info to calculate the round trip time.
1934 * We are only interested in how the sender of this report is doing wrt to us.
1937 rtp_session_process_rr (RTPSession * sess, GstRTCPPacket * packet,
1938 RTPArrivalStats * arrival)
1944 senderssrc = gst_rtcp_packet_rr_get_ssrc (packet);
1946 GST_DEBUG ("got RR packet: SSRC %08x", senderssrc);
1948 source = obtain_source (sess, senderssrc, &created, arrival, FALSE);
1953 on_new_ssrc (sess, source);
1955 rtp_session_process_rb (sess, source, packet, arrival);
1956 g_object_unref (source);
1959 /* Get SDES items and store them in the SSRC */
1961 rtp_session_process_sdes (RTPSession * sess, GstRTCPPacket * packet,
1962 RTPArrivalStats * arrival)
1965 gboolean more_items, more_entries;
1967 items = gst_rtcp_packet_sdes_get_item_count (packet);
1968 GST_DEBUG ("got SDES packet with %d items", items);
1970 more_items = gst_rtcp_packet_sdes_first_item (packet);
1972 while (more_items) {
1974 gboolean changed, created, validated;
1978 ssrc = gst_rtcp_packet_sdes_get_ssrc (packet);
1980 GST_DEBUG ("item %d, SSRC %08x", i, ssrc);
1984 /* find src, no probation when dealing with RTCP */
1985 source = obtain_source (sess, ssrc, &created, arrival, FALSE);
1989 sdes = gst_structure_new_empty ("application/x-rtp-source-sdes");
1991 more_entries = gst_rtcp_packet_sdes_first_entry (packet);
1993 while (more_entries) {
1994 GstRTCPSDESType type;
2000 gst_rtcp_packet_sdes_get_entry (packet, &type, &len, &data);
2002 GST_DEBUG ("entry %d, type %d, len %d, data %.*s", j, type, len, len,
2005 if (type == GST_RTCP_SDES_PRIV) {
2006 name = g_strndup ((const gchar *) &data[1], data[0]);
2008 data += data[0] + 1;
2010 name = g_strdup (gst_rtcp_sdes_type_to_name (type));
2013 value = g_strndup ((const gchar *) data, len);
2015 gst_structure_set (sdes, name, G_TYPE_STRING, value, NULL);
2020 more_entries = gst_rtcp_packet_sdes_next_entry (packet);
2024 /* takes ownership of sdes */
2025 changed = rtp_source_set_sdes_struct (source, sdes);
2027 validated = !RTP_SOURCE_IS_ACTIVE (source);
2028 source->validated = TRUE;
2031 on_new_ssrc (sess, source);
2033 /* source became active */
2035 sess->stats.active_sources++;
2036 GST_DEBUG ("source: %08x became active, %d active sources", ssrc,
2037 sess->stats.active_sources);
2038 on_ssrc_validated (sess, source);
2042 on_ssrc_sdes (sess, source);
2044 g_object_unref (source);
2046 more_items = gst_rtcp_packet_sdes_next_item (packet);
2051 /* BYE is sent when a client leaves the session
2054 rtp_session_process_bye (RTPSession * sess, GstRTCPPacket * packet,
2055 RTPArrivalStats * arrival)
2059 gboolean reconsider = FALSE;
2061 reason = gst_rtcp_packet_bye_get_reason (packet);
2062 GST_DEBUG ("got BYE packet (reason: %s)", GST_STR_NULL (reason));
2064 count = gst_rtcp_packet_bye_get_ssrc_count (packet);
2065 for (i = 0; i < count; i++) {
2068 gboolean created, prevactive, prevsender;
2069 guint pmembers, members;
2071 ssrc = gst_rtcp_packet_bye_get_nth_ssrc (packet, i);
2072 GST_DEBUG ("SSRC: %08x", ssrc);
2074 if (ssrc == sess->source->ssrc)
2077 /* find src and mark bye, no probation when dealing with RTCP */
2078 source = obtain_source (sess, ssrc, &created, arrival, FALSE);
2082 /* store time for when we need to time out this source */
2083 source->bye_time = arrival->current_time;
2085 prevactive = RTP_SOURCE_IS_ACTIVE (source);
2086 prevsender = RTP_SOURCE_IS_SENDER (source);
2088 /* let the source handle the rest */
2089 rtp_source_process_bye (source, reason);
2091 pmembers = sess->stats.active_sources;
2093 if (prevactive && !RTP_SOURCE_IS_ACTIVE (source)) {
2094 sess->stats.active_sources--;
2095 GST_DEBUG ("source: %08x became inactive, %d active sources", ssrc,
2096 sess->stats.active_sources);
2098 if (prevsender && !RTP_SOURCE_IS_SENDER (source)) {
2099 sess->stats.sender_sources--;
2100 GST_DEBUG ("source: %08x became non sender, %d sender sources", ssrc,
2101 sess->stats.sender_sources);
2103 members = sess->stats.active_sources;
2105 if (!sess->source->received_bye && members < pmembers) {
2106 /* some members went away since the previous timeout estimate.
2107 * Perform reverse reconsideration but only when we are not scheduling a
2109 if (arrival->current_time < sess->next_rtcp_check_time) {
2110 GstClockTime time_remaining;
2112 time_remaining = sess->next_rtcp_check_time - arrival->current_time;
2113 sess->next_rtcp_check_time =
2114 gst_util_uint64_scale (time_remaining, members, pmembers);
2116 GST_DEBUG ("reverse reconsideration %" GST_TIME_FORMAT,
2117 GST_TIME_ARGS (sess->next_rtcp_check_time));
2119 sess->next_rtcp_check_time += arrival->current_time;
2121 /* mark pending reconsider. We only want to signal the reconsideration
2122 * once after we handled all the source in the bye packet */
2128 on_new_ssrc (sess, source);
2130 on_bye_ssrc (sess, source);
2132 g_object_unref (source);
2135 RTP_SESSION_UNLOCK (sess);
2136 /* notify app of reconsideration */
2137 if (sess->callbacks.reconsider)
2138 sess->callbacks.reconsider (sess, sess->reconsider_user_data);
2139 RTP_SESSION_LOCK (sess);
2145 rtp_session_process_app (RTPSession * sess, GstRTCPPacket * packet,
2146 RTPArrivalStats * arrival)
2148 GST_DEBUG ("received APP");
2152 rtp_session_request_local_key_unit (RTPSession * sess, RTPSource * src,
2153 gboolean fir, GstClockTime current_time)
2155 guint32 round_trip = 0;
2157 rtp_source_get_last_rb (src, NULL, NULL, NULL, NULL, NULL, NULL, &round_trip);
2159 if (sess->last_keyframe_request != GST_CLOCK_TIME_NONE && round_trip) {
2160 GstClockTime round_trip_in_ns = gst_util_uint64_scale (round_trip,
2163 if (sess->last_keyframe_request != GST_CLOCK_TIME_NONE &&
2164 current_time - sess->last_keyframe_request < 2 * round_trip_in_ns) {
2165 GST_DEBUG ("Ignoring %s request because one was send without one "
2166 "RTT (%" GST_TIME_FORMAT " < %" GST_TIME_FORMAT ")",
2167 fir ? "FIR" : "PLI",
2168 GST_TIME_ARGS (current_time - sess->last_keyframe_request),
2169 GST_TIME_ARGS (round_trip_in_ns));;
2174 sess->last_keyframe_request = current_time;
2176 GST_LOG ("received %s request from %X %p(%p)", fir ? "FIR" : "PLI",
2177 rtp_source_get_ssrc (src), sess->callbacks.process_rtp,
2178 sess->callbacks.request_key_unit);
2180 RTP_SESSION_UNLOCK (sess);
2181 sess->callbacks.request_key_unit (sess, fir,
2182 sess->request_key_unit_user_data);
2183 RTP_SESSION_LOCK (sess);
2189 rtp_session_process_pli (RTPSession * sess, guint32 sender_ssrc,
2190 guint32 media_ssrc, GstClockTime current_time)
2194 if (!sess->callbacks.request_key_unit)
2197 src = g_hash_table_lookup (sess->ssrcs[sess->mask_idx],
2198 GINT_TO_POINTER (sender_ssrc));
2202 rtp_session_request_local_key_unit (sess, src, FALSE, current_time);
2206 rtp_session_process_fir (RTPSession * sess, guint32 sender_ssrc,
2207 guint8 * fci_data, guint fci_length, GstClockTime current_time)
2212 gboolean our_request = FALSE;
2214 if (!sess->callbacks.request_key_unit)
2220 src = g_hash_table_lookup (sess->ssrcs[sess->mask_idx],
2221 GINT_TO_POINTER (sender_ssrc));
2223 /* Hack because Google fails to set the sender_ssrc correctly */
2224 if (!src && sender_ssrc == 1) {
2225 GHashTableIter iter;
2227 if (sess->stats.sender_sources >
2228 RTP_SOURCE_IS_SENDER (sess->source) ? 2 : 1)
2231 g_hash_table_iter_init (&iter, sess->ssrcs[sess->mask_idx]);
2233 while (g_hash_table_iter_next (&iter, NULL, (gpointer *) & src)) {
2234 if (src != sess->source && rtp_source_is_sender (src))
2243 for (position = 0; position < fci_length; position += 8) {
2244 guint8 *data = fci_data + position;
2246 ssrc = GST_READ_UINT32_BE (data);
2248 if (ssrc == rtp_source_get_ssrc (sess->source)) {
2256 rtp_session_request_local_key_unit (sess, src, TRUE, current_time);
2260 rtp_session_process_feedback (RTPSession * sess, GstRTCPPacket * packet,
2261 RTPArrivalStats * arrival, GstClockTime current_time)
2263 GstRTCPType type = gst_rtcp_packet_get_type (packet);
2264 GstRTCPFBType fbtype = gst_rtcp_packet_fb_get_type (packet);
2265 guint32 sender_ssrc = gst_rtcp_packet_fb_get_sender_ssrc (packet);
2266 guint32 media_ssrc = gst_rtcp_packet_fb_get_media_ssrc (packet);
2267 guint8 *fci_data = gst_rtcp_packet_fb_get_fci (packet);
2268 guint fci_length = 4 * gst_rtcp_packet_fb_get_fci_length (packet);
2270 GST_DEBUG ("received feedback %d:%d from %08X about %08X with FCI of "
2271 "length %d", type, fbtype, sender_ssrc, media_ssrc, fci_length);
2273 if (g_signal_has_handler_pending (sess,
2274 rtp_session_signals[SIGNAL_ON_FEEDBACK_RTCP], 0, TRUE)) {
2275 GstBuffer *fci_buffer = NULL;
2277 if (fci_length > 0) {
2278 fci_buffer = gst_buffer_copy_region (packet->rtcp->buffer,
2279 GST_BUFFER_COPY_MEMORY, fci_data - packet->rtcp->map.data,
2281 GST_BUFFER_TIMESTAMP (fci_buffer) = arrival->running_time;
2284 RTP_SESSION_UNLOCK (sess);
2285 g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_FEEDBACK_RTCP], 0,
2286 type, fbtype, sender_ssrc, media_ssrc, fci_buffer);
2287 RTP_SESSION_LOCK (sess);
2290 gst_buffer_unref (fci_buffer);
2293 if (sess->rtcp_feedback_retention_window) {
2294 RTPSource *src = g_hash_table_lookup (sess->ssrcs[sess->mask_idx],
2295 GINT_TO_POINTER (media_ssrc));
2298 rtp_source_retain_rtcp_packet (src, packet, arrival->running_time);
2301 if (rtp_source_get_ssrc (sess->source) == media_ssrc ||
2302 /* PSFB FIR puts the media ssrc inside the FCI */
2303 (type == GST_RTCP_TYPE_PSFB && fbtype == GST_RTCP_PSFB_TYPE_FIR)) {
2305 case GST_RTCP_TYPE_PSFB:
2307 case GST_RTCP_PSFB_TYPE_PLI:
2308 rtp_session_process_pli (sess, sender_ssrc, media_ssrc,
2311 case GST_RTCP_PSFB_TYPE_FIR:
2312 rtp_session_process_fir (sess, sender_ssrc, fci_data, fci_length,
2319 case GST_RTCP_TYPE_RTPFB:
2327 * rtp_session_process_rtcp:
2328 * @sess: and #RTPSession
2329 * @buffer: an RTCP buffer
2330 * @current_time: the current system time
2331 * @ntpnstime: the current NTP time in nanoseconds
2333 * Process an RTCP buffer in the session manager. This function takes ownership
2336 * Returns: a #GstFlowReturn.
2339 rtp_session_process_rtcp (RTPSession * sess, GstBuffer * buffer,
2340 GstClockTime current_time, guint64 ntpnstime)
2342 GstRTCPPacket packet;
2343 gboolean more, is_bye = FALSE, do_sync = FALSE;
2344 RTPArrivalStats arrival = { NULL, };
2345 GstFlowReturn result = GST_FLOW_OK;
2346 GstRTCPBuffer rtcp = { NULL, };
2348 g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2349 g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
2351 if (!gst_rtcp_buffer_validate (buffer))
2352 goto invalid_packet;
2354 GST_DEBUG ("received RTCP packet");
2356 RTP_SESSION_LOCK (sess);
2357 /* update arrival stats */
2358 update_arrival_stats (sess, &arrival, FALSE, buffer, current_time, -1,
2364 /* start processing the compound packet */
2365 gst_rtcp_buffer_map (buffer, GST_MAP_READ, &rtcp);
2366 more = gst_rtcp_buffer_get_first_packet (&rtcp, &packet);
2370 type = gst_rtcp_packet_get_type (&packet);
2372 /* when we are leaving the session, we should ignore all non-BYE messages */
2373 if (sess->source->received_bye && type != GST_RTCP_TYPE_BYE) {
2374 GST_DEBUG ("ignoring non-BYE RTCP packet because we are leaving");
2379 case GST_RTCP_TYPE_SR:
2380 rtp_session_process_sr (sess, &packet, &arrival, &do_sync);
2382 case GST_RTCP_TYPE_RR:
2383 rtp_session_process_rr (sess, &packet, &arrival);
2385 case GST_RTCP_TYPE_SDES:
2386 rtp_session_process_sdes (sess, &packet, &arrival);
2388 case GST_RTCP_TYPE_BYE:
2390 /* don't try to attempt lip-sync anymore for streams with a BYE */
2392 rtp_session_process_bye (sess, &packet, &arrival);
2394 case GST_RTCP_TYPE_APP:
2395 rtp_session_process_app (sess, &packet, &arrival);
2397 case GST_RTCP_TYPE_RTPFB:
2398 case GST_RTCP_TYPE_PSFB:
2399 rtp_session_process_feedback (sess, &packet, &arrival, current_time);
2402 GST_WARNING ("got unknown RTCP packet");
2406 more = gst_rtcp_packet_move_to_next (&packet);
2409 gst_rtcp_buffer_unmap (&rtcp);
2411 /* if we are scheduling a BYE, we only want to count bye packets, else we
2412 * count everything */
2413 if (sess->source->received_bye) {
2415 sess->stats.bye_members++;
2416 UPDATE_AVG (sess->stats.avg_rtcp_packet_size, arrival.bytes);
2419 /* keep track of average packet size */
2420 UPDATE_AVG (sess->stats.avg_rtcp_packet_size, arrival.bytes);
2422 GST_DEBUG ("%p, received RTCP packet, avg size %u, %u", &sess->stats,
2423 sess->stats.avg_rtcp_packet_size, arrival.bytes);
2424 RTP_SESSION_UNLOCK (sess);
2426 clean_arrival_stats (&arrival);
2428 /* notify caller of sr packets in the callback */
2429 if (do_sync && sess->callbacks.sync_rtcp) {
2430 /* make writable, we might want to change the buffer */
2431 buffer = gst_buffer_make_writable (buffer);
2433 result = sess->callbacks.sync_rtcp (sess, sess->source, buffer,
2434 sess->sync_rtcp_user_data);
2436 gst_buffer_unref (buffer);
2443 GST_DEBUG ("invalid RTCP packet received");
2444 gst_buffer_unref (buffer);
2449 RTP_SESSION_UNLOCK (sess);
2450 gst_buffer_unref (buffer);
2451 clean_arrival_stats (&arrival);
2452 GST_DEBUG ("ignoring RTCP packet because we left");
2458 * rtp_session_update_send_caps:
2459 * @sess: an #RTPSession
2462 * Update the caps of the sender in the rtp session.
2465 rtp_session_update_send_caps (RTPSession * sess, GstCaps * caps)
2467 g_return_if_fail (RTP_IS_SESSION (sess));
2468 g_return_if_fail (GST_IS_CAPS (caps));
2470 GST_LOG ("received caps %" GST_PTR_FORMAT, caps);
2472 RTP_SESSION_LOCK (sess);
2473 rtp_source_update_caps (sess->source, caps);
2474 RTP_SESSION_UNLOCK (sess);
2478 * rtp_session_send_rtp:
2479 * @sess: an #RTPSession
2480 * @data: pointer to either an RTP buffer or a list of RTP buffers
2481 * @is_list: TRUE when @data is a buffer list
2482 * @current_time: the current system time
2483 * @running_time: the running time of @data
2485 * Send the RTP buffer in the session manager. This function takes ownership of
2488 * Returns: a #GstFlowReturn.
2491 rtp_session_send_rtp (RTPSession * sess, gpointer data, gboolean is_list,
2492 GstClockTime current_time, GstClockTime running_time)
2494 GstFlowReturn result;
2496 gboolean prevsender;
2499 g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2500 g_return_val_if_fail (is_list || GST_IS_BUFFER (data), GST_FLOW_ERROR);
2502 GST_LOG ("received RTP %s for sending", is_list ? "list" : "packet");
2504 RTP_SESSION_LOCK (sess);
2505 source = sess->source;
2507 /* update last activity */
2508 source->last_rtp_activity = current_time;
2510 prevsender = RTP_SOURCE_IS_SENDER (source);
2511 oldrate = source->bitrate;
2513 /* we use our own source to send */
2514 result = rtp_source_send_rtp (source, data, is_list, running_time);
2516 if (RTP_SOURCE_IS_SENDER (source) && !prevsender)
2517 sess->stats.sender_sources++;
2518 if (oldrate != source->bitrate)
2519 sess->recalc_bandwidth = TRUE;
2520 RTP_SESSION_UNLOCK (sess);
2526 add_bitrates (gpointer key, RTPSource * source, gdouble * bandwidth)
2528 *bandwidth += source->bitrate;
2532 calculate_rtcp_interval (RTPSession * sess, gboolean deterministic,
2535 GstClockTime result;
2537 /* recalculate bandwidth when it changed */
2538 if (sess->recalc_bandwidth) {
2541 if (sess->bandwidth > 0)
2542 bandwidth = sess->bandwidth;
2544 /* If it is <= 0, then try to estimate the actual bandwidth */
2545 bandwidth = sess->source->bitrate;
2547 g_hash_table_foreach (sess->cnames, (GHFunc) add_bitrates, &bandwidth);
2550 if (bandwidth < 8000)
2551 bandwidth = RTP_STATS_BANDWIDTH;
2553 rtp_stats_set_bandwidths (&sess->stats, bandwidth,
2554 sess->rtcp_bandwidth, sess->rtcp_rs_bandwidth, sess->rtcp_rr_bandwidth);
2556 sess->recalc_bandwidth = FALSE;
2559 if (sess->source->received_bye) {
2560 result = rtp_stats_calculate_bye_interval (&sess->stats);
2562 result = rtp_stats_calculate_rtcp_interval (&sess->stats,
2563 RTP_SOURCE_IS_SENDER (sess->source), first);
2566 GST_DEBUG ("next deterministic interval: %" GST_TIME_FORMAT ", first %d",
2567 GST_TIME_ARGS (result), first);
2569 if (!deterministic && result != GST_CLOCK_TIME_NONE)
2570 result = rtp_stats_add_rtcp_jitter (&sess->stats, result);
2572 GST_DEBUG ("next interval: %" GST_TIME_FORMAT, GST_TIME_ARGS (result));
2577 /* Stop the current @sess and schedule a BYE message for the other members.
2578 * One must have the session lock to call this function
2580 static GstFlowReturn
2581 rtp_session_schedule_bye_locked (RTPSession * sess, const gchar * reason,
2582 GstClockTime current_time)
2584 GstFlowReturn result = GST_FLOW_OK;
2586 GstClockTime interval;
2588 g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2590 source = sess->source;
2592 /* ignore more BYEs */
2593 if (source->received_bye)
2596 /* we have BYE now */
2597 source->received_bye = TRUE;
2598 /* at least one member wants to send a BYE */
2599 g_free (sess->bye_reason);
2600 sess->bye_reason = g_strdup (reason);
2601 INIT_AVG (sess->stats.avg_rtcp_packet_size, 100);
2602 sess->stats.bye_members = 1;
2603 sess->first_rtcp = TRUE;
2604 sess->sent_bye = FALSE;
2605 sess->allow_early = TRUE;
2607 /* reschedule transmission */
2608 sess->last_rtcp_send_time = current_time;
2609 interval = calculate_rtcp_interval (sess, FALSE, TRUE);
2610 sess->next_rtcp_check_time = current_time + interval;
2612 GST_DEBUG ("Schedule BYE for %" GST_TIME_FORMAT ", %" GST_TIME_FORMAT,
2613 GST_TIME_ARGS (interval), GST_TIME_ARGS (sess->next_rtcp_check_time));
2615 RTP_SESSION_UNLOCK (sess);
2616 /* notify app of reconsideration */
2617 if (sess->callbacks.reconsider)
2618 sess->callbacks.reconsider (sess, sess->reconsider_user_data);
2619 RTP_SESSION_LOCK (sess);
2626 * rtp_session_schedule_bye:
2627 * @sess: an #RTPSession
2628 * @reason: a reason or NULL
2629 * @current_time: the current system time
2631 * Stop the current @sess and schedule a BYE message for the other members.
2633 * Returns: a #GstFlowReturn.
2636 rtp_session_schedule_bye (RTPSession * sess, const gchar * reason,
2637 GstClockTime current_time)
2639 GstFlowReturn result = GST_FLOW_OK;
2641 g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2643 RTP_SESSION_LOCK (sess);
2644 result = rtp_session_schedule_bye_locked (sess, reason, current_time);
2645 RTP_SESSION_UNLOCK (sess);
2651 * rtp_session_next_timeout:
2652 * @sess: an #RTPSession
2653 * @current_time: the current system time
2655 * Get the next time we should perform session maintenance tasks.
2657 * Returns: a time when rtp_session_on_timeout() should be called with the
2658 * current system time.
2661 rtp_session_next_timeout (RTPSession * sess, GstClockTime current_time)
2663 GstClockTime result, interval = 0;
2665 g_return_val_if_fail (RTP_IS_SESSION (sess), GST_CLOCK_TIME_NONE);
2667 RTP_SESSION_LOCK (sess);
2669 if (GST_CLOCK_TIME_IS_VALID (sess->next_early_rtcp_time)) {
2670 result = sess->next_early_rtcp_time;
2674 result = sess->next_rtcp_check_time;
2676 GST_DEBUG ("current time: %" GST_TIME_FORMAT
2677 ", next time: %" GST_TIME_FORMAT,
2678 GST_TIME_ARGS (current_time), GST_TIME_ARGS (result));
2680 if (result < current_time) {
2681 GST_DEBUG ("take current time as base");
2682 /* our previous check time expired, start counting from the current time
2684 result = current_time;
2687 if (sess->source->received_bye) {
2688 if (sess->sent_bye) {
2689 GST_DEBUG ("we sent BYE already");
2690 interval = GST_CLOCK_TIME_NONE;
2691 } else if (sess->stats.active_sources >= 50) {
2692 GST_DEBUG ("reconsider BYE, more than 50 sources");
2693 /* reconsider BYE if members >= 50 */
2694 interval = calculate_rtcp_interval (sess, FALSE, TRUE);
2697 if (sess->first_rtcp) {
2698 GST_DEBUG ("first RTCP packet");
2699 /* we are called for the first time */
2700 interval = calculate_rtcp_interval (sess, FALSE, TRUE);
2701 } else if (sess->next_rtcp_check_time < current_time) {
2702 GST_DEBUG ("old check time expired, getting new timeout");
2703 /* get a new timeout when we need to */
2704 interval = calculate_rtcp_interval (sess, FALSE, FALSE);
2708 if (interval != GST_CLOCK_TIME_NONE)
2711 result = GST_CLOCK_TIME_NONE;
2713 sess->next_rtcp_check_time = result;
2717 GST_DEBUG ("current time: %" GST_TIME_FORMAT
2718 ", next time: %" GST_TIME_FORMAT,
2719 GST_TIME_ARGS (current_time), GST_TIME_ARGS (result));
2720 RTP_SESSION_UNLOCK (sess);
2727 GstRTCPBuffer rtcpbuf;
2730 GstClockTime current_time;
2732 GstClockTime running_time;
2733 GstClockTime interval;
2734 GstRTCPPacket packet;
2738 gboolean may_suppress;
2742 session_start_rtcp (RTPSession * sess, ReportData * data)
2744 GstRTCPPacket *packet = &data->packet;
2745 RTPSource *own = sess->source;
2746 GstRTCPBuffer *rtcp = &data->rtcpbuf;
2748 data->rtcp = gst_rtcp_buffer_new (sess->mtu);
2750 gst_rtcp_buffer_map (data->rtcp, GST_MAP_READWRITE, rtcp);
2752 if (RTP_SOURCE_IS_SENDER (own)) {
2755 guint32 packet_count, octet_count;
2757 /* we are a sender, create SR */
2758 GST_DEBUG ("create SR for SSRC %08x", own->ssrc);
2759 gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_SR, packet);
2761 /* get latest stats */
2762 rtp_source_get_new_sr (own, data->ntpnstime, data->running_time,
2763 &ntptime, &rtptime, &packet_count, &octet_count);
2765 rtp_source_process_sr (own, data->current_time, ntptime, rtptime,
2766 packet_count, octet_count);
2768 /* fill in sender report info */
2769 gst_rtcp_packet_sr_set_sender_info (packet, own->ssrc,
2770 ntptime, rtptime, packet_count, octet_count);
2772 /* we are only receiver, create RR */
2773 GST_DEBUG ("create RR for SSRC %08x", own->ssrc);
2774 gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_RR, packet);
2775 gst_rtcp_packet_rr_set_ssrc (packet, own->ssrc);
2779 /* construct a Sender or Receiver Report */
2781 session_report_blocks (const gchar * key, RTPSource * source, ReportData * data)
2783 RTPSession *sess = data->sess;
2784 GstRTCPPacket *packet = &data->packet;
2786 /* create a new buffer if needed */
2787 if (data->rtcp == NULL) {
2788 session_start_rtcp (sess, data);
2789 } else if (data->is_early) {
2790 /* Put a single RR or SR in minimal compound packets */
2793 if (gst_rtcp_packet_get_rb_count (packet) < GST_RTCP_MAX_RB_COUNT) {
2794 /* only report about other sender sources */
2795 if (source != sess->source && RTP_SOURCE_IS_SENDER (source)) {
2796 guint8 fractionlost;
2798 guint32 exthighestseq, jitter;
2802 rtp_source_get_new_rb (source, data->current_time, &fractionlost,
2803 &packetslost, &exthighestseq, &jitter, &lsr, &dlsr);
2805 /* store last generated RR packet */
2806 source->last_rr.is_valid = TRUE;
2807 source->last_rr.fractionlost = fractionlost;
2808 source->last_rr.packetslost = packetslost;
2809 source->last_rr.exthighestseq = exthighestseq;
2810 source->last_rr.jitter = jitter;
2811 source->last_rr.lsr = lsr;
2812 source->last_rr.dlsr = dlsr;
2814 /* packet is not yet filled, add report block for this source. */
2815 gst_rtcp_packet_add_rb (packet, source->ssrc, fractionlost, packetslost,
2816 exthighestseq, jitter, lsr, dlsr);
2821 /* perform cleanup of sources that timed out */
2823 session_cleanup (const gchar * key, RTPSource * source, ReportData * data)
2825 gboolean remove = FALSE;
2826 gboolean byetimeout = FALSE;
2827 gboolean sendertimeout = FALSE;
2828 gboolean is_sender, is_active;
2829 RTPSession *sess = data->sess;
2830 GstClockTime interval, binterval;
2833 is_sender = RTP_SOURCE_IS_SENDER (source);
2834 is_active = RTP_SOURCE_IS_ACTIVE (source);
2836 /* our own rtcp interval may have been forced low by secondary configuration,
2837 * while sender side may still operate with higher interval,
2838 * so do not just take our interval to decide on timing out sender,
2839 * but take (if data->interval <= 5 * GST_SECOND):
2840 * interval = CLAMP (sender_interval, data->interval, 5 * GST_SECOND)
2841 * where sender_interval is difference between last 2 received RTCP reports
2843 if (data->interval >= 5 * GST_SECOND || (source == sess->source)) {
2844 binterval = data->interval;
2846 GST_LOG ("prev_rtcp %" GST_TIME_FORMAT ", last_rtcp %" GST_TIME_FORMAT,
2847 GST_TIME_ARGS (source->stats.prev_rtcptime),
2848 GST_TIME_ARGS (source->stats.last_rtcptime));
2849 /* if not received enough yet, fallback to larger default */
2850 if (source->stats.last_rtcptime > source->stats.prev_rtcptime)
2851 binterval = source->stats.last_rtcptime - source->stats.prev_rtcptime;
2853 binterval = 5 * GST_SECOND;
2854 binterval = CLAMP (binterval, data->interval, 5 * GST_SECOND);
2856 GST_LOG ("timeout base interval %" GST_TIME_FORMAT,
2857 GST_TIME_ARGS (binterval));
2859 /* check for our own source, we don't want to delete our own source. */
2860 if (!(source == sess->source)) {
2861 if (source->received_bye) {
2862 /* if we received a BYE from the source, remove the source after some
2864 if (data->current_time > source->bye_time &&
2865 data->current_time - source->bye_time > sess->stats.bye_timeout) {
2866 GST_DEBUG ("removing BYE source %08x", source->ssrc);
2871 /* sources that were inactive for more than 5 times the deterministic reporting
2872 * interval get timed out. the min timeout is 5 seconds. */
2873 /* mind old time that might pre-date last time going to PLAYING */
2874 btime = MAX (source->last_activity, sess->start_time);
2875 if (data->current_time > btime) {
2876 interval = MAX (binterval * 5, 5 * GST_SECOND);
2877 if (data->current_time - btime > interval) {
2878 GST_DEBUG ("removing timeout source %08x, last %" GST_TIME_FORMAT,
2879 source->ssrc, GST_TIME_ARGS (btime));
2885 /* senders that did not send for a long time become a receiver, this also
2886 * holds for our own source. */
2888 /* mind old time that might pre-date last time going to PLAYING */
2889 btime = MAX (source->last_rtp_activity, sess->start_time);
2890 if (data->current_time > btime) {
2891 interval = MAX (binterval * 2, 5 * GST_SECOND);
2892 if (data->current_time - btime > interval) {
2893 GST_DEBUG ("sender source %08x timed out and became receiver, last %"
2894 GST_TIME_FORMAT, source->ssrc, GST_TIME_ARGS (btime));
2895 source->is_sender = FALSE;
2896 sess->stats.sender_sources--;
2897 sendertimeout = TRUE;
2903 sess->total_sources--;
2905 sess->stats.sender_sources--;
2907 sess->stats.active_sources--;
2910 on_bye_timeout (sess, source);
2912 on_timeout (sess, source);
2915 on_sender_timeout (sess, source);
2918 source->closing = remove;
2922 session_sdes (RTPSession * sess, ReportData * data)
2924 GstRTCPPacket *packet = &data->packet;
2925 const GstStructure *sdes;
2927 GstRTCPBuffer *rtcp = &data->rtcpbuf;
2929 /* add SDES packet */
2930 gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_SDES, packet);
2932 gst_rtcp_packet_sdes_add_item (packet, sess->source->ssrc);
2934 sdes = rtp_source_get_sdes_struct (sess->source);
2936 /* add all fields in the structure, the order is not important. */
2937 n_fields = gst_structure_n_fields (sdes);
2938 for (i = 0; i < n_fields; ++i) {
2941 GstRTCPSDESType type;
2943 field = gst_structure_nth_field_name (sdes, i);
2946 value = gst_structure_get_string (sdes, field);
2949 type = gst_rtcp_sdes_name_to_type (field);
2951 /* Early packets are minimal and only include the CNAME */
2952 if (data->is_early && type != GST_RTCP_SDES_CNAME)
2955 if (type > GST_RTCP_SDES_END && type < GST_RTCP_SDES_PRIV) {
2956 gst_rtcp_packet_sdes_add_entry (packet, type, strlen (value),
2957 (const guint8 *) value);
2958 } else if (type == GST_RTCP_SDES_PRIV) {
2964 /* don't accept entries that are too big */
2965 prefix_len = strlen (field);
2966 if (prefix_len > 255)
2968 value_len = strlen (value);
2969 if (value_len > 255)
2971 data_len = 1 + prefix_len + value_len;
2975 data[0] = prefix_len;
2976 memcpy (&data[1], field, prefix_len);
2977 memcpy (&data[1 + prefix_len], value, value_len);
2979 gst_rtcp_packet_sdes_add_entry (packet, type, data_len, data);
2983 data->has_sdes = TRUE;
2986 /* schedule a BYE packet */
2988 session_bye (RTPSession * sess, ReportData * data)
2990 GstRTCPPacket *packet = &data->packet;
2991 GstRTCPBuffer *rtcp = &data->rtcpbuf;
2994 session_start_rtcp (sess, data);
2997 session_sdes (sess, data);
2999 /* add a BYE packet */
3000 gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_BYE, packet);
3001 gst_rtcp_packet_bye_add_ssrc (packet, sess->source->ssrc);
3002 if (sess->bye_reason)
3003 gst_rtcp_packet_bye_set_reason (packet, sess->bye_reason);
3005 /* we have a BYE packet now */
3006 data->is_bye = TRUE;
3010 is_rtcp_time (RTPSession * sess, GstClockTime current_time, ReportData * data)
3012 GstClockTime new_send_time, elapsed;
3014 if (data->is_early && sess->next_early_rtcp_time < current_time)
3017 /* no need to check yet */
3018 if (sess->next_rtcp_check_time > current_time) {
3019 GST_DEBUG ("no check time yet, next %" GST_TIME_FORMAT " > now %"
3020 GST_TIME_FORMAT, GST_TIME_ARGS (sess->next_rtcp_check_time),
3021 GST_TIME_ARGS (current_time));
3025 /* get elapsed time since we last reported */
3026 elapsed = current_time - sess->last_rtcp_send_time;
3028 /* perform forward reconsideration */
3029 new_send_time = rtp_stats_add_rtcp_jitter (&sess->stats, data->interval);
3031 GST_DEBUG ("forward reconsideration %" GST_TIME_FORMAT ", elapsed %"
3032 GST_TIME_FORMAT, GST_TIME_ARGS (new_send_time), GST_TIME_ARGS (elapsed));
3034 new_send_time += sess->last_rtcp_send_time;
3036 /* check if reconsideration */
3037 if (current_time < new_send_time) {
3038 GST_DEBUG ("reconsider RTCP for %" GST_TIME_FORMAT,
3039 GST_TIME_ARGS (new_send_time));
3040 /* store new check time */
3041 sess->next_rtcp_check_time = new_send_time;
3047 new_send_time = calculate_rtcp_interval (sess, FALSE, FALSE);
3049 GST_DEBUG ("can send RTCP now, next interval %" GST_TIME_FORMAT,
3050 GST_TIME_ARGS (new_send_time));
3051 sess->next_rtcp_check_time = current_time + new_send_time;
3053 /* Apply the rules from RFC 4585 section 3.5.3 */
3054 if (sess->stats.min_interval != 0 && !sess->first_rtcp) {
3055 GstClockTimeDiff T_rr_current_interval = g_random_double_range (0.5, 1.5) *
3056 sess->stats.min_interval;
3058 /* This will caused the RTCP to be suppressed if no FB packets are added */
3059 if (sess->last_rtcp_send_time + T_rr_current_interval >
3060 sess->next_rtcp_check_time) {
3061 GST_DEBUG ("RTCP packet could be suppressed min: %" GST_TIME_FORMAT
3062 " last: %" GST_TIME_FORMAT
3063 " + T_rr_current_interval: %" GST_TIME_FORMAT
3064 " > sess->next_rtcp_check_time: %" GST_TIME_FORMAT,
3065 GST_TIME_ARGS (sess->stats.min_interval),
3066 GST_TIME_ARGS (sess->last_rtcp_send_time),
3067 GST_TIME_ARGS (T_rr_current_interval),
3068 GST_TIME_ARGS (sess->next_rtcp_check_time));
3069 data->may_suppress = TRUE;
3077 clone_ssrcs_hashtable (gchar * key, RTPSource * source, GHashTable * hash_table)
3079 g_hash_table_insert (hash_table, key, g_object_ref (source));
3083 remove_closing_sources (const gchar * key, RTPSource * source, gpointer * data)
3085 return source->closing;
3089 * rtp_session_on_timeout:
3090 * @sess: an #RTPSession
3091 * @current_time: the current system time
3092 * @ntpnstime: the current NTP time in nanoseconds
3093 * @running_time: the current running_time of the pipeline
3095 * Perform maintenance actions after the timeout obtained with
3096 * rtp_session_next_timeout() expired.
3098 * This function will perform timeouts of receivers and senders, send a BYE
3099 * packet or generate RTCP packets with current session stats.
3101 * This function can call the #RTPSessionSendRTCP callback, possibly multiple
3102 * times, for each packet that should be processed.
3104 * Returns: a #GstFlowReturn.
3107 rtp_session_on_timeout (RTPSession * sess, GstClockTime current_time,
3108 guint64 ntpnstime, GstClockTime running_time)
3110 GstFlowReturn result = GST_FLOW_OK;
3111 ReportData data = { GST_RTCP_BUFFER_INIT };
3113 GHashTable *table_copy;
3114 gboolean notify = FALSE;
3116 g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
3118 GST_DEBUG ("reporting at %" GST_TIME_FORMAT ", NTP time %" GST_TIME_FORMAT
3119 ", running-time %" GST_TIME_FORMAT, GST_TIME_ARGS (current_time),
3120 GST_TIME_ARGS (ntpnstime), GST_TIME_ARGS (running_time));
3124 data.current_time = current_time;
3125 data.ntpnstime = ntpnstime;
3126 data.is_bye = FALSE;
3127 data.has_sdes = FALSE;
3128 data.may_suppress = FALSE;
3129 data.running_time = running_time;
3133 RTP_SESSION_LOCK (sess);
3134 /* get a new interval, we need this for various cleanups etc */
3135 data.interval = calculate_rtcp_interval (sess, TRUE, sess->first_rtcp);
3137 /* Make a local copy of the hashtable. We need to do this because the
3138 * cleanup stage below releases the session lock. */
3139 table_copy = g_hash_table_new_full (NULL, NULL, NULL,
3140 (GDestroyNotify) g_object_unref);
3141 g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
3142 (GHFunc) clone_ssrcs_hashtable, table_copy);
3144 /* Clean up the session, mark the source for removing, this might release the
3146 g_hash_table_foreach (table_copy, (GHFunc) session_cleanup, &data);
3147 g_hash_table_destroy (table_copy);
3149 /* Now remove the marked sources */
3150 g_hash_table_foreach_remove (sess->ssrcs[sess->mask_idx],
3151 (GHRFunc) remove_closing_sources, NULL);
3153 if (GST_CLOCK_TIME_IS_VALID (sess->next_early_rtcp_time))
3154 data.is_early = TRUE;
3156 data.is_early = FALSE;
3158 /* see if we need to generate SR or RR packets */
3159 if (is_rtcp_time (sess, current_time, &data)) {
3160 if (own->received_bye) {
3161 /* generate BYE instead */
3162 GST_DEBUG ("generating BYE message");
3163 session_bye (sess, &data);
3164 sess->sent_bye = TRUE;
3166 /* loop over all known sources and do something */
3167 g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
3168 (GHFunc) session_report_blocks, &data);
3173 /* we keep track of the last report time in order to timeout inactive
3174 * receivers or senders */
3175 if (!data.is_early && !data.may_suppress)
3176 sess->last_rtcp_send_time = data.current_time;
3177 sess->first_rtcp = FALSE;
3178 sess->next_early_rtcp_time = GST_CLOCK_TIME_NONE;
3180 /* add SDES for this source when not already added */
3182 session_sdes (sess, &data);
3185 /* check for outdated collisions */
3186 GST_DEBUG ("Timing out collisions");
3187 rtp_source_timeout (sess->source, current_time,
3188 /* "a relatively long time" -- RFC 3550 section 8.2 */
3189 RTP_STATS_MIN_INTERVAL * GST_SECOND * 10,
3190 running_time - sess->rtcp_feedback_retention_window);
3192 if (sess->change_ssrc) {
3193 GST_DEBUG ("need to change our SSRC (%08x)", own->ssrc);
3194 g_hash_table_steal (sess->ssrcs[sess->mask_idx],
3195 GINT_TO_POINTER (own->ssrc));
3197 own->ssrc = rtp_session_create_new_ssrc (sess);
3198 rtp_source_reset (own);
3200 g_hash_table_insert (sess->ssrcs[sess->mask_idx],
3201 GINT_TO_POINTER (own->ssrc), own);
3203 g_free (sess->bye_reason);
3204 sess->bye_reason = NULL;
3205 sess->sent_bye = FALSE;
3206 sess->change_ssrc = FALSE;
3208 GST_DEBUG ("changed our SSRC to %08x", own->ssrc);
3211 sess->allow_early = TRUE;
3213 RTP_SESSION_UNLOCK (sess);
3216 g_object_notify (G_OBJECT (sess), "internal-ssrc");
3218 /* push out the RTCP packet */
3220 gboolean do_not_suppress;
3222 gst_rtcp_buffer_unmap (&data.rtcpbuf);
3224 /* Give the user a change to add its own packet */
3225 g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SENDING_RTCP], 0,
3226 data.rtcp, data.is_early, &do_not_suppress);
3228 if (sess->callbacks.send_rtcp && (do_not_suppress || !data.may_suppress)) {
3231 packet_size = gst_buffer_get_size (data.rtcp) + sess->header_len;
3233 UPDATE_AVG (sess->stats.avg_rtcp_packet_size, packet_size);
3234 GST_DEBUG ("%p, sending RTCP packet, avg size %u, %u", &sess->stats,
3235 sess->stats.avg_rtcp_packet_size, packet_size);
3237 sess->callbacks.send_rtcp (sess, own, data.rtcp, sess->sent_bye,
3238 sess->send_rtcp_user_data);
3240 GST_DEBUG ("freeing packet callback: %p"
3241 " do_not_suppress: %d may_suppress: %d",
3242 sess->callbacks.send_rtcp, do_not_suppress, data.may_suppress);
3243 gst_buffer_unref (data.rtcp);
3251 rtp_session_request_early_rtcp (RTPSession * sess, GstClockTime current_time,
3252 GstClockTimeDiff max_delay)
3254 GstClockTime T_dither_max;
3256 /* Implements the algorithm described in RFC 4585 section 3.5.2 */
3258 RTP_SESSION_LOCK (sess);
3260 /* Check if already requested */
3261 /* RFC 4585 section 3.5.2 step 2 */
3262 if (GST_CLOCK_TIME_IS_VALID (sess->next_early_rtcp_time))
3265 /* Ignore the request a scheduled packet will be in time anyway */
3266 if (current_time + max_delay > sess->next_rtcp_check_time)
3269 /* RFC 4585 section 3.5.2 step 2b */
3270 /* If the total sources is <=2, then there is only us and one peer */
3271 if (sess->total_sources <= 2) {
3274 /* Divide by 2 because l = 0.5 */
3275 T_dither_max = sess->next_rtcp_check_time - sess->last_rtcp_send_time;
3279 /* RFC 4585 section 3.5.2 step 3 */
3280 if (current_time + T_dither_max > sess->next_rtcp_check_time)
3283 /* RFC 4585 section 3.5.2 step 4
3284 * Don't send if allow_early is FALSE, but not if we are in
3285 * immediate mode, meaning we are part of a group of at most the
3286 * application-specific threshold.
3288 if (sess->total_sources > sess->rtcp_immediate_feedback_threshold &&
3289 sess->allow_early == FALSE)
3293 /* Schedule an early transmission later */
3294 sess->next_early_rtcp_time = g_random_double () * T_dither_max +
3297 /* If no dithering, schedule it for NOW */
3298 sess->next_early_rtcp_time = current_time;
3301 RTP_SESSION_UNLOCK (sess);
3303 /* notify app of need to send packet early
3304 * and therefore of timeout change */
3305 if (sess->callbacks.reconsider)
3306 sess->callbacks.reconsider (sess, sess->reconsider_user_data);
3312 RTP_SESSION_UNLOCK (sess);
3316 rtp_session_request_key_unit (RTPSession * sess, guint32 ssrc, GstClockTime now,
3317 gboolean fir, gint count)
3319 RTPSource *src = g_hash_table_lookup (sess->ssrcs[sess->mask_idx],
3320 GUINT_TO_POINTER (ssrc));
3326 src->send_pli = FALSE;
3327 src->send_fir = TRUE;
3329 if (count == -1 || count != src->last_fir_count)
3330 src->current_send_fir_seqnum++;
3331 src->last_fir_count = count;
3332 } else if (!src->send_fir) {
3333 src->send_pli = TRUE;
3336 rtp_session_request_early_rtcp (sess, now, 200 * GST_MSECOND);
3342 has_pli_compare_func (gconstpointer a, gconstpointer ignored)
3344 GstRTCPPacket packet;
3345 GstRTCPBuffer rtcp = { NULL, };
3346 gboolean ret = FALSE;
3348 gst_rtcp_buffer_map ((GstBuffer *) a, GST_MAP_READ, &rtcp);
3350 if (gst_rtcp_buffer_get_first_packet (&rtcp, &packet)) {
3351 if (gst_rtcp_packet_get_type (&packet) == GST_RTCP_TYPE_PSFB &&
3352 gst_rtcp_packet_fb_get_type (&packet) == GST_RTCP_PSFB_TYPE_PLI)
3356 gst_rtcp_buffer_unmap (&rtcp);
3362 rtp_session_on_sending_rtcp (RTPSession * sess, GstBuffer * buffer,
3365 gboolean ret = FALSE;
3366 GHashTableIter iter;
3367 gpointer key, value;
3368 gboolean started_fir = FALSE;
3369 GstRTCPPacket fir_rtcppacket;
3370 GstRTCPBuffer rtcp = { NULL, };
3372 RTP_SESSION_LOCK (sess);
3374 gst_rtcp_buffer_map (buffer, GST_MAP_READWRITE, &rtcp);
3376 g_hash_table_iter_init (&iter, sess->ssrcs[sess->mask_idx]);
3377 while (g_hash_table_iter_next (&iter, &key, &value)) {
3378 guint media_ssrc = GPOINTER_TO_UINT (key);
3379 RTPSource *media_src = value;
3382 if (media_src->send_fir) {
3384 if (!gst_rtcp_buffer_add_packet (&rtcp, GST_RTCP_TYPE_PSFB,
3387 gst_rtcp_packet_fb_set_type (&fir_rtcppacket, GST_RTCP_PSFB_TYPE_FIR);
3388 gst_rtcp_packet_fb_set_sender_ssrc (&fir_rtcppacket,
3389 rtp_source_get_ssrc (sess->source));
3390 gst_rtcp_packet_fb_set_media_ssrc (&fir_rtcppacket, 0);
3392 if (!gst_rtcp_packet_fb_set_fci_length (&fir_rtcppacket, 2)) {
3393 gst_rtcp_packet_remove (&fir_rtcppacket);
3399 if (!gst_rtcp_packet_fb_set_fci_length (&fir_rtcppacket,
3400 !gst_rtcp_packet_fb_get_fci_length (&fir_rtcppacket) + 2))
3404 fci_data = gst_rtcp_packet_fb_get_fci (&fir_rtcppacket) -
3405 ((gst_rtcp_packet_fb_get_fci_length (&fir_rtcppacket) - 2) * 4);
3407 GST_WRITE_UINT32_BE (fci_data, media_ssrc);
3409 fci_data[0] = media_src->current_send_fir_seqnum;
3410 fci_data[1] = fci_data[2] = fci_data[3] = 0;
3411 media_src->send_fir = FALSE;
3415 g_hash_table_iter_init (&iter, sess->ssrcs[sess->mask_idx]);
3416 while (g_hash_table_iter_next (&iter, &key, &value)) {
3417 guint media_ssrc = GPOINTER_TO_UINT (key);
3418 RTPSource *media_src = value;
3419 GstRTCPPacket pli_rtcppacket;
3421 if (media_src->send_pli && !rtp_source_has_retained (media_src,
3422 has_pli_compare_func, NULL)) {
3423 if (!gst_rtcp_buffer_add_packet (&rtcp, GST_RTCP_TYPE_PSFB,
3425 /* Break because the packet is full, will put next request in a
3428 gst_rtcp_packet_fb_set_type (&pli_rtcppacket, GST_RTCP_PSFB_TYPE_PLI);
3429 gst_rtcp_packet_fb_set_sender_ssrc (&pli_rtcppacket,
3430 rtp_source_get_ssrc (sess->source));
3431 gst_rtcp_packet_fb_set_media_ssrc (&pli_rtcppacket, media_ssrc);
3434 media_src->send_pli = FALSE;
3436 gst_rtcp_buffer_unmap (&rtcp);
3438 RTP_SESSION_UNLOCK (sess);
3444 rtp_session_send_rtcp (RTPSession * sess, GstClockTimeDiff max_delay)
3448 if (!sess->callbacks.send_rtcp)
3451 now = sess->callbacks.request_time (sess, sess->request_time_user_data);
3453 rtp_session_request_early_rtcp (sess, now, max_delay);