rtpbin: only reconsider once for BYE
[platform/upstream/gstreamer.git] / gst / rtpmanager / rtpsession.c
1 /* GStreamer
2  * Copyright (C) <2007> Wim Taymans <wim.taymans@gmail.com>
3  *
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.
8  *
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.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <string.h>
21
22 #include <gst/rtp/gstrtpbuffer.h>
23 #include <gst/rtp/gstrtcpbuffer.h>
24 #include <gst/netbuffer/gstnetbuffer.h>
25
26 #include "gstrtpbin-marshal.h"
27 #include "rtpsession.h"
28
29 GST_DEBUG_CATEGORY_STATIC (rtp_session_debug);
30 #define GST_CAT_DEFAULT rtp_session_debug
31
32 /* signals and args */
33 enum
34 {
35   SIGNAL_GET_SOURCE_BY_SSRC,
36   SIGNAL_ON_NEW_SSRC,
37   SIGNAL_ON_SSRC_COLLISION,
38   SIGNAL_ON_SSRC_VALIDATED,
39   SIGNAL_ON_SSRC_ACTIVE,
40   SIGNAL_ON_SSRC_SDES,
41   SIGNAL_ON_BYE_SSRC,
42   SIGNAL_ON_BYE_TIMEOUT,
43   SIGNAL_ON_TIMEOUT,
44   SIGNAL_ON_SENDER_TIMEOUT,
45   LAST_SIGNAL
46 };
47
48 #define DEFAULT_INTERNAL_SOURCE      NULL
49 #define DEFAULT_BANDWIDTH            RTP_STATS_BANDWIDTH
50 #define DEFAULT_RTCP_FRACTION        RTP_STATS_RTCP_BANDWIDTH
51 #define DEFAULT_RTCP_MTU             1400
52 #define DEFAULT_SDES                 NULL
53 #define DEFAULT_NUM_SOURCES          0
54 #define DEFAULT_NUM_ACTIVE_SOURCES   0
55 #define DEFAULT_SOURCES              NULL
56
57 enum
58 {
59   PROP_0,
60   PROP_INTERNAL_SSRC,
61   PROP_INTERNAL_SOURCE,
62   PROP_BANDWIDTH,
63   PROP_RTCP_FRACTION,
64   PROP_RTCP_MTU,
65   PROP_SDES,
66   PROP_NUM_SOURCES,
67   PROP_NUM_ACTIVE_SOURCES,
68   PROP_SOURCES,
69   PROP_LAST
70 };
71
72 /* update average packet size, we keep this scaled by 16 to keep enough
73  * precision. */
74 #define UPDATE_AVG(avg, val)            \
75   if ((avg) == 0)                       \
76    (avg) = (val) << 4;                  \
77   else                                  \
78    (avg) = ((val) + (15 * (avg))) >> 4;
79
80 /* The number RTCP intervals after which to timeout entries in the
81  * collision table
82  */
83 #define RTCP_INTERVAL_COLLISION_TIMEOUT 10
84
85 /* GObject vmethods */
86 static void rtp_session_finalize (GObject * object);
87 static void rtp_session_set_property (GObject * object, guint prop_id,
88     const GValue * value, GParamSpec * pspec);
89 static void rtp_session_get_property (GObject * object, guint prop_id,
90     GValue * value, GParamSpec * pspec);
91
92 static guint rtp_session_signals[LAST_SIGNAL] = { 0 };
93
94 G_DEFINE_TYPE (RTPSession, rtp_session, G_TYPE_OBJECT);
95
96 static RTPSource *obtain_source (RTPSession * sess, guint32 ssrc,
97     gboolean * created, RTPArrivalStats * arrival, gboolean rtp);
98 static GstFlowReturn rtp_session_schedule_bye_locked (RTPSession * sess,
99     const gchar * reason, GstClockTime current_time);
100 static GstClockTime calculate_rtcp_interval (RTPSession * sess,
101     gboolean deterministic, gboolean first);
102
103 static void
104 rtp_session_class_init (RTPSessionClass * klass)
105 {
106   GObjectClass *gobject_class;
107
108   gobject_class = (GObjectClass *) klass;
109
110   gobject_class->finalize = rtp_session_finalize;
111   gobject_class->set_property = rtp_session_set_property;
112   gobject_class->get_property = rtp_session_get_property;
113
114   /**
115    * RTPSession::get-source-by-ssrc:
116    * @session: the object which received the signal
117    * @ssrc: the SSRC of the RTPSource
118    *
119    * Request the #RTPSource object with SSRC @ssrc in @session.
120    */
121   rtp_session_signals[SIGNAL_GET_SOURCE_BY_SSRC] =
122       g_signal_new ("get-source-by-ssrc", G_TYPE_FROM_CLASS (klass),
123       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (RTPSessionClass,
124           get_source_by_ssrc), NULL, NULL, gst_rtp_bin_marshal_OBJECT__UINT,
125       RTP_TYPE_SOURCE, 1, G_TYPE_UINT);
126
127   /**
128    * RTPSession::on-new-ssrc:
129    * @session: the object which received the signal
130    * @src: the new RTPSource
131    *
132    * Notify of a new SSRC that entered @session.
133    */
134   rtp_session_signals[SIGNAL_ON_NEW_SSRC] =
135       g_signal_new ("on-new-ssrc", G_TYPE_FROM_CLASS (klass),
136       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_new_ssrc),
137       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
138       RTP_TYPE_SOURCE);
139   /**
140    * RTPSession::on-ssrc-collision:
141    * @session: the object which received the signal
142    * @src: the #RTPSource that caused a collision
143    *
144    * Notify when we have an SSRC collision
145    */
146   rtp_session_signals[SIGNAL_ON_SSRC_COLLISION] =
147       g_signal_new ("on-ssrc-collision", G_TYPE_FROM_CLASS (klass),
148       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_collision),
149       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
150       RTP_TYPE_SOURCE);
151   /**
152    * RTPSession::on-ssrc-validated:
153    * @session: the object which received the signal
154    * @src: the new validated RTPSource
155    *
156    * Notify of a new SSRC that became validated.
157    */
158   rtp_session_signals[SIGNAL_ON_SSRC_VALIDATED] =
159       g_signal_new ("on-ssrc-validated", G_TYPE_FROM_CLASS (klass),
160       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_validated),
161       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
162       RTP_TYPE_SOURCE);
163   /**
164    * RTPSession::on-ssrc-active:
165    * @session: the object which received the signal
166    * @src: the active RTPSource
167    *
168    * Notify of a SSRC that is active, i.e., sending RTCP.
169    */
170   rtp_session_signals[SIGNAL_ON_SSRC_ACTIVE] =
171       g_signal_new ("on-ssrc-active", G_TYPE_FROM_CLASS (klass),
172       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_active),
173       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
174       RTP_TYPE_SOURCE);
175   /**
176    * RTPSession::on-ssrc-sdes:
177    * @session: the object which received the signal
178    * @src: the RTPSource
179    *
180    * Notify that a new SDES was received for SSRC.
181    */
182   rtp_session_signals[SIGNAL_ON_SSRC_SDES] =
183       g_signal_new ("on-ssrc-sdes", G_TYPE_FROM_CLASS (klass),
184       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_sdes),
185       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
186       RTP_TYPE_SOURCE);
187   /**
188    * RTPSession::on-bye-ssrc:
189    * @session: the object which received the signal
190    * @src: the RTPSource that went away
191    *
192    * Notify of an SSRC that became inactive because of a BYE packet.
193    */
194   rtp_session_signals[SIGNAL_ON_BYE_SSRC] =
195       g_signal_new ("on-bye-ssrc", G_TYPE_FROM_CLASS (klass),
196       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_bye_ssrc),
197       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
198       RTP_TYPE_SOURCE);
199   /**
200    * RTPSession::on-bye-timeout:
201    * @session: the object which received the signal
202    * @src: the RTPSource that timed out
203    *
204    * Notify of an SSRC that has timed out because of BYE
205    */
206   rtp_session_signals[SIGNAL_ON_BYE_TIMEOUT] =
207       g_signal_new ("on-bye-timeout", G_TYPE_FROM_CLASS (klass),
208       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_bye_timeout),
209       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
210       RTP_TYPE_SOURCE);
211   /**
212    * RTPSession::on-timeout:
213    * @session: the object which received the signal
214    * @src: the RTPSource that timed out
215    *
216    * Notify of an SSRC that has timed out
217    */
218   rtp_session_signals[SIGNAL_ON_TIMEOUT] =
219       g_signal_new ("on-timeout", G_TYPE_FROM_CLASS (klass),
220       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_timeout),
221       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
222       RTP_TYPE_SOURCE);
223   /**
224    * RTPSession::on-sender-timeout:
225    * @session: the object which received the signal
226    * @src: the RTPSource that timed out
227    *
228    * Notify of an SSRC that was a sender but timed out and became a receiver.
229    */
230   rtp_session_signals[SIGNAL_ON_SENDER_TIMEOUT] =
231       g_signal_new ("on-sender-timeout", G_TYPE_FROM_CLASS (klass),
232       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_sender_timeout),
233       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
234       RTP_TYPE_SOURCE);
235
236   g_object_class_install_property (gobject_class, PROP_INTERNAL_SSRC,
237       g_param_spec_uint ("internal-ssrc", "Internal SSRC",
238           "The internal SSRC used for the session",
239           0, G_MAXUINT, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
240
241   g_object_class_install_property (gobject_class, PROP_INTERNAL_SOURCE,
242       g_param_spec_object ("internal-source", "Internal Source",
243           "The internal source element of the session",
244           RTP_TYPE_SOURCE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
245
246   g_object_class_install_property (gobject_class, PROP_BANDWIDTH,
247       g_param_spec_double ("bandwidth", "Bandwidth",
248           "The bandwidth of the session",
249           0.0, G_MAXDOUBLE, DEFAULT_BANDWIDTH,
250           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
251
252   g_object_class_install_property (gobject_class, PROP_RTCP_FRACTION,
253       g_param_spec_double ("rtcp-fraction", "RTCP Fraction",
254           "The fraction of the bandwidth used for RTCP",
255           0.0, G_MAXDOUBLE, DEFAULT_RTCP_FRACTION,
256           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
257
258   g_object_class_install_property (gobject_class, PROP_RTCP_MTU,
259       g_param_spec_uint ("rtcp-mtu", "RTCP MTU",
260           "The maximum size of the RTCP packets",
261           16, G_MAXINT16, DEFAULT_RTCP_MTU,
262           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
263
264   g_object_class_install_property (gobject_class, PROP_SDES,
265       g_param_spec_boxed ("sdes", "SDES",
266           "The SDES items of this session",
267           GST_TYPE_STRUCTURE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
268
269   g_object_class_install_property (gobject_class, PROP_NUM_SOURCES,
270       g_param_spec_uint ("num-sources", "Num Sources",
271           "The number of sources in the session", 0, G_MAXUINT,
272           DEFAULT_NUM_SOURCES, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
273
274   g_object_class_install_property (gobject_class, PROP_NUM_ACTIVE_SOURCES,
275       g_param_spec_uint ("num-active-sources", "Num Active Sources",
276           "The number of active sources in the session", 0, G_MAXUINT,
277           DEFAULT_NUM_ACTIVE_SOURCES,
278           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
279   /**
280    * RTPSource::sources
281    *
282    * Get a GValue Array of all sources in the session.
283    *
284    * <example>
285    * <title>Getting the #RTPSources of a session
286    * <programlisting>
287    * {
288    *   GValueArray *arr;
289    *   GValue *val;
290    *   guint i;
291    *
292    *   g_object_get (sess, "sources", &arr, NULL);
293    *
294    *   for (i = 0; i < arr->n_values; i++) {
295    *     RTPSource *source;
296    *
297    *     val = g_value_array_get_nth (arr, i);
298    *     source = g_value_get_object (val);
299    *   }
300    *   g_value_array_free (arr);
301    * }
302    * </programlisting>
303    * </example>
304    */
305   g_object_class_install_property (gobject_class, PROP_SOURCES,
306       g_param_spec_boxed ("sources", "Sources",
307           "An array of all known sources in the session",
308           G_TYPE_VALUE_ARRAY, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
309
310   klass->get_source_by_ssrc =
311       GST_DEBUG_FUNCPTR (rtp_session_get_source_by_ssrc);
312
313   GST_DEBUG_CATEGORY_INIT (rtp_session_debug, "rtpsession", 0, "RTP Session");
314 }
315
316 static void
317 rtp_session_init (RTPSession * sess)
318 {
319   gint i;
320   gchar *str;
321
322   sess->lock = g_mutex_new ();
323   sess->key = g_random_int ();
324   sess->mask_idx = 0;
325   sess->mask = 0;
326
327   for (i = 0; i < 32; i++) {
328     sess->ssrcs[i] =
329         g_hash_table_new_full (NULL, NULL, NULL,
330         (GDestroyNotify) g_object_unref);
331   }
332   sess->cnames = g_hash_table_new_full (NULL, NULL, g_free, NULL);
333
334   rtp_stats_init_defaults (&sess->stats);
335
336   /* create an active SSRC for this session manager */
337   sess->source = rtp_session_create_source (sess);
338   sess->source->validated = TRUE;
339   sess->source->internal = TRUE;
340   sess->stats.active_sources++;
341
342   /* default UDP header length */
343   sess->header_len = 28;
344   sess->mtu = DEFAULT_RTCP_MTU;
345
346   /* some default SDES entries */
347   str = g_strdup_printf ("%s@%s", g_get_user_name (), g_get_host_name ());
348   rtp_source_set_sdes_string (sess->source, GST_RTCP_SDES_CNAME, str);
349   g_free (str);
350
351   rtp_source_set_sdes_string (sess->source, GST_RTCP_SDES_NAME,
352       g_get_real_name ());
353   rtp_source_set_sdes_string (sess->source, GST_RTCP_SDES_TOOL, "GStreamer");
354
355   sess->first_rtcp = TRUE;
356
357   GST_DEBUG ("%p: session using SSRC: %08x", sess, sess->source->ssrc);
358 }
359
360 static void
361 rtp_session_finalize (GObject * object)
362 {
363   RTPSession *sess;
364   gint i;
365
366   sess = RTP_SESSION_CAST (object);
367
368   g_mutex_free (sess->lock);
369   for (i = 0; i < 32; i++)
370     g_hash_table_destroy (sess->ssrcs[i]);
371
372   g_list_foreach (sess->conflicting_addresses, (GFunc) g_free, NULL);
373   g_list_free (sess->conflicting_addresses);
374
375   g_free (sess->bye_reason);
376
377   g_hash_table_destroy (sess->cnames);
378   g_object_unref (sess->source);
379
380   G_OBJECT_CLASS (rtp_session_parent_class)->finalize (object);
381 }
382
383 static void
384 copy_source (gpointer key, RTPSource * source, GValueArray * arr)
385 {
386   GValue value = { 0 };
387
388   g_value_init (&value, RTP_TYPE_SOURCE);
389   g_value_take_object (&value, source);
390   /* copies the value */
391   g_value_array_append (arr, &value);
392 }
393
394 static GValueArray *
395 rtp_session_create_sources (RTPSession * sess)
396 {
397   GValueArray *res;
398   guint size;
399
400   RTP_SESSION_LOCK (sess);
401   /* get number of elements in the table */
402   size = g_hash_table_size (sess->ssrcs[sess->mask_idx]);
403   /* create the result value array */
404   res = g_value_array_new (size);
405
406   /* and copy all values into the array */
407   g_hash_table_foreach (sess->ssrcs[sess->mask_idx], (GHFunc) copy_source, res);
408   RTP_SESSION_UNLOCK (sess);
409
410   return res;
411 }
412
413 static void
414 rtp_session_set_property (GObject * object, guint prop_id,
415     const GValue * value, GParamSpec * pspec)
416 {
417   RTPSession *sess;
418
419   sess = RTP_SESSION (object);
420
421   switch (prop_id) {
422     case PROP_INTERNAL_SSRC:
423       rtp_session_set_internal_ssrc (sess, g_value_get_uint (value));
424       break;
425     case PROP_BANDWIDTH:
426       rtp_session_set_bandwidth (sess, g_value_get_double (value));
427       break;
428     case PROP_RTCP_FRACTION:
429       rtp_session_set_rtcp_fraction (sess, g_value_get_double (value));
430       break;
431     case PROP_RTCP_MTU:
432       sess->mtu = g_value_get_uint (value);
433       break;
434     case PROP_SDES:
435       rtp_session_set_sdes_struct (sess, g_value_get_boxed (value));
436       break;
437     default:
438       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
439       break;
440   }
441 }
442
443 static void
444 rtp_session_get_property (GObject * object, guint prop_id,
445     GValue * value, GParamSpec * pspec)
446 {
447   RTPSession *sess;
448
449   sess = RTP_SESSION (object);
450
451   switch (prop_id) {
452     case PROP_INTERNAL_SSRC:
453       g_value_set_uint (value, rtp_session_get_internal_ssrc (sess));
454       break;
455     case PROP_INTERNAL_SOURCE:
456       g_value_take_object (value, rtp_session_get_internal_source (sess));
457       break;
458     case PROP_BANDWIDTH:
459       g_value_set_double (value, rtp_session_get_bandwidth (sess));
460       break;
461     case PROP_RTCP_FRACTION:
462       g_value_set_double (value, rtp_session_get_rtcp_fraction (sess));
463       break;
464     case PROP_RTCP_MTU:
465       g_value_set_uint (value, sess->mtu);
466       break;
467     case PROP_SDES:
468       g_value_take_boxed (value, rtp_session_get_sdes_struct (sess));
469       break;
470     case PROP_NUM_SOURCES:
471       g_value_set_uint (value, rtp_session_get_num_sources (sess));
472       break;
473     case PROP_NUM_ACTIVE_SOURCES:
474       g_value_set_uint (value, rtp_session_get_num_active_sources (sess));
475       break;
476     case PROP_SOURCES:
477       g_value_take_boxed (value, rtp_session_create_sources (sess));
478       break;
479     default:
480       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
481       break;
482   }
483 }
484
485 static void
486 on_new_ssrc (RTPSession * sess, RTPSource * source)
487 {
488   g_object_ref (source);
489   RTP_SESSION_UNLOCK (sess);
490   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_NEW_SSRC], 0, source);
491   RTP_SESSION_LOCK (sess);
492   g_object_unref (source);
493 }
494
495 static void
496 on_ssrc_collision (RTPSession * sess, RTPSource * source)
497 {
498   g_object_ref (source);
499   RTP_SESSION_UNLOCK (sess);
500   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_COLLISION], 0,
501       source);
502   RTP_SESSION_LOCK (sess);
503   g_object_unref (source);
504 }
505
506 static void
507 on_ssrc_validated (RTPSession * sess, RTPSource * source)
508 {
509   g_object_ref (source);
510   RTP_SESSION_UNLOCK (sess);
511   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_VALIDATED], 0,
512       source);
513   RTP_SESSION_LOCK (sess);
514   g_object_unref (source);
515 }
516
517 static void
518 on_ssrc_active (RTPSession * sess, RTPSource * source)
519 {
520   g_object_ref (source);
521   RTP_SESSION_UNLOCK (sess);
522   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_ACTIVE], 0, source);
523   RTP_SESSION_LOCK (sess);
524   g_object_unref (source);
525 }
526
527 static void
528 on_ssrc_sdes (RTPSession * sess, RTPSource * source)
529 {
530   g_object_ref (source);
531   GST_DEBUG ("SDES changed for SSRC %08x", source->ssrc);
532   RTP_SESSION_UNLOCK (sess);
533   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_SDES], 0, source);
534   RTP_SESSION_LOCK (sess);
535   g_object_unref (source);
536 }
537
538 static void
539 on_bye_ssrc (RTPSession * sess, RTPSource * source)
540 {
541   g_object_ref (source);
542   RTP_SESSION_UNLOCK (sess);
543   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_BYE_SSRC], 0, source);
544   RTP_SESSION_LOCK (sess);
545   g_object_unref (source);
546 }
547
548 static void
549 on_bye_timeout (RTPSession * sess, RTPSource * source)
550 {
551   g_object_ref (source);
552   RTP_SESSION_UNLOCK (sess);
553   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_BYE_TIMEOUT], 0, source);
554   RTP_SESSION_LOCK (sess);
555   g_object_unref (source);
556 }
557
558 static void
559 on_timeout (RTPSession * sess, RTPSource * source)
560 {
561   g_object_ref (source);
562   RTP_SESSION_UNLOCK (sess);
563   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_TIMEOUT], 0, source);
564   RTP_SESSION_LOCK (sess);
565   g_object_unref (source);
566 }
567
568 static void
569 on_sender_timeout (RTPSession * sess, RTPSource * source)
570 {
571   g_object_ref (source);
572   RTP_SESSION_UNLOCK (sess);
573   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SENDER_TIMEOUT], 0,
574       source);
575   RTP_SESSION_LOCK (sess);
576   g_object_unref (source);
577 }
578
579 /**
580  * rtp_session_new:
581  *
582  * Create a new session object.
583  *
584  * Returns: a new #RTPSession. g_object_unref() after usage.
585  */
586 RTPSession *
587 rtp_session_new (void)
588 {
589   RTPSession *sess;
590
591   sess = g_object_new (RTP_TYPE_SESSION, NULL);
592
593   return sess;
594 }
595
596 /**
597  * rtp_session_set_callbacks:
598  * @sess: an #RTPSession
599  * @callbacks: callbacks to configure
600  * @user_data: user data passed in the callbacks
601  *
602  * Configure a set of callbacks to be notified of actions.
603  */
604 void
605 rtp_session_set_callbacks (RTPSession * sess, RTPSessionCallbacks * callbacks,
606     gpointer user_data)
607 {
608   g_return_if_fail (RTP_IS_SESSION (sess));
609
610   if (callbacks->process_rtp) {
611     sess->callbacks.process_rtp = callbacks->process_rtp;
612     sess->process_rtp_user_data = user_data;
613   }
614   if (callbacks->send_rtp) {
615     sess->callbacks.send_rtp = callbacks->send_rtp;
616     sess->send_rtp_user_data = user_data;
617   }
618   if (callbacks->send_rtcp) {
619     sess->callbacks.send_rtcp = callbacks->send_rtcp;
620     sess->send_rtcp_user_data = user_data;
621   }
622   if (callbacks->sync_rtcp) {
623     sess->callbacks.sync_rtcp = callbacks->sync_rtcp;
624     sess->sync_rtcp_user_data = user_data;
625   }
626   if (callbacks->clock_rate) {
627     sess->callbacks.clock_rate = callbacks->clock_rate;
628     sess->clock_rate_user_data = user_data;
629   }
630   if (callbacks->reconsider) {
631     sess->callbacks.reconsider = callbacks->reconsider;
632     sess->reconsider_user_data = user_data;
633   }
634 }
635
636 /**
637  * rtp_session_set_process_rtp_callback:
638  * @sess: an #RTPSession
639  * @callback: callback to set
640  * @user_data: user data passed in the callback
641  *
642  * Configure only the process_rtp callback to be notified of the process_rtp action.
643  */
644 void
645 rtp_session_set_process_rtp_callback (RTPSession * sess,
646     RTPSessionProcessRTP callback, gpointer user_data)
647 {
648   g_return_if_fail (RTP_IS_SESSION (sess));
649
650   sess->callbacks.process_rtp = callback;
651   sess->process_rtp_user_data = user_data;
652 }
653
654 /**
655  * rtp_session_set_send_rtp_callback:
656  * @sess: an #RTPSession
657  * @callback: callback to set
658  * @user_data: user data passed in the callback
659  *
660  * Configure only the send_rtp callback to be notified of the send_rtp action.
661  */
662 void
663 rtp_session_set_send_rtp_callback (RTPSession * sess,
664     RTPSessionSendRTP callback, gpointer user_data)
665 {
666   g_return_if_fail (RTP_IS_SESSION (sess));
667
668   sess->callbacks.send_rtp = callback;
669   sess->send_rtp_user_data = user_data;
670 }
671
672 /**
673  * rtp_session_set_send_rtcp_callback:
674  * @sess: an #RTPSession
675  * @callback: callback to set
676  * @user_data: user data passed in the callback
677  *
678  * Configure only the send_rtcp callback to be notified of the send_rtcp action.
679  */
680 void
681 rtp_session_set_send_rtcp_callback (RTPSession * sess,
682     RTPSessionSendRTCP callback, gpointer user_data)
683 {
684   g_return_if_fail (RTP_IS_SESSION (sess));
685
686   sess->callbacks.send_rtcp = callback;
687   sess->send_rtcp_user_data = user_data;
688 }
689
690 /**
691  * rtp_session_set_sync_rtcp_callback:
692  * @sess: an #RTPSession
693  * @callback: callback to set
694  * @user_data: user data passed in the callback
695  *
696  * Configure only the sync_rtcp callback to be notified of the sync_rtcp action.
697  */
698 void
699 rtp_session_set_sync_rtcp_callback (RTPSession * sess,
700     RTPSessionSyncRTCP callback, gpointer user_data)
701 {
702   g_return_if_fail (RTP_IS_SESSION (sess));
703
704   sess->callbacks.sync_rtcp = callback;
705   sess->sync_rtcp_user_data = user_data;
706 }
707
708 /**
709  * rtp_session_set_clock_rate_callback:
710  * @sess: an #RTPSession
711  * @callback: callback to set
712  * @user_data: user data passed in the callback
713  *
714  * Configure only the clock_rate callback to be notified of the clock_rate action.
715  */
716 void
717 rtp_session_set_clock_rate_callback (RTPSession * sess,
718     RTPSessionClockRate callback, gpointer user_data)
719 {
720   g_return_if_fail (RTP_IS_SESSION (sess));
721
722   sess->callbacks.clock_rate = callback;
723   sess->clock_rate_user_data = user_data;
724 }
725
726 /**
727  * rtp_session_set_reconsider_callback:
728  * @sess: an #RTPSession
729  * @callback: callback to set
730  * @user_data: user data passed in the callback
731  *
732  * Configure only the reconsider callback to be notified of the reconsider action.
733  */
734 void
735 rtp_session_set_reconsider_callback (RTPSession * sess,
736     RTPSessionReconsider callback, gpointer user_data)
737 {
738   g_return_if_fail (RTP_IS_SESSION (sess));
739
740   sess->callbacks.reconsider = callback;
741   sess->reconsider_user_data = user_data;
742 }
743
744 /**
745  * rtp_session_set_bandwidth:
746  * @sess: an #RTPSession
747  * @bandwidth: the bandwidth allocated
748  *
749  * Set the session bandwidth in bytes per second.
750  */
751 void
752 rtp_session_set_bandwidth (RTPSession * sess, gdouble bandwidth)
753 {
754   g_return_if_fail (RTP_IS_SESSION (sess));
755
756   RTP_SESSION_LOCK (sess);
757   sess->stats.bandwidth = bandwidth;
758   RTP_SESSION_UNLOCK (sess);
759 }
760
761 /**
762  * rtp_session_get_bandwidth:
763  * @sess: an #RTPSession
764  *
765  * Get the session bandwidth.
766  *
767  * Returns: the session bandwidth.
768  */
769 gdouble
770 rtp_session_get_bandwidth (RTPSession * sess)
771 {
772   gdouble result;
773
774   g_return_val_if_fail (RTP_IS_SESSION (sess), 0);
775
776   RTP_SESSION_LOCK (sess);
777   result = sess->stats.bandwidth;
778   RTP_SESSION_UNLOCK (sess);
779
780   return result;
781 }
782
783 /**
784  * rtp_session_set_rtcp_fraction:
785  * @sess: an #RTPSession
786  * @bandwidth: the RTCP bandwidth
787  *
788  * Set the bandwidth that should be used for RTCP
789  * messages.
790  */
791 void
792 rtp_session_set_rtcp_fraction (RTPSession * sess, gdouble bandwidth)
793 {
794   g_return_if_fail (RTP_IS_SESSION (sess));
795
796   RTP_SESSION_LOCK (sess);
797   sess->stats.rtcp_bandwidth = bandwidth;
798   RTP_SESSION_UNLOCK (sess);
799 }
800
801 /**
802  * rtp_session_get_rtcp_fraction:
803  * @sess: an #RTPSession
804  *
805  * Get the session bandwidth used for RTCP.
806  *
807  * Returns: The bandwidth used for RTCP messages.
808  */
809 gdouble
810 rtp_session_get_rtcp_fraction (RTPSession * sess)
811 {
812   gdouble result;
813
814   g_return_val_if_fail (RTP_IS_SESSION (sess), 0.0);
815
816   RTP_SESSION_LOCK (sess);
817   result = sess->stats.rtcp_bandwidth;
818   RTP_SESSION_UNLOCK (sess);
819
820   return result;
821 }
822
823 /**
824  * rtp_session_set_sdes_string:
825  * @sess: an #RTPSession
826  * @type: the type of the SDES item
827  * @item: a null-terminated string to set. 
828  *
829  * Store an SDES item of @type in @sess. 
830  *
831  * Returns: %FALSE if the data was unchanged @type is invalid.
832  */
833 gboolean
834 rtp_session_set_sdes_string (RTPSession * sess, GstRTCPSDESType type,
835     const gchar * item)
836 {
837   gboolean result;
838
839   g_return_val_if_fail (RTP_IS_SESSION (sess), FALSE);
840
841   RTP_SESSION_LOCK (sess);
842   result = rtp_source_set_sdes_string (sess->source, type, item);
843   RTP_SESSION_UNLOCK (sess);
844
845   return result;
846 }
847
848 /**
849  * rtp_session_get_sdes_string:
850  * @sess: an #RTPSession
851  * @type: the type of the SDES item
852  *
853  * Get the SDES item of @type from @sess. 
854  *
855  * Returns: a null-terminated copy of the SDES item or NULL when @type was not
856  * valid. g_free() after usage.
857  */
858 gchar *
859 rtp_session_get_sdes_string (RTPSession * sess, GstRTCPSDESType type)
860 {
861   gchar *result;
862
863   g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
864
865   RTP_SESSION_LOCK (sess);
866   result = rtp_source_get_sdes_string (sess->source, type);
867   RTP_SESSION_UNLOCK (sess);
868
869   return result;
870 }
871
872 /**
873  * rtp_session_get_sdes_struct:
874  * @sess: an #RTSPSession
875  *
876  * Get the SDES data as a #GstStructure
877  *
878  * Returns: a GstStructure with SDES items for @sess.
879  */
880 GstStructure *
881 rtp_session_get_sdes_struct (RTPSession * sess)
882 {
883   GstStructure *result;
884
885   g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
886
887   RTP_SESSION_LOCK (sess);
888   result = rtp_source_get_sdes_struct (sess->source);
889   RTP_SESSION_UNLOCK (sess);
890
891   return result;
892 }
893
894 /**
895  * rtp_session_set_sdes_struct:
896  * @sess: an #RTSPSession
897  * @sdes: a #GstStructure
898  *
899  * Set the SDES data as a #GstStructure.
900  */
901 void
902 rtp_session_set_sdes_struct (RTPSession * sess, const GstStructure * sdes)
903 {
904   g_return_if_fail (RTP_IS_SESSION (sess));
905
906   RTP_SESSION_LOCK (sess);
907   rtp_source_set_sdes_struct (sess->source, sdes);
908   RTP_SESSION_UNLOCK (sess);
909 }
910
911 static GstFlowReturn
912 source_push_rtp (RTPSource * source, gpointer data, RTPSession * session)
913 {
914   GstFlowReturn result = GST_FLOW_OK;
915
916   if (source == session->source) {
917     GST_LOG ("source %08x pushed sender RTP packet", source->ssrc);
918
919     RTP_SESSION_UNLOCK (session);
920
921     if (session->callbacks.send_rtp)
922       result =
923           session->callbacks.send_rtp (session, source, data,
924           session->send_rtp_user_data);
925     else {
926       gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
927     }
928   } else {
929     GST_LOG ("source %08x pushed receiver RTP packet", source->ssrc);
930     RTP_SESSION_UNLOCK (session);
931
932     if (session->callbacks.process_rtp)
933       result =
934           session->callbacks.process_rtp (session, source,
935           GST_BUFFER_CAST (data), session->process_rtp_user_data);
936     else
937       gst_buffer_unref (GST_BUFFER_CAST (data));
938   }
939   RTP_SESSION_LOCK (session);
940
941   return result;
942 }
943
944 static gint
945 source_clock_rate (RTPSource * source, guint8 pt, RTPSession * session)
946 {
947   gint result;
948
949   RTP_SESSION_UNLOCK (session);
950
951   if (session->callbacks.clock_rate)
952     result =
953         session->callbacks.clock_rate (session, pt,
954         session->clock_rate_user_data);
955   else
956     result = -1;
957
958   RTP_SESSION_LOCK (session);
959
960   GST_DEBUG ("got clock-rate %d for pt %d", result, pt);
961
962   return result;
963 }
964
965 static RTPSourceCallbacks callbacks = {
966   (RTPSourcePushRTP) source_push_rtp,
967   (RTPSourceClockRate) source_clock_rate,
968 };
969
970 /**
971  * find_add_conflicting_addresses:
972  * @sess: The session to check in
973  * @arrival: The arrival stats for the buffer
974  *
975  * Checks if an address which has a conflict is already known,
976  *  otherwise remembers it to prevent loops.
977  *
978  * Returns: TRUE if it was a known conflict, FALSE otherwise
979  */
980
981 static gboolean
982 find_add_conflicting_addresses (RTPSession * sess, RTPArrivalStats * arrival)
983 {
984   GList *item;
985   RTPConflictingAddress *new_conflict;
986
987   for (item = g_list_first (sess->conflicting_addresses);
988       item; item = g_list_next (item)) {
989     RTPConflictingAddress *known_conflict = item->data;
990
991     if (gst_netaddress_equal (&arrival->address, &known_conflict->address)) {
992       known_conflict->time = arrival->time;
993       return TRUE;
994     }
995   }
996
997   new_conflict = g_new0 (RTPConflictingAddress, 1);
998
999   memcpy (&new_conflict->address, &arrival->address, sizeof (GstNetAddress));
1000   new_conflict->time = arrival->time;
1001
1002   sess->conflicting_addresses = g_list_prepend (sess->conflicting_addresses,
1003       new_conflict);
1004
1005   return FALSE;
1006 }
1007
1008 static gboolean
1009 check_collision (RTPSession * sess, RTPSource * source,
1010     RTPArrivalStats * arrival, gboolean rtp)
1011 {
1012   /* If we have no arrival address, we can't do collision checking */
1013   if (!arrival->have_address)
1014     return FALSE;
1015
1016   if (sess->source != source) {
1017     /* This is not our local source, but lets check if two remote
1018      * source collide
1019      */
1020     if (rtp) {
1021       if (source->have_rtp_from) {
1022         if (gst_netaddress_equal (&source->rtp_from, &arrival->address))
1023           /* Address is the same */
1024           return FALSE;
1025       } else {
1026         /* We don't already have a from address for RTP, just set it */
1027         rtp_source_set_rtp_from (source, &arrival->address);
1028         return FALSE;
1029       }
1030     } else {
1031       if (source->have_rtcp_from) {
1032         if (gst_netaddress_equal (&source->rtcp_from, &arrival->address))
1033           /* Address is the same */
1034           return FALSE;
1035       } else {
1036         /* We don't already have a from address for RTCP, just set it */
1037         rtp_source_set_rtcp_from (source, &arrival->address);
1038         return FALSE;
1039       }
1040     }
1041     /* We received RTP or RTCP from this source before but the network address
1042      * changed. In this case, we have third-party collision or loop */
1043     GST_DEBUG ("we have a third-party collision or loop");
1044
1045     /* FIXME: Log 3rd party collision somehow
1046      * Maybe should be done in upper layer, only the SDES can tell us
1047      * if its a collision or a loop
1048      */
1049   } else {
1050     /* This is sending with our ssrc, is it an address we already know */
1051
1052     if (find_add_conflicting_addresses (sess, arrival)) {
1053       /* Its a known conflict, its probably a loop, not a collision
1054        * lets just drop the incoming packet
1055        */
1056       GST_DEBUG ("Our packets are being looped back to us, dropping");
1057     } else {
1058       /* Its a new collision, lets change our SSRC */
1059
1060       GST_DEBUG ("Collision for SSRC %x", rtp_source_get_ssrc (source));
1061       on_ssrc_collision (sess, source);
1062
1063       rtp_session_schedule_bye_locked (sess, "SSRC Collision", arrival->time);
1064
1065       sess->change_ssrc = TRUE;
1066     }
1067   }
1068
1069   return TRUE;
1070 }
1071
1072
1073 /* must be called with the session lock, the returned source needs to be
1074  * unreffed after usage. */
1075 static RTPSource *
1076 obtain_source (RTPSession * sess, guint32 ssrc, gboolean * created,
1077     RTPArrivalStats * arrival, gboolean rtp)
1078 {
1079   RTPSource *source;
1080
1081   source =
1082       g_hash_table_lookup (sess->ssrcs[sess->mask_idx], GINT_TO_POINTER (ssrc));
1083   if (source == NULL) {
1084     /* make new Source in probation and insert */
1085     source = rtp_source_new (ssrc);
1086
1087     /* for RTP packets we need to set the source in probation. Receiving RTCP
1088      * packets of an SSRC, on the other hand, is a strong indication that we
1089      * are dealing with a valid source. */
1090     if (rtp)
1091       source->probation = RTP_DEFAULT_PROBATION;
1092     else
1093       source->probation = 0;
1094
1095     /* store from address, if any */
1096     if (arrival->have_address) {
1097       if (rtp)
1098         rtp_source_set_rtp_from (source, &arrival->address);
1099       else
1100         rtp_source_set_rtcp_from (source, &arrival->address);
1101     }
1102
1103     /* configure a callback on the source */
1104     rtp_source_set_callbacks (source, &callbacks, sess);
1105
1106     g_hash_table_insert (sess->ssrcs[sess->mask_idx], GINT_TO_POINTER (ssrc),
1107         source);
1108
1109     /* we have one more source now */
1110     sess->total_sources++;
1111     *created = TRUE;
1112   } else {
1113     *created = FALSE;
1114     /* check for collision, this updates the address when not previously set */
1115     if (check_collision (sess, source, arrival, rtp)) {
1116       return NULL;
1117     }
1118   }
1119   /* update last activity */
1120   source->last_activity = arrival->time;
1121   if (rtp)
1122     source->last_rtp_activity = arrival->time;
1123   g_object_ref (source);
1124
1125   return source;
1126 }
1127
1128 /**
1129  * rtp_session_get_internal_source:
1130  * @sess: a #RTPSession
1131  *
1132  * Get the internal #RTPSource of @sess.
1133  *
1134  * Returns: The internal #RTPSource. g_object_unref() after usage.
1135  */
1136 RTPSource *
1137 rtp_session_get_internal_source (RTPSession * sess)
1138 {
1139   RTPSource *result;
1140
1141   g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
1142
1143   result = g_object_ref (sess->source);
1144
1145   return result;
1146 }
1147
1148 /**
1149  * rtp_session_set_internal_ssrc:
1150  * @sess: a #RTPSession
1151  * @ssrc: an SSRC
1152  *
1153  * Set the SSRC of @sess to @ssrc.
1154  */
1155 void
1156 rtp_session_set_internal_ssrc (RTPSession * sess, guint32 ssrc)
1157 {
1158   RTP_SESSION_LOCK (sess);
1159   if (ssrc != sess->source->ssrc) {
1160     g_hash_table_steal (sess->ssrcs[sess->mask_idx],
1161         GINT_TO_POINTER (sess->source->ssrc));
1162
1163     GST_DEBUG ("setting internal SSRC to %08x", ssrc);
1164     /* After this call, any receiver of the old SSRC either in RTP or RTCP
1165      * packets will timeout on the old SSRC, we could potentially schedule a
1166      * BYE RTCP for the old SSRC... */
1167     sess->source->ssrc = ssrc;
1168     rtp_source_reset (sess->source);
1169
1170     /* rehash with the new SSRC */
1171     g_hash_table_insert (sess->ssrcs[sess->mask_idx],
1172         GINT_TO_POINTER (sess->source->ssrc), sess->source);
1173   }
1174   RTP_SESSION_UNLOCK (sess);
1175
1176   g_object_notify (G_OBJECT (sess), "internal-ssrc");
1177 }
1178
1179 /**
1180  * rtp_session_get_internal_ssrc:
1181  * @sess: a #RTPSession
1182  *
1183  * Get the internal SSRC of @sess.
1184  *
1185  * Returns: The SSRC of the session. 
1186  */
1187 guint32
1188 rtp_session_get_internal_ssrc (RTPSession * sess)
1189 {
1190   guint32 ssrc;
1191
1192   RTP_SESSION_LOCK (sess);
1193   ssrc = sess->source->ssrc;
1194   RTP_SESSION_UNLOCK (sess);
1195
1196   return ssrc;
1197 }
1198
1199 /**
1200  * rtp_session_add_source:
1201  * @sess: a #RTPSession
1202  * @src: #RTPSource to add
1203  *
1204  * Add @src to @session.
1205  *
1206  * Returns: %TRUE on success, %FALSE if a source with the same SSRC already
1207  * existed in the session.
1208  */
1209 gboolean
1210 rtp_session_add_source (RTPSession * sess, RTPSource * src)
1211 {
1212   gboolean result = FALSE;
1213   RTPSource *find;
1214
1215   g_return_val_if_fail (RTP_IS_SESSION (sess), FALSE);
1216   g_return_val_if_fail (src != NULL, FALSE);
1217
1218   RTP_SESSION_LOCK (sess);
1219   find =
1220       g_hash_table_lookup (sess->ssrcs[sess->mask_idx],
1221       GINT_TO_POINTER (src->ssrc));
1222   if (find == NULL) {
1223     g_hash_table_insert (sess->ssrcs[sess->mask_idx],
1224         GINT_TO_POINTER (src->ssrc), src);
1225     /* we have one more source now */
1226     sess->total_sources++;
1227     result = TRUE;
1228   }
1229   RTP_SESSION_UNLOCK (sess);
1230
1231   return result;
1232 }
1233
1234 /**
1235  * rtp_session_get_num_sources:
1236  * @sess: an #RTPSession
1237  *
1238  * Get the number of sources in @sess.
1239  *
1240  * Returns: The number of sources in @sess.
1241  */
1242 guint
1243 rtp_session_get_num_sources (RTPSession * sess)
1244 {
1245   guint result;
1246
1247   g_return_val_if_fail (RTP_IS_SESSION (sess), FALSE);
1248
1249   RTP_SESSION_LOCK (sess);
1250   result = sess->total_sources;
1251   RTP_SESSION_UNLOCK (sess);
1252
1253   return result;
1254 }
1255
1256 /**
1257  * rtp_session_get_num_active_sources:
1258  * @sess: an #RTPSession
1259  *
1260  * Get the number of active sources in @sess. A source is considered active when
1261  * it has been validated and has not yet received a BYE RTCP message.
1262  *
1263  * Returns: The number of active sources in @sess.
1264  */
1265 guint
1266 rtp_session_get_num_active_sources (RTPSession * sess)
1267 {
1268   guint result;
1269
1270   g_return_val_if_fail (RTP_IS_SESSION (sess), 0);
1271
1272   RTP_SESSION_LOCK (sess);
1273   result = sess->stats.active_sources;
1274   RTP_SESSION_UNLOCK (sess);
1275
1276   return result;
1277 }
1278
1279 /**
1280  * rtp_session_get_source_by_ssrc:
1281  * @sess: an #RTPSession
1282  * @ssrc: an SSRC
1283  *
1284  * Find the source with @ssrc in @sess.
1285  *
1286  * Returns: a #RTPSource with SSRC @ssrc or NULL if the source was not found.
1287  * g_object_unref() after usage.
1288  */
1289 RTPSource *
1290 rtp_session_get_source_by_ssrc (RTPSession * sess, guint32 ssrc)
1291 {
1292   RTPSource *result;
1293
1294   g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
1295
1296   RTP_SESSION_LOCK (sess);
1297   result =
1298       g_hash_table_lookup (sess->ssrcs[sess->mask_idx], GINT_TO_POINTER (ssrc));
1299   if (result)
1300     g_object_ref (result);
1301   RTP_SESSION_UNLOCK (sess);
1302
1303   return result;
1304 }
1305
1306 /**
1307  * rtp_session_get_source_by_cname:
1308  * @sess: a #RTPSession
1309  * @cname: an CNAME
1310  *
1311  * Find the source with @cname in @sess.
1312  *
1313  * Returns: a #RTPSource with CNAME @cname or NULL if the source was not found.
1314  * g_object_unref() after usage.
1315  */
1316 RTPSource *
1317 rtp_session_get_source_by_cname (RTPSession * sess, const gchar * cname)
1318 {
1319   RTPSource *result;
1320
1321   g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
1322   g_return_val_if_fail (cname != NULL, NULL);
1323
1324   RTP_SESSION_LOCK (sess);
1325   result = g_hash_table_lookup (sess->cnames, cname);
1326   if (result)
1327     g_object_ref (result);
1328   RTP_SESSION_UNLOCK (sess);
1329
1330   return result;
1331 }
1332
1333 static guint32
1334 rtp_session_create_new_ssrc (RTPSession * sess)
1335 {
1336   guint32 ssrc;
1337
1338   while (TRUE) {
1339     ssrc = g_random_int ();
1340
1341     /* see if it exists in the session, we're done if it doesn't */
1342     if (g_hash_table_lookup (sess->ssrcs[sess->mask_idx],
1343             GINT_TO_POINTER (ssrc)) == NULL)
1344       break;
1345   }
1346   return ssrc;
1347 }
1348
1349
1350 /**
1351  * rtp_session_create_source:
1352  * @sess: an #RTPSession
1353  *
1354  * Create an #RTPSource for use in @sess. This function will create a source
1355  * with an ssrc that is currently not used by any participants in the session.
1356  *
1357  * Returns: an #RTPSource.
1358  */
1359 RTPSource *
1360 rtp_session_create_source (RTPSession * sess)
1361 {
1362   guint32 ssrc;
1363   RTPSource *source;
1364
1365   RTP_SESSION_LOCK (sess);
1366   ssrc = rtp_session_create_new_ssrc (sess);
1367   source = rtp_source_new (ssrc);
1368   rtp_source_set_callbacks (source, &callbacks, sess);
1369   /* we need an additional ref for the source in the hashtable */
1370   g_object_ref (source);
1371   g_hash_table_insert (sess->ssrcs[sess->mask_idx], GINT_TO_POINTER (ssrc),
1372       source);
1373   /* we have one more source now */
1374   sess->total_sources++;
1375   RTP_SESSION_UNLOCK (sess);
1376
1377   return source;
1378 }
1379
1380 /* update the RTPArrivalStats structure with the current time and other bits
1381  * about the current buffer we are handling.
1382  * This function is typically called when a validated packet is received.
1383  * This function should be called with the SESSION_LOCK
1384  */
1385 static void
1386 update_arrival_stats (RTPSession * sess, RTPArrivalStats * arrival,
1387     gboolean rtp, GstBuffer * buffer, GstClockTime current_time,
1388     GstClockTime running_time, guint64 ntpnstime)
1389 {
1390   /* get time of arrival */
1391   arrival->time = current_time;
1392   arrival->running_time = running_time;
1393   arrival->ntpnstime = ntpnstime;
1394
1395   /* get packet size including header overhead */
1396   arrival->bytes = GST_BUFFER_SIZE (buffer) + sess->header_len;
1397
1398   if (rtp) {
1399     arrival->payload_len = gst_rtp_buffer_get_payload_len (buffer);
1400   } else {
1401     arrival->payload_len = 0;
1402   }
1403
1404   /* for netbuffer we can store the IP address to check for collisions */
1405   arrival->have_address = GST_IS_NETBUFFER (buffer);
1406   if (arrival->have_address) {
1407     GstNetBuffer *netbuf = (GstNetBuffer *) buffer;
1408
1409     memcpy (&arrival->address, &netbuf->from, sizeof (GstNetAddress));
1410   }
1411 }
1412
1413 /**
1414  * rtp_session_process_rtp:
1415  * @sess: and #RTPSession
1416  * @buffer: an RTP buffer
1417  * @current_time: the current system time
1418  * @ntpnstime: the NTP arrival time in nanoseconds
1419  *
1420  * Process an RTP buffer in the session manager. This function takes ownership
1421  * of @buffer.
1422  *
1423  * Returns: a #GstFlowReturn.
1424  */
1425 GstFlowReturn
1426 rtp_session_process_rtp (RTPSession * sess, GstBuffer * buffer,
1427     GstClockTime current_time, GstClockTime running_time, guint64 ntpnstime)
1428 {
1429   GstFlowReturn result;
1430   guint32 ssrc;
1431   RTPSource *source;
1432   gboolean created;
1433   gboolean prevsender, prevactive;
1434   RTPArrivalStats arrival;
1435
1436   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
1437   g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
1438
1439   if (!gst_rtp_buffer_validate (buffer))
1440     goto invalid_packet;
1441
1442   RTP_SESSION_LOCK (sess);
1443   /* update arrival stats */
1444   update_arrival_stats (sess, &arrival, TRUE, buffer, current_time,
1445       running_time, ntpnstime);
1446
1447   /* ignore more RTP packets when we left the session */
1448   if (sess->source->received_bye)
1449     goto ignore;
1450
1451   /* get SSRC and look up in session database */
1452   ssrc = gst_rtp_buffer_get_ssrc (buffer);
1453   source = obtain_source (sess, ssrc, &created, &arrival, TRUE);
1454   if (!source)
1455     goto collision;
1456
1457   prevsender = RTP_SOURCE_IS_SENDER (source);
1458   prevactive = RTP_SOURCE_IS_ACTIVE (source);
1459
1460   /* we need to ref so that we can process the CSRCs later */
1461   gst_buffer_ref (buffer);
1462
1463   /* let source process the packet */
1464   result = rtp_source_process_rtp (source, buffer, &arrival);
1465
1466   /* source became active */
1467   if (prevactive != RTP_SOURCE_IS_ACTIVE (source)) {
1468     sess->stats.active_sources++;
1469     GST_DEBUG ("source: %08x became active, %d active sources", ssrc,
1470         sess->stats.active_sources);
1471     on_ssrc_validated (sess, source);
1472   }
1473   if (prevsender != RTP_SOURCE_IS_SENDER (source)) {
1474     sess->stats.sender_sources++;
1475     GST_DEBUG ("source: %08x became sender, %d sender sources", ssrc,
1476         sess->stats.sender_sources);
1477   }
1478
1479   if (created)
1480     on_new_ssrc (sess, source);
1481
1482   if (source->validated) {
1483     guint8 i, count;
1484     gboolean created;
1485
1486     /* for validated sources, we add the CSRCs as well */
1487     count = gst_rtp_buffer_get_csrc_count (buffer);
1488
1489     for (i = 0; i < count; i++) {
1490       guint32 csrc;
1491       RTPSource *csrc_src;
1492
1493       csrc = gst_rtp_buffer_get_csrc (buffer, i);
1494
1495       /* get source */
1496       csrc_src = obtain_source (sess, csrc, &created, &arrival, TRUE);
1497       if (!csrc_src)
1498         continue;
1499
1500       if (created) {
1501         GST_DEBUG ("created new CSRC: %08x", csrc);
1502         rtp_source_set_as_csrc (csrc_src);
1503         if (RTP_SOURCE_IS_ACTIVE (csrc_src))
1504           sess->stats.active_sources++;
1505         on_new_ssrc (sess, csrc_src);
1506       }
1507       g_object_unref (csrc_src);
1508     }
1509   }
1510   g_object_unref (source);
1511   gst_buffer_unref (buffer);
1512
1513   RTP_SESSION_UNLOCK (sess);
1514
1515   return result;
1516
1517   /* ERRORS */
1518 invalid_packet:
1519   {
1520     gst_buffer_unref (buffer);
1521     GST_DEBUG ("invalid RTP packet received");
1522     return GST_FLOW_OK;
1523   }
1524 ignore:
1525   {
1526     gst_buffer_unref (buffer);
1527     RTP_SESSION_UNLOCK (sess);
1528     GST_DEBUG ("ignoring RTP packet because we are leaving");
1529     return GST_FLOW_OK;
1530   }
1531 collision:
1532   {
1533     gst_buffer_unref (buffer);
1534     RTP_SESSION_UNLOCK (sess);
1535     GST_DEBUG ("ignoring packet because its collisioning");
1536     return GST_FLOW_OK;
1537   }
1538 }
1539
1540 static void
1541 rtp_session_process_rb (RTPSession * sess, RTPSource * source,
1542     GstRTCPPacket * packet, RTPArrivalStats * arrival)
1543 {
1544   guint count, i;
1545
1546   count = gst_rtcp_packet_get_rb_count (packet);
1547   for (i = 0; i < count; i++) {
1548     guint32 ssrc, exthighestseq, jitter, lsr, dlsr;
1549     guint8 fractionlost;
1550     gint32 packetslost;
1551
1552     gst_rtcp_packet_get_rb (packet, i, &ssrc, &fractionlost,
1553         &packetslost, &exthighestseq, &jitter, &lsr, &dlsr);
1554
1555     GST_DEBUG ("RB %d: SSRC %08x, jitter %" G_GUINT32_FORMAT, i, ssrc, jitter);
1556
1557     if (ssrc == sess->source->ssrc) {
1558       /* only deal with report blocks for our session, we update the stats of
1559        * the sender of the RTCP message. We could also compare our stats against
1560        * the other sender to see if we are better or worse. */
1561       rtp_source_process_rb (source, arrival->time, fractionlost, packetslost,
1562           exthighestseq, jitter, lsr, dlsr);
1563
1564       on_ssrc_active (sess, source);
1565     }
1566   }
1567 }
1568
1569 /* A Sender report contains statistics about how the sender is doing. This
1570  * includes timing informataion such as the relation between RTP and NTP
1571  * timestamps and the number of packets/bytes it sent to us.
1572  *
1573  * In this report is also included a set of report blocks related to how this
1574  * sender is receiving data (in case we (or somebody else) is also sending stuff
1575  * to it). This info includes the packet loss, jitter and seqnum. It also
1576  * contains information to calculate the round trip time (LSR/DLSR).
1577  */
1578 static void
1579 rtp_session_process_sr (RTPSession * sess, GstRTCPPacket * packet,
1580     RTPArrivalStats * arrival)
1581 {
1582   guint32 senderssrc, rtptime, packet_count, octet_count;
1583   guint64 ntptime;
1584   RTPSource *source;
1585   gboolean created, prevsender;
1586
1587   gst_rtcp_packet_sr_get_sender_info (packet, &senderssrc, &ntptime, &rtptime,
1588       &packet_count, &octet_count);
1589
1590   GST_DEBUG ("got SR packet: SSRC %08x, time %" GST_TIME_FORMAT,
1591       senderssrc, GST_TIME_ARGS (arrival->time));
1592
1593   source = obtain_source (sess, senderssrc, &created, arrival, FALSE);
1594   if (!source)
1595     return;
1596
1597   prevsender = RTP_SOURCE_IS_SENDER (source);
1598
1599   /* first update the source */
1600   rtp_source_process_sr (source, arrival->time, ntptime, rtptime, packet_count,
1601       octet_count);
1602
1603   if (prevsender != RTP_SOURCE_IS_SENDER (source)) {
1604     sess->stats.sender_sources++;
1605     GST_DEBUG ("source: %08x became sender, %d sender sources", senderssrc,
1606         sess->stats.sender_sources);
1607   }
1608
1609   if (created)
1610     on_new_ssrc (sess, source);
1611
1612   rtp_session_process_rb (sess, source, packet, arrival);
1613   g_object_unref (source);
1614 }
1615
1616 /* A receiver report contains statistics about how a receiver is doing. It
1617  * includes stuff like packet loss, jitter and the seqnum it received last. It
1618  * also contains info to calculate the round trip time.
1619  *
1620  * We are only interested in how the sender of this report is doing wrt to us.
1621  */
1622 static void
1623 rtp_session_process_rr (RTPSession * sess, GstRTCPPacket * packet,
1624     RTPArrivalStats * arrival)
1625 {
1626   guint32 senderssrc;
1627   RTPSource *source;
1628   gboolean created;
1629
1630   senderssrc = gst_rtcp_packet_rr_get_ssrc (packet);
1631
1632   GST_DEBUG ("got RR packet: SSRC %08x", senderssrc);
1633
1634   source = obtain_source (sess, senderssrc, &created, arrival, FALSE);
1635   if (!source)
1636     return;
1637
1638   if (created)
1639     on_new_ssrc (sess, source);
1640
1641   rtp_session_process_rb (sess, source, packet, arrival);
1642   g_object_unref (source);
1643 }
1644
1645 /* Get SDES items and store them in the SSRC */
1646 static void
1647 rtp_session_process_sdes (RTPSession * sess, GstRTCPPacket * packet,
1648     RTPArrivalStats * arrival)
1649 {
1650   guint items, i, j;
1651   gboolean more_items, more_entries;
1652
1653   items = gst_rtcp_packet_sdes_get_item_count (packet);
1654   GST_DEBUG ("got SDES packet with %d items", items);
1655
1656   more_items = gst_rtcp_packet_sdes_first_item (packet);
1657   i = 0;
1658   while (more_items) {
1659     guint32 ssrc;
1660     gboolean changed, created;
1661     RTPSource *source;
1662
1663     ssrc = gst_rtcp_packet_sdes_get_ssrc (packet);
1664
1665     GST_DEBUG ("item %d, SSRC %08x", i, ssrc);
1666
1667     changed = FALSE;
1668
1669     /* find src, no probation when dealing with RTCP */
1670     source = obtain_source (sess, ssrc, &created, arrival, FALSE);
1671     if (!source)
1672       return;
1673
1674     more_entries = gst_rtcp_packet_sdes_first_entry (packet);
1675     j = 0;
1676     while (more_entries) {
1677       GstRTCPSDESType type;
1678       guint8 len;
1679       guint8 *data;
1680
1681       gst_rtcp_packet_sdes_get_entry (packet, &type, &len, &data);
1682
1683       GST_DEBUG ("entry %d, type %d, len %d, data %.*s", j, type, len, len,
1684           data);
1685
1686       changed |= rtp_source_set_sdes (source, type, data, len);
1687
1688       more_entries = gst_rtcp_packet_sdes_next_entry (packet);
1689       j++;
1690     }
1691
1692     source->validated = TRUE;
1693
1694     if (created)
1695       on_new_ssrc (sess, source);
1696     if (changed)
1697       on_ssrc_sdes (sess, source);
1698
1699     g_object_unref (source);
1700
1701     more_items = gst_rtcp_packet_sdes_next_item (packet);
1702     i++;
1703   }
1704 }
1705
1706 /* BYE is sent when a client leaves the session
1707  */
1708 static void
1709 rtp_session_process_bye (RTPSession * sess, GstRTCPPacket * packet,
1710     RTPArrivalStats * arrival)
1711 {
1712   guint count, i;
1713   gchar *reason;
1714   gboolean reconsider = FALSE;
1715
1716   reason = gst_rtcp_packet_bye_get_reason (packet);
1717   GST_DEBUG ("got BYE packet (reason: %s)", GST_STR_NULL (reason));
1718
1719   count = gst_rtcp_packet_bye_get_ssrc_count (packet);
1720   for (i = 0; i < count; i++) {
1721     guint32 ssrc;
1722     RTPSource *source;
1723     gboolean created, prevactive, prevsender;
1724     guint pmembers, members;
1725
1726     ssrc = gst_rtcp_packet_bye_get_nth_ssrc (packet, i);
1727     GST_DEBUG ("SSRC: %08x", ssrc);
1728
1729     /* find src and mark bye, no probation when dealing with RTCP */
1730     source = obtain_source (sess, ssrc, &created, arrival, FALSE);
1731     if (!source)
1732       return;
1733
1734     /* store time for when we need to time out this source */
1735     source->bye_time = arrival->time;
1736
1737     prevactive = RTP_SOURCE_IS_ACTIVE (source);
1738     prevsender = RTP_SOURCE_IS_SENDER (source);
1739
1740     /* let the source handle the rest */
1741     rtp_source_process_bye (source, reason);
1742
1743     pmembers = sess->stats.active_sources;
1744
1745     if (prevactive && !RTP_SOURCE_IS_ACTIVE (source)) {
1746       sess->stats.active_sources--;
1747       GST_DEBUG ("source: %08x became inactive, %d active sources", ssrc,
1748           sess->stats.active_sources);
1749     }
1750     if (prevsender && !RTP_SOURCE_IS_SENDER (source)) {
1751       sess->stats.sender_sources--;
1752       GST_DEBUG ("source: %08x became non sender, %d sender sources", ssrc,
1753           sess->stats.sender_sources);
1754     }
1755     members = sess->stats.active_sources;
1756
1757     if (!sess->source->received_bye && members < pmembers) {
1758       /* some members went away since the previous timeout estimate.
1759        * Perform reverse reconsideration but only when we are not scheduling a
1760        * BYE ourselves. */
1761       if (arrival->time < sess->next_rtcp_check_time) {
1762         GstClockTime time_remaining;
1763
1764         time_remaining = sess->next_rtcp_check_time - arrival->time;
1765         sess->next_rtcp_check_time =
1766             gst_util_uint64_scale (time_remaining, members, pmembers);
1767
1768         GST_DEBUG ("reverse reconsideration %" GST_TIME_FORMAT,
1769             GST_TIME_ARGS (sess->next_rtcp_check_time));
1770
1771         sess->next_rtcp_check_time += arrival->time;
1772
1773         /* mark pending reconsider. We only want to signal the reconsideration
1774          * once after we handled all the source in the bye packet */
1775         reconsider = TRUE;
1776       }
1777     }
1778
1779     if (created)
1780       on_new_ssrc (sess, source);
1781
1782     on_bye_ssrc (sess, source);
1783
1784     g_object_unref (source);
1785   }
1786   if (reconsider) {
1787     RTP_SESSION_UNLOCK (sess);
1788     /* notify app of reconsideration */
1789     if (sess->callbacks.reconsider)
1790       sess->callbacks.reconsider (sess, sess->reconsider_user_data);
1791     RTP_SESSION_LOCK (sess);
1792   }
1793   g_free (reason);
1794 }
1795
1796 static void
1797 rtp_session_process_app (RTPSession * sess, GstRTCPPacket * packet,
1798     RTPArrivalStats * arrival)
1799 {
1800   GST_DEBUG ("received APP");
1801 }
1802
1803 /**
1804  * rtp_session_process_rtcp:
1805  * @sess: and #RTPSession
1806  * @buffer: an RTCP buffer
1807  * @current_time: the current system time
1808  *
1809  * Process an RTCP buffer in the session manager. This function takes ownership
1810  * of @buffer.
1811  *
1812  * Returns: a #GstFlowReturn.
1813  */
1814 GstFlowReturn
1815 rtp_session_process_rtcp (RTPSession * sess, GstBuffer * buffer,
1816     GstClockTime current_time)
1817 {
1818   GstRTCPPacket packet;
1819   gboolean more, is_bye = FALSE, is_sr = FALSE;
1820   RTPArrivalStats arrival;
1821   GstFlowReturn result = GST_FLOW_OK;
1822
1823   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
1824   g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
1825
1826   if (!gst_rtcp_buffer_validate (buffer))
1827     goto invalid_packet;
1828
1829   GST_DEBUG ("received RTCP packet");
1830
1831   RTP_SESSION_LOCK (sess);
1832   /* update arrival stats */
1833   update_arrival_stats (sess, &arrival, FALSE, buffer, current_time, -1, -1);
1834
1835   if (sess->sent_bye)
1836     goto ignore;
1837
1838   /* make writable, we might want to change the buffer */
1839   buffer = gst_buffer_make_metadata_writable (buffer);
1840
1841   /* start processing the compound packet */
1842   more = gst_rtcp_buffer_get_first_packet (buffer, &packet);
1843   while (more) {
1844     GstRTCPType type;
1845
1846     type = gst_rtcp_packet_get_type (&packet);
1847
1848     /* when we are leaving the session, we should ignore all non-BYE messages */
1849     if (sess->source->received_bye && type != GST_RTCP_TYPE_BYE) {
1850       GST_DEBUG ("ignoring non-BYE RTCP packet because we are leaving");
1851       goto next;
1852     }
1853
1854     switch (type) {
1855       case GST_RTCP_TYPE_SR:
1856         rtp_session_process_sr (sess, &packet, &arrival);
1857         is_sr = TRUE;
1858         break;
1859       case GST_RTCP_TYPE_RR:
1860         rtp_session_process_rr (sess, &packet, &arrival);
1861         break;
1862       case GST_RTCP_TYPE_SDES:
1863         rtp_session_process_sdes (sess, &packet, &arrival);
1864         break;
1865       case GST_RTCP_TYPE_BYE:
1866         is_bye = TRUE;
1867         rtp_session_process_bye (sess, &packet, &arrival);
1868         break;
1869       case GST_RTCP_TYPE_APP:
1870         rtp_session_process_app (sess, &packet, &arrival);
1871         break;
1872       default:
1873         GST_WARNING ("got unknown RTCP packet");
1874         break;
1875     }
1876   next:
1877     more = gst_rtcp_packet_move_to_next (&packet);
1878   }
1879
1880   /* if we are scheduling a BYE, we only want to count bye packets, else we
1881    * count everything */
1882   if (sess->source->received_bye) {
1883     if (is_bye) {
1884       sess->stats.bye_members++;
1885       UPDATE_AVG (sess->stats.avg_rtcp_packet_size, arrival.bytes);
1886     }
1887   } else {
1888     /* keep track of average packet size */
1889     UPDATE_AVG (sess->stats.avg_rtcp_packet_size, arrival.bytes);
1890   }
1891   RTP_SESSION_UNLOCK (sess);
1892
1893   /* notify caller of sr packets in the callback */
1894   if (is_sr && sess->callbacks.sync_rtcp)
1895     result = sess->callbacks.sync_rtcp (sess, sess->source, buffer,
1896         sess->sync_rtcp_user_data);
1897   else
1898     gst_buffer_unref (buffer);
1899
1900   return result;
1901
1902   /* ERRORS */
1903 invalid_packet:
1904   {
1905     GST_DEBUG ("invalid RTCP packet received");
1906     gst_buffer_unref (buffer);
1907     return GST_FLOW_OK;
1908   }
1909 ignore:
1910   {
1911     gst_buffer_unref (buffer);
1912     RTP_SESSION_UNLOCK (sess);
1913     GST_DEBUG ("ignoring RTP packet because we left");
1914     return GST_FLOW_OK;
1915   }
1916 }
1917
1918 /**
1919  * rtp_session_send_rtp:
1920  * @sess: an #RTPSession
1921  * @data: pointer to either an RTP buffer or a list of RTP buffers
1922  * @current_time: the current system time
1923  * @ntpnstime: the NTP time in nanoseconds of when this buffer was captured.
1924  * This is the buffer timestamp converted to NTP time.
1925  *
1926  * Send the RTP buffer in the session manager. This function takes ownership of
1927  * @buffer.
1928  *
1929  * Returns: a #GstFlowReturn.
1930  */
1931 GstFlowReturn
1932 rtp_session_send_rtp (RTPSession * sess, gpointer data, gboolean is_list,
1933     GstClockTime current_time, guint64 ntpnstime)
1934 {
1935   GstFlowReturn result;
1936   RTPSource *source;
1937   gboolean prevsender;
1938   gboolean valid_packet;
1939
1940   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
1941   g_return_val_if_fail (is_list || GST_IS_BUFFER (data), GST_FLOW_ERROR);
1942
1943   if (is_list) {
1944     valid_packet = gst_rtp_buffer_list_validate (GST_BUFFER_LIST_CAST (data));
1945   } else {
1946     valid_packet = gst_rtp_buffer_validate (GST_BUFFER_CAST (data));
1947   }
1948
1949   if (!valid_packet)
1950     goto invalid_packet;
1951
1952   GST_LOG ("received RTP %s for sending", is_list ? "list" : "packet");
1953
1954   RTP_SESSION_LOCK (sess);
1955   source = sess->source;
1956
1957   /* update last activity */
1958   source->last_rtp_activity = current_time;
1959
1960   prevsender = RTP_SOURCE_IS_SENDER (source);
1961
1962   /* we use our own source to send */
1963   result = rtp_source_send_rtp (source, data, is_list, ntpnstime);
1964
1965   if (RTP_SOURCE_IS_SENDER (source) && !prevsender)
1966     sess->stats.sender_sources++;
1967   RTP_SESSION_UNLOCK (sess);
1968
1969   return result;
1970
1971   /* ERRORS */
1972 invalid_packet:
1973   {
1974     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
1975     GST_DEBUG ("invalid RTP packet received");
1976     return GST_FLOW_OK;
1977   }
1978 }
1979
1980 static GstClockTime
1981 calculate_rtcp_interval (RTPSession * sess, gboolean deterministic,
1982     gboolean first)
1983 {
1984   GstClockTime result;
1985
1986   if (sess->source->received_bye) {
1987     result = rtp_stats_calculate_bye_interval (&sess->stats);
1988   } else {
1989     result = rtp_stats_calculate_rtcp_interval (&sess->stats,
1990         RTP_SOURCE_IS_SENDER (sess->source), first);
1991   }
1992
1993   GST_DEBUG ("next deterministic interval: %" GST_TIME_FORMAT ", first %d",
1994       GST_TIME_ARGS (result), first);
1995
1996   if (!deterministic)
1997     result = rtp_stats_add_rtcp_jitter (&sess->stats, result);
1998
1999   GST_DEBUG ("next interval: %" GST_TIME_FORMAT, GST_TIME_ARGS (result));
2000
2001   return result;
2002 }
2003
2004 /* Stop the current @sess and schedule a BYE message for the other members.
2005  * One must have the session lock to call this function
2006  */
2007 static GstFlowReturn
2008 rtp_session_schedule_bye_locked (RTPSession * sess, const gchar * reason,
2009     GstClockTime current_time)
2010 {
2011   GstFlowReturn result = GST_FLOW_OK;
2012   RTPSource *source;
2013   GstClockTime interval;
2014
2015   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2016
2017   source = sess->source;
2018
2019   /* ignore more BYEs */
2020   if (source->received_bye)
2021     goto done;
2022
2023   /* we have BYE now */
2024   source->received_bye = TRUE;
2025   /* at least one member wants to send a BYE */
2026   g_free (sess->bye_reason);
2027   sess->bye_reason = g_strdup (reason);
2028   sess->stats.avg_rtcp_packet_size = 100;
2029   sess->stats.bye_members = 1;
2030   sess->first_rtcp = TRUE;
2031   sess->sent_bye = FALSE;
2032
2033   /* reschedule transmission */
2034   sess->last_rtcp_send_time = current_time;
2035   interval = calculate_rtcp_interval (sess, FALSE, TRUE);
2036   sess->next_rtcp_check_time = current_time + interval;
2037
2038   GST_DEBUG ("Schedule BYE for %" GST_TIME_FORMAT ", %" GST_TIME_FORMAT,
2039       GST_TIME_ARGS (interval), GST_TIME_ARGS (sess->next_rtcp_check_time));
2040
2041   RTP_SESSION_UNLOCK (sess);
2042   /* notify app of reconsideration */
2043   if (sess->callbacks.reconsider)
2044     sess->callbacks.reconsider (sess, sess->reconsider_user_data);
2045   RTP_SESSION_LOCK (sess);
2046 done:
2047
2048   return result;
2049 }
2050
2051 /**
2052  * rtp_session_schedule_bye:
2053  * @sess: an #RTPSession
2054  * @reason: a reason or NULL
2055  * @current_time: the current system time
2056  *
2057  * Stop the current @sess and schedule a BYE message for the other members.
2058  *
2059  * Returns: a #GstFlowReturn.
2060  */
2061 GstFlowReturn
2062 rtp_session_schedule_bye (RTPSession * sess, const gchar * reason,
2063     GstClockTime current_time)
2064 {
2065   GstFlowReturn result = GST_FLOW_OK;
2066
2067   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2068
2069   RTP_SESSION_LOCK (sess);
2070   result = rtp_session_schedule_bye_locked (sess, reason, current_time);
2071   RTP_SESSION_UNLOCK (sess);
2072
2073   return result;
2074 }
2075
2076 /**
2077  * rtp_session_next_timeout:
2078  * @sess: an #RTPSession
2079  * @current_time: the current system time
2080  *
2081  * Get the next time we should perform session maintenance tasks.
2082  *
2083  * Returns: a time when rtp_session_on_timeout() should be called with the
2084  * current system time.
2085  */
2086 GstClockTime
2087 rtp_session_next_timeout (RTPSession * sess, GstClockTime current_time)
2088 {
2089   GstClockTime result;
2090
2091   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2092
2093   RTP_SESSION_LOCK (sess);
2094
2095   result = sess->next_rtcp_check_time;
2096
2097   GST_DEBUG ("current time: %" GST_TIME_FORMAT ", next :%" GST_TIME_FORMAT,
2098       GST_TIME_ARGS (current_time), GST_TIME_ARGS (result));
2099
2100   if (result < current_time) {
2101     GST_DEBUG ("take current time as base");
2102     /* our previous check time expired, start counting from the current time
2103      * again. */
2104     result = current_time;
2105   }
2106
2107   if (sess->source->received_bye) {
2108     if (sess->sent_bye) {
2109       GST_DEBUG ("we sent BYE already");
2110       result = GST_CLOCK_TIME_NONE;
2111     } else if (sess->stats.active_sources >= 50) {
2112       GST_DEBUG ("reconsider BYE, more than 50 sources");
2113       /* reconsider BYE if members >= 50 */
2114       result += calculate_rtcp_interval (sess, FALSE, TRUE);
2115     }
2116   } else {
2117     if (sess->first_rtcp) {
2118       GST_DEBUG ("first RTCP packet");
2119       /* we are called for the first time */
2120       result += calculate_rtcp_interval (sess, FALSE, TRUE);
2121     } else if (sess->next_rtcp_check_time < current_time) {
2122       GST_DEBUG ("old check time expired, getting new timeout");
2123       /* get a new timeout when we need to */
2124       result += calculate_rtcp_interval (sess, FALSE, FALSE);
2125     }
2126   }
2127   sess->next_rtcp_check_time = result;
2128
2129   GST_DEBUG ("next timeout: %" GST_TIME_FORMAT, GST_TIME_ARGS (result));
2130   RTP_SESSION_UNLOCK (sess);
2131
2132   return result;
2133 }
2134
2135 typedef struct
2136 {
2137   RTPSession *sess;
2138   GstBuffer *rtcp;
2139   GstClockTime current_time;
2140   guint64 ntpnstime;
2141   GstClockTime interval;
2142   GstRTCPPacket packet;
2143   gboolean is_bye;
2144   gboolean has_sdes;
2145 } ReportData;
2146
2147 static void
2148 session_start_rtcp (RTPSession * sess, ReportData * data)
2149 {
2150   GstRTCPPacket *packet = &data->packet;
2151   RTPSource *own = sess->source;
2152
2153   data->rtcp = gst_rtcp_buffer_new (sess->mtu);
2154
2155   if (RTP_SOURCE_IS_SENDER (own)) {
2156     guint64 ntptime;
2157     guint32 rtptime;
2158     guint32 packet_count, octet_count;
2159
2160     /* we are a sender, create SR */
2161     GST_DEBUG ("create SR for SSRC %08x", own->ssrc);
2162     gst_rtcp_buffer_add_packet (data->rtcp, GST_RTCP_TYPE_SR, packet);
2163
2164     /* get latest stats */
2165     rtp_source_get_new_sr (own, data->ntpnstime, &ntptime, &rtptime,
2166         &packet_count, &octet_count);
2167     /* store stats */
2168     rtp_source_process_sr (own, data->current_time, ntptime, rtptime,
2169         packet_count, octet_count);
2170
2171     /* fill in sender report info */
2172     gst_rtcp_packet_sr_set_sender_info (packet, own->ssrc,
2173         ntptime, rtptime, packet_count, octet_count);
2174   } else {
2175     /* we are only receiver, create RR */
2176     GST_DEBUG ("create RR for SSRC %08x", own->ssrc);
2177     gst_rtcp_buffer_add_packet (data->rtcp, GST_RTCP_TYPE_RR, packet);
2178     gst_rtcp_packet_rr_set_ssrc (packet, own->ssrc);
2179   }
2180 }
2181
2182 /* construct a Sender or Receiver Report */
2183 static void
2184 session_report_blocks (const gchar * key, RTPSource * source, ReportData * data)
2185 {
2186   RTPSession *sess = data->sess;
2187   GstRTCPPacket *packet = &data->packet;
2188
2189   /* create a new buffer if needed */
2190   if (data->rtcp == NULL) {
2191     session_start_rtcp (sess, data);
2192   }
2193   if (gst_rtcp_packet_get_rb_count (packet) < GST_RTCP_MAX_RB_COUNT) {
2194     /* only report about other sender sources */
2195     if (source != sess->source && RTP_SOURCE_IS_SENDER (source)) {
2196       guint8 fractionlost;
2197       gint32 packetslost;
2198       guint32 exthighestseq, jitter;
2199       guint32 lsr, dlsr;
2200
2201       /* get new stats */
2202       rtp_source_get_new_rb (source, data->current_time, &fractionlost,
2203           &packetslost, &exthighestseq, &jitter, &lsr, &dlsr);
2204
2205       /* packet is not yet filled, add report block for this source. */
2206       gst_rtcp_packet_add_rb (packet, source->ssrc, fractionlost, packetslost,
2207           exthighestseq, jitter, lsr, dlsr);
2208     }
2209   }
2210 }
2211
2212 /* perform cleanup of sources that timed out */
2213 static gboolean
2214 session_cleanup (const gchar * key, RTPSource * source, ReportData * data)
2215 {
2216   gboolean remove = FALSE;
2217   gboolean byetimeout = FALSE;
2218   gboolean sendertimeout = FALSE;
2219   gboolean is_sender, is_active;
2220   RTPSession *sess = data->sess;
2221   GstClockTime interval;
2222
2223   is_sender = RTP_SOURCE_IS_SENDER (source);
2224   is_active = RTP_SOURCE_IS_ACTIVE (source);
2225
2226   /* check for our own source, we don't want to delete our own source. */
2227   if (!(source == sess->source)) {
2228     if (source->received_bye) {
2229       /* if we received a BYE from the source, remove the source after some
2230        * time. */
2231       if (data->current_time > source->bye_time &&
2232           data->current_time - source->bye_time > sess->stats.bye_timeout) {
2233         GST_DEBUG ("removing BYE source %08x", source->ssrc);
2234         remove = TRUE;
2235         byetimeout = TRUE;
2236       }
2237     }
2238     /* sources that were inactive for more than 5 times the deterministic reporting
2239      * interval get timed out. the min timeout is 5 seconds. */
2240     if (data->current_time > source->last_activity) {
2241       interval = MAX (data->interval * 5, 5 * GST_SECOND);
2242       if (data->current_time - source->last_activity > interval) {
2243         GST_DEBUG ("removing timeout source %08x, last %" GST_TIME_FORMAT,
2244             source->ssrc, GST_TIME_ARGS (source->last_activity));
2245         remove = TRUE;
2246       }
2247     }
2248   }
2249
2250   /* senders that did not send for a long time become a receiver, this also
2251    * holds for our own source. */
2252   if (is_sender) {
2253     if (data->current_time > source->last_rtp_activity) {
2254       interval = MAX (data->interval * 2, 5 * GST_SECOND);
2255       if (data->current_time - source->last_rtp_activity > interval) {
2256         GST_DEBUG ("sender source %08x timed out and became receiver, last %"
2257             GST_TIME_FORMAT, source->ssrc,
2258             GST_TIME_ARGS (source->last_rtp_activity));
2259         source->is_sender = FALSE;
2260         sess->stats.sender_sources--;
2261         sendertimeout = TRUE;
2262       }
2263     }
2264   }
2265
2266   if (remove) {
2267     sess->total_sources--;
2268     if (is_sender)
2269       sess->stats.sender_sources--;
2270     if (is_active)
2271       sess->stats.active_sources--;
2272
2273     if (byetimeout)
2274       on_bye_timeout (sess, source);
2275     else
2276       on_timeout (sess, source);
2277   } else {
2278     if (sendertimeout)
2279       on_sender_timeout (sess, source);
2280   }
2281   return remove;
2282 }
2283
2284 static void
2285 session_sdes (RTPSession * sess, ReportData * data)
2286 {
2287   GstRTCPPacket *packet = &data->packet;
2288   guint8 *sdes_data;
2289   guint sdes_len;
2290
2291   /* add SDES packet */
2292   gst_rtcp_buffer_add_packet (data->rtcp, GST_RTCP_TYPE_SDES, packet);
2293
2294   gst_rtcp_packet_sdes_add_item (packet, sess->source->ssrc);
2295
2296   rtp_source_get_sdes (sess->source, GST_RTCP_SDES_CNAME, &sdes_data,
2297       &sdes_len);
2298   gst_rtcp_packet_sdes_add_entry (packet, GST_RTCP_SDES_CNAME, sdes_len,
2299       sdes_data);
2300
2301   /* other SDES items must only be added at regular intervals and only when the
2302    * user requests to since it might be a privacy problem */
2303 #if 0
2304   gst_rtcp_packet_sdes_add_entry (&packet, GST_RTCP_SDES_NAME,
2305       strlen (sess->name), (guint8 *) sess->name);
2306   gst_rtcp_packet_sdes_add_entry (&packet, GST_RTCP_SDES_TOOL,
2307       strlen (sess->tool), (guint8 *) sess->tool);
2308 #endif
2309
2310   data->has_sdes = TRUE;
2311 }
2312
2313 /* schedule a BYE packet */
2314 static void
2315 session_bye (RTPSession * sess, ReportData * data)
2316 {
2317   GstRTCPPacket *packet = &data->packet;
2318
2319   /* open packet */
2320   session_start_rtcp (sess, data);
2321
2322   /* add SDES */
2323   session_sdes (sess, data);
2324
2325   /* add a BYE packet */
2326   gst_rtcp_buffer_add_packet (data->rtcp, GST_RTCP_TYPE_BYE, packet);
2327   gst_rtcp_packet_bye_add_ssrc (packet, sess->source->ssrc);
2328   if (sess->bye_reason)
2329     gst_rtcp_packet_bye_set_reason (packet, sess->bye_reason);
2330
2331   /* we have a BYE packet now */
2332   data->is_bye = TRUE;
2333 }
2334
2335 static gboolean
2336 is_rtcp_time (RTPSession * sess, GstClockTime current_time, ReportData * data)
2337 {
2338   GstClockTime new_send_time, elapsed;
2339   gboolean result;
2340
2341   /* no need to check yet */
2342   if (sess->next_rtcp_check_time > current_time) {
2343     GST_DEBUG ("no check time yet, next %" GST_TIME_FORMAT " > now %"
2344         GST_TIME_FORMAT, GST_TIME_ARGS (sess->next_rtcp_check_time),
2345         GST_TIME_ARGS (current_time));
2346     return FALSE;
2347   }
2348
2349   /* get elapsed time since we last reported */
2350   elapsed = current_time - sess->last_rtcp_send_time;
2351
2352   /* perform forward reconsideration */
2353   new_send_time = rtp_stats_add_rtcp_jitter (&sess->stats, data->interval);
2354
2355   GST_DEBUG ("forward reconsideration %" GST_TIME_FORMAT ", elapsed %"
2356       GST_TIME_FORMAT, GST_TIME_ARGS (new_send_time), GST_TIME_ARGS (elapsed));
2357
2358   new_send_time += sess->last_rtcp_send_time;
2359
2360   /* check if reconsideration */
2361   if (current_time < new_send_time) {
2362     GST_DEBUG ("reconsider RTCP for %" GST_TIME_FORMAT,
2363         GST_TIME_ARGS (new_send_time));
2364     result = FALSE;
2365     /* store new check time */
2366     sess->next_rtcp_check_time = new_send_time;
2367   } else {
2368     result = TRUE;
2369     new_send_time = calculate_rtcp_interval (sess, FALSE, FALSE);
2370
2371     GST_DEBUG ("can send RTCP now, next interval %" GST_TIME_FORMAT,
2372         GST_TIME_ARGS (new_send_time));
2373     sess->next_rtcp_check_time = current_time + new_send_time;
2374   }
2375   return result;
2376 }
2377
2378 /**
2379  * rtp_session_on_timeout:
2380  * @sess: an #RTPSession
2381  * @current_time: the current system time
2382  * @ntpnstime: the current NTP time in nanoseconds
2383  *
2384  * Perform maintenance actions after the timeout obtained with
2385  * rtp_session_next_timeout() expired.
2386  *
2387  * This function will perform timeouts of receivers and senders, send a BYE
2388  * packet or generate RTCP packets with current session stats.
2389  *
2390  * This function can call the #RTPSessionSendRTCP callback, possibly multiple
2391  * times, for each packet that should be processed.
2392  *
2393  * Returns: a #GstFlowReturn.
2394  */
2395 GstFlowReturn
2396 rtp_session_on_timeout (RTPSession * sess, GstClockTime current_time,
2397     guint64 ntpnstime)
2398 {
2399   GstFlowReturn result = GST_FLOW_OK;
2400   GList *item;
2401   ReportData data;
2402   RTPSource *own;
2403   gboolean notify = FALSE;
2404
2405   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2406
2407   GST_DEBUG ("reporting at %" GST_TIME_FORMAT ", NTP time %" GST_TIME_FORMAT,
2408       GST_TIME_ARGS (current_time), GST_TIME_ARGS (ntpnstime));
2409
2410   data.sess = sess;
2411   data.rtcp = NULL;
2412   data.current_time = current_time;
2413   data.ntpnstime = ntpnstime;
2414   data.is_bye = FALSE;
2415   data.has_sdes = FALSE;
2416
2417   own = sess->source;
2418
2419   RTP_SESSION_LOCK (sess);
2420   /* get a new interval, we need this for various cleanups etc */
2421   data.interval = calculate_rtcp_interval (sess, TRUE, sess->first_rtcp);
2422
2423   /* first perform cleanups */
2424   g_hash_table_foreach_remove (sess->ssrcs[sess->mask_idx],
2425       (GHRFunc) session_cleanup, &data);
2426
2427   /* see if we need to generate SR or RR packets */
2428   if (is_rtcp_time (sess, current_time, &data)) {
2429     if (own->received_bye) {
2430       /* generate BYE instead */
2431       GST_DEBUG ("generating BYE message");
2432       session_bye (sess, &data);
2433       sess->sent_bye = TRUE;
2434     } else {
2435       /* loop over all known sources and do something */
2436       g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
2437           (GHFunc) session_report_blocks, &data);
2438     }
2439   }
2440
2441   if (data.rtcp) {
2442     guint size;
2443
2444     /* we keep track of the last report time in order to timeout inactive
2445      * receivers or senders */
2446     sess->last_rtcp_send_time = data.current_time;
2447     sess->first_rtcp = FALSE;
2448
2449     /* add SDES for this source when not already added */
2450     if (!data.has_sdes)
2451       session_sdes (sess, &data);
2452
2453     /* update average RTCP size before sending */
2454     size = GST_BUFFER_SIZE (data.rtcp) + sess->header_len;
2455     UPDATE_AVG (sess->stats.avg_rtcp_packet_size, size);
2456   }
2457
2458   /* check for outdated collisions */
2459   GST_DEBUG ("checking collision list");
2460   item = g_list_first (sess->conflicting_addresses);
2461   while (item) {
2462     RTPConflictingAddress *known_conflict = item->data;
2463     GList *next_item = g_list_next (item);
2464
2465     if (known_conflict->time < current_time - (data.interval *
2466             RTCP_INTERVAL_COLLISION_TIMEOUT)) {
2467       sess->conflicting_addresses =
2468           g_list_delete_link (sess->conflicting_addresses, item);
2469       GST_DEBUG ("collision %p timed out", known_conflict);
2470       g_free (known_conflict);
2471     }
2472     item = next_item;
2473   }
2474
2475   if (sess->change_ssrc) {
2476     GST_DEBUG ("need to change our SSRC (%08x)", own->ssrc);
2477     g_hash_table_steal (sess->ssrcs[sess->mask_idx],
2478         GINT_TO_POINTER (own->ssrc));
2479
2480     own->ssrc = rtp_session_create_new_ssrc (sess);
2481     rtp_source_reset (own);
2482
2483     g_hash_table_insert (sess->ssrcs[sess->mask_idx],
2484         GINT_TO_POINTER (own->ssrc), own);
2485
2486     g_free (sess->bye_reason);
2487     sess->bye_reason = NULL;
2488     sess->sent_bye = FALSE;
2489     sess->change_ssrc = FALSE;
2490     notify = TRUE;
2491     GST_DEBUG ("changed our SSRC to %08x", own->ssrc);
2492   }
2493   RTP_SESSION_UNLOCK (sess);
2494
2495   if (notify)
2496     g_object_notify (G_OBJECT (sess), "internal-ssrc");
2497
2498   /* push out the RTCP packet */
2499   if (data.rtcp) {
2500     /* close the RTCP packet */
2501     gst_rtcp_buffer_end (data.rtcp);
2502
2503     GST_DEBUG ("sending packet");
2504     if (sess->callbacks.send_rtcp)
2505       result = sess->callbacks.send_rtcp (sess, own, data.rtcp,
2506           sess->sent_bye, sess->send_rtcp_user_data);
2507     else {
2508       GST_DEBUG ("freeing packet");
2509       gst_buffer_unref (data.rtcp);
2510     }
2511   }
2512
2513   return result;
2514 }