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