session: don't make buffer writable prematurely
[platform/upstream/gst-plugins-good.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., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 /* FIXME 0.11: suppress warnings for deprecated API such as GValueArray
21  * with newer GLib versions (>= 2.31.0) */
22 #define GLIB_DISABLE_DEPRECATION_WARNINGS
23
24 #include <string.h>
25
26 #include <gst/rtp/gstrtpbuffer.h>
27 #include <gst/rtp/gstrtcpbuffer.h>
28
29 #include <gst/glib-compat-private.h>
30
31 #include "gstrtpbin-marshal.h"
32 #include "rtpsession.h"
33
34 GST_DEBUG_CATEGORY_STATIC (rtp_session_debug);
35 #define GST_CAT_DEFAULT rtp_session_debug
36
37 /* signals and args */
38 enum
39 {
40   SIGNAL_GET_SOURCE_BY_SSRC,
41   SIGNAL_ON_NEW_SSRC,
42   SIGNAL_ON_SSRC_COLLISION,
43   SIGNAL_ON_SSRC_VALIDATED,
44   SIGNAL_ON_SSRC_ACTIVE,
45   SIGNAL_ON_SSRC_SDES,
46   SIGNAL_ON_BYE_SSRC,
47   SIGNAL_ON_BYE_TIMEOUT,
48   SIGNAL_ON_TIMEOUT,
49   SIGNAL_ON_SENDER_TIMEOUT,
50   SIGNAL_ON_SENDING_RTCP,
51   SIGNAL_ON_FEEDBACK_RTCP,
52   SIGNAL_SEND_RTCP,
53   LAST_SIGNAL
54 };
55
56 #define DEFAULT_INTERNAL_SOURCE      NULL
57 #define DEFAULT_BANDWIDTH            RTP_STATS_BANDWIDTH
58 #define DEFAULT_RTCP_FRACTION        (RTP_STATS_RTCP_FRACTION * RTP_STATS_BANDWIDTH)
59 #define DEFAULT_RTCP_RR_BANDWIDTH    -1
60 #define DEFAULT_RTCP_RS_BANDWIDTH    -1
61 #define DEFAULT_RTCP_MTU             1400
62 #define DEFAULT_SDES                 NULL
63 #define DEFAULT_NUM_SOURCES          0
64 #define DEFAULT_NUM_ACTIVE_SOURCES   0
65 #define DEFAULT_SOURCES              NULL
66 #define DEFAULT_RTCP_MIN_INTERVAL    (RTP_STATS_MIN_INTERVAL * GST_SECOND)
67 #define DEFAULT_RTCP_FEEDBACK_RETENTION_WINDOW (2 * GST_SECOND)
68 #define DEFAULT_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD (3)
69 #define DEFAULT_PROBATION            RTP_DEFAULT_PROBATION
70
71 enum
72 {
73   PROP_0,
74   PROP_INTERNAL_SSRC,
75   PROP_INTERNAL_SOURCE,
76   PROP_BANDWIDTH,
77   PROP_RTCP_FRACTION,
78   PROP_RTCP_RR_BANDWIDTH,
79   PROP_RTCP_RS_BANDWIDTH,
80   PROP_RTCP_MTU,
81   PROP_SDES,
82   PROP_NUM_SOURCES,
83   PROP_NUM_ACTIVE_SOURCES,
84   PROP_SOURCES,
85   PROP_FAVOR_NEW,
86   PROP_RTCP_MIN_INTERVAL,
87   PROP_RTCP_FEEDBACK_RETENTION_WINDOW,
88   PROP_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD,
89   PROP_PROBATION,
90   PROP_LAST
91 };
92
93 /* update average packet size */
94 #define INIT_AVG(avg, val) \
95    (avg) = (val);
96 #define UPDATE_AVG(avg, val)            \
97   if ((avg) == 0)                       \
98    (avg) = (val);                       \
99   else                                  \
100    (avg) = ((val) + (15 * (avg))) >> 4;
101
102
103 /* The number RTCP intervals after which to timeout entries in the
104  * collision table
105  */
106 #define RTCP_INTERVAL_COLLISION_TIMEOUT 10
107
108 /* GObject vmethods */
109 static void rtp_session_finalize (GObject * object);
110 static void rtp_session_set_property (GObject * object, guint prop_id,
111     const GValue * value, GParamSpec * pspec);
112 static void rtp_session_get_property (GObject * object, guint prop_id,
113     GValue * value, GParamSpec * pspec);
114
115 static gboolean rtp_session_on_sending_rtcp (RTPSession * sess,
116     GstBuffer * buffer, gboolean early);
117 static void rtp_session_send_rtcp (RTPSession * sess,
118     GstClockTimeDiff max_delay);
119
120
121 static guint rtp_session_signals[LAST_SIGNAL] = { 0 };
122
123 G_DEFINE_TYPE (RTPSession, rtp_session, G_TYPE_OBJECT);
124
125 static guint32 rtp_session_create_new_ssrc (RTPSession * sess);
126 static RTPSource *obtain_source (RTPSession * sess, guint32 ssrc,
127     gboolean * created, RTPArrivalStats * arrival, gboolean rtp);
128 static RTPSource *obtain_internal_source (RTPSession * sess,
129     guint32 ssrc, gboolean * created);
130 static GstFlowReturn rtp_session_schedule_bye_locked (RTPSession * sess,
131     GstClockTime current_time);
132 static GstClockTime calculate_rtcp_interval (RTPSession * sess,
133     gboolean deterministic, gboolean first);
134
135 static gboolean
136 accumulate_trues (GSignalInvocationHint * ihint, GValue * return_accu,
137     const GValue * handler_return, gpointer data)
138 {
139   if (g_value_get_boolean (handler_return))
140     g_value_set_boolean (return_accu, TRUE);
141
142   return TRUE;
143 }
144
145 static void
146 rtp_session_class_init (RTPSessionClass * klass)
147 {
148   GObjectClass *gobject_class;
149
150   gobject_class = (GObjectClass *) klass;
151
152   gobject_class->finalize = rtp_session_finalize;
153   gobject_class->set_property = rtp_session_set_property;
154   gobject_class->get_property = rtp_session_get_property;
155
156   /**
157    * RTPSession::get-source-by-ssrc:
158    * @session: the object which received the signal
159    * @ssrc: the SSRC of the RTPSource
160    *
161    * Request the #RTPSource object with SSRC @ssrc in @session.
162    */
163   rtp_session_signals[SIGNAL_GET_SOURCE_BY_SSRC] =
164       g_signal_new ("get-source-by-ssrc", G_TYPE_FROM_CLASS (klass),
165       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (RTPSessionClass,
166           get_source_by_ssrc), NULL, NULL, gst_rtp_bin_marshal_OBJECT__UINT,
167       RTP_TYPE_SOURCE, 1, G_TYPE_UINT);
168
169   /**
170    * RTPSession::on-new-ssrc:
171    * @session: the object which received the signal
172    * @src: the new RTPSource
173    *
174    * Notify of a new SSRC that entered @session.
175    */
176   rtp_session_signals[SIGNAL_ON_NEW_SSRC] =
177       g_signal_new ("on-new-ssrc", G_TYPE_FROM_CLASS (klass),
178       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_new_ssrc),
179       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
180       RTP_TYPE_SOURCE);
181   /**
182    * RTPSession::on-ssrc-collision:
183    * @session: the object which received the signal
184    * @src: the #RTPSource that caused a collision
185    *
186    * Notify when we have an SSRC collision
187    */
188   rtp_session_signals[SIGNAL_ON_SSRC_COLLISION] =
189       g_signal_new ("on-ssrc-collision", G_TYPE_FROM_CLASS (klass),
190       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_collision),
191       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
192       RTP_TYPE_SOURCE);
193   /**
194    * RTPSession::on-ssrc-validated:
195    * @session: the object which received the signal
196    * @src: the new validated RTPSource
197    *
198    * Notify of a new SSRC that became validated.
199    */
200   rtp_session_signals[SIGNAL_ON_SSRC_VALIDATED] =
201       g_signal_new ("on-ssrc-validated", G_TYPE_FROM_CLASS (klass),
202       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_validated),
203       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
204       RTP_TYPE_SOURCE);
205   /**
206    * RTPSession::on-ssrc-active:
207    * @session: the object which received the signal
208    * @src: the active RTPSource
209    *
210    * Notify of a SSRC that is active, i.e., sending RTCP.
211    */
212   rtp_session_signals[SIGNAL_ON_SSRC_ACTIVE] =
213       g_signal_new ("on-ssrc-active", G_TYPE_FROM_CLASS (klass),
214       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_active),
215       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
216       RTP_TYPE_SOURCE);
217   /**
218    * RTPSession::on-ssrc-sdes:
219    * @session: the object which received the signal
220    * @src: the RTPSource
221    *
222    * Notify that a new SDES was received for SSRC.
223    */
224   rtp_session_signals[SIGNAL_ON_SSRC_SDES] =
225       g_signal_new ("on-ssrc-sdes", G_TYPE_FROM_CLASS (klass),
226       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_sdes),
227       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
228       RTP_TYPE_SOURCE);
229   /**
230    * RTPSession::on-bye-ssrc:
231    * @session: the object which received the signal
232    * @src: the RTPSource that went away
233    *
234    * Notify of an SSRC that became inactive because of a BYE packet.
235    */
236   rtp_session_signals[SIGNAL_ON_BYE_SSRC] =
237       g_signal_new ("on-bye-ssrc", G_TYPE_FROM_CLASS (klass),
238       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_bye_ssrc),
239       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
240       RTP_TYPE_SOURCE);
241   /**
242    * RTPSession::on-bye-timeout:
243    * @session: the object which received the signal
244    * @src: the RTPSource that timed out
245    *
246    * Notify of an SSRC that has timed out because of BYE
247    */
248   rtp_session_signals[SIGNAL_ON_BYE_TIMEOUT] =
249       g_signal_new ("on-bye-timeout", G_TYPE_FROM_CLASS (klass),
250       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_bye_timeout),
251       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
252       RTP_TYPE_SOURCE);
253   /**
254    * RTPSession::on-timeout:
255    * @session: the object which received the signal
256    * @src: the RTPSource that timed out
257    *
258    * Notify of an SSRC that has timed out
259    */
260   rtp_session_signals[SIGNAL_ON_TIMEOUT] =
261       g_signal_new ("on-timeout", G_TYPE_FROM_CLASS (klass),
262       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_timeout),
263       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
264       RTP_TYPE_SOURCE);
265   /**
266    * RTPSession::on-sender-timeout:
267    * @session: the object which received the signal
268    * @src: the RTPSource that timed out
269    *
270    * Notify of an SSRC that was a sender but timed out and became a receiver.
271    */
272   rtp_session_signals[SIGNAL_ON_SENDER_TIMEOUT] =
273       g_signal_new ("on-sender-timeout", G_TYPE_FROM_CLASS (klass),
274       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_sender_timeout),
275       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
276       RTP_TYPE_SOURCE);
277
278   /**
279    * RTPSession::on-sending-rtcp
280    * @session: the object which received the signal
281    * @buffer: the #GstBuffer containing the RTCP packet about to be sent
282    * @early: %TRUE if the packet is early, %FALSE if it is regular
283    *
284    * This signal is emitted before sending an RTCP packet, it can be used
285    * to add extra RTCP Packets.
286    *
287    * Returns: %TRUE if the RTCP buffer should NOT be suppressed, %FALSE
288    * if suppressing it is acceptable
289    */
290   rtp_session_signals[SIGNAL_ON_SENDING_RTCP] =
291       g_signal_new ("on-sending-rtcp", G_TYPE_FROM_CLASS (klass),
292       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_sending_rtcp),
293       accumulate_trues, NULL, gst_rtp_bin_marshal_BOOLEAN__BOXED_BOOLEAN,
294       G_TYPE_BOOLEAN, 2, GST_TYPE_BUFFER | G_SIGNAL_TYPE_STATIC_SCOPE,
295       G_TYPE_BOOLEAN);
296
297   /**
298    * RTPSession::on-feedback-rtcp:
299    * @session: the object which received the signal
300    * @type: Type of RTCP packet, will be %GST_RTCP_TYPE_RTPFB or
301    *  %GST_RTCP_TYPE_RTPFB
302    * @fbtype: The type of RTCP FB packet, probably part of #GstRTCPFBType
303    * @sender_ssrc: The SSRC of the sender
304    * @media_ssrc: The SSRC of the media this refers to
305    * @fci: a #GstBuffer with the FCI data from the FB packet or %NULL if
306    * there was no FCI
307    *
308    * Notify that a RTCP feedback packet has been received
309    */
310   rtp_session_signals[SIGNAL_ON_FEEDBACK_RTCP] =
311       g_signal_new ("on-feedback-rtcp", G_TYPE_FROM_CLASS (klass),
312       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_feedback_rtcp),
313       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT_UINT_UINT_BOXED,
314       G_TYPE_NONE, 5, G_TYPE_UINT, G_TYPE_UINT, G_TYPE_UINT, G_TYPE_UINT,
315       GST_TYPE_BUFFER);
316
317   /**
318    * RTPSession::send-rtcp:
319    * @session: the object which received the signal
320    * @max_delay: The maximum delay after which the feedback will not be useful
321    *  anymore
322    *
323    * Requests that the #RTPSession initiate a new RTCP packet as soon as
324    * possible within the requested delay.
325    */
326   rtp_session_signals[SIGNAL_SEND_RTCP] =
327       g_signal_new ("send-rtcp", G_TYPE_FROM_CLASS (klass),
328       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
329       G_STRUCT_OFFSET (RTPSessionClass, send_rtcp), NULL, NULL,
330       gst_rtp_bin_marshal_VOID__UINT64, G_TYPE_NONE, 1, G_TYPE_UINT64);
331
332   g_object_class_install_property (gobject_class, PROP_INTERNAL_SSRC,
333       g_param_spec_uint ("internal-ssrc", "Internal SSRC",
334           "The internal SSRC used for the session (deprecated)",
335           0, G_MAXUINT, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
336
337   g_object_class_install_property (gobject_class, PROP_INTERNAL_SOURCE,
338       g_param_spec_object ("internal-source", "Internal Source",
339           "The internal source element of the session (deprecated)",
340           RTP_TYPE_SOURCE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
341
342   g_object_class_install_property (gobject_class, PROP_BANDWIDTH,
343       g_param_spec_double ("bandwidth", "Bandwidth",
344           "The bandwidth of the session (0 for auto-discover)",
345           0.0, G_MAXDOUBLE, DEFAULT_BANDWIDTH,
346           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
347
348   g_object_class_install_property (gobject_class, PROP_RTCP_FRACTION,
349       g_param_spec_double ("rtcp-fraction", "RTCP Fraction",
350           "The fraction of the bandwidth used for RTCP (or as a real fraction of the RTP bandwidth if < 1)",
351           0.0, G_MAXDOUBLE, DEFAULT_RTCP_FRACTION,
352           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
353
354   g_object_class_install_property (gobject_class, PROP_RTCP_RR_BANDWIDTH,
355       g_param_spec_int ("rtcp-rr-bandwidth", "RTCP RR bandwidth",
356           "The RTCP bandwidth used for receivers in bytes per second (-1 = default)",
357           -1, G_MAXINT, DEFAULT_RTCP_RR_BANDWIDTH,
358           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
359
360   g_object_class_install_property (gobject_class, PROP_RTCP_RS_BANDWIDTH,
361       g_param_spec_int ("rtcp-rs-bandwidth", "RTCP RS bandwidth",
362           "The RTCP bandwidth used for senders in bytes per second (-1 = default)",
363           -1, G_MAXINT, DEFAULT_RTCP_RS_BANDWIDTH,
364           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
365
366   g_object_class_install_property (gobject_class, PROP_RTCP_MTU,
367       g_param_spec_uint ("rtcp-mtu", "RTCP MTU",
368           "The maximum size of the RTCP packets",
369           16, G_MAXINT16, DEFAULT_RTCP_MTU,
370           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
371
372   g_object_class_install_property (gobject_class, PROP_SDES,
373       g_param_spec_boxed ("sdes", "SDES",
374           "The SDES items of this session",
375           GST_TYPE_STRUCTURE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
376
377   g_object_class_install_property (gobject_class, PROP_NUM_SOURCES,
378       g_param_spec_uint ("num-sources", "Num Sources",
379           "The number of sources in the session", 0, G_MAXUINT,
380           DEFAULT_NUM_SOURCES, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
381
382   g_object_class_install_property (gobject_class, PROP_NUM_ACTIVE_SOURCES,
383       g_param_spec_uint ("num-active-sources", "Num Active Sources",
384           "The number of active sources in the session", 0, G_MAXUINT,
385           DEFAULT_NUM_ACTIVE_SOURCES,
386           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
387   /**
388    * RTPSource::sources
389    *
390    * Get a GValue Array of all sources in the session.
391    *
392    * <example>
393    * <title>Getting the #RTPSources of a session
394    * <programlisting>
395    * {
396    *   GValueArray *arr;
397    *   GValue *val;
398    *   guint i;
399    *
400    *   g_object_get (sess, "sources", &arr, NULL);
401    *
402    *   for (i = 0; i < arr->n_values; i++) {
403    *     RTPSource *source;
404    *
405    *     val = g_value_array_get_nth (arr, i);
406    *     source = g_value_get_object (val);
407    *   }
408    *   g_value_array_free (arr);
409    * }
410    * </programlisting>
411    * </example>
412    */
413   g_object_class_install_property (gobject_class, PROP_SOURCES,
414       g_param_spec_boxed ("sources", "Sources",
415           "An array of all known sources in the session",
416           G_TYPE_VALUE_ARRAY, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
417
418   g_object_class_install_property (gobject_class, PROP_FAVOR_NEW,
419       g_param_spec_boolean ("favor-new", "Favor new sources",
420           "Resolve SSRC conflict in favor of new sources", FALSE,
421           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
422
423   g_object_class_install_property (gobject_class, PROP_RTCP_MIN_INTERVAL,
424       g_param_spec_uint64 ("rtcp-min-interval", "Minimum RTCP interval",
425           "Minimum interval between Regular RTCP packet (in ns)",
426           0, G_MAXUINT64, DEFAULT_RTCP_MIN_INTERVAL,
427           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
428
429   g_object_class_install_property (gobject_class,
430       PROP_RTCP_FEEDBACK_RETENTION_WINDOW,
431       g_param_spec_uint64 ("rtcp-feedback-retention-window",
432           "RTCP Feedback retention window",
433           "Duration during which RTCP Feedback packets are retained (in ns)",
434           0, G_MAXUINT64, DEFAULT_RTCP_FEEDBACK_RETENTION_WINDOW,
435           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
436
437   g_object_class_install_property (gobject_class,
438       PROP_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD,
439       g_param_spec_uint ("rtcp-immediate-feedback-threshold",
440           "RTCP Immediate Feedback threshold",
441           "The maximum number of members of a RTP session for which immediate"
442           " feedback is used",
443           0, G_MAXUINT, DEFAULT_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD,
444           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
445
446   g_object_class_install_property (gobject_class, PROP_PROBATION,
447       g_param_spec_uint ("probation", "Number of probations",
448           "Consecutive packet sequence numbers to accept the source",
449           0, G_MAXUINT, DEFAULT_PROBATION,
450           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
451
452   klass->get_source_by_ssrc =
453       GST_DEBUG_FUNCPTR (rtp_session_get_source_by_ssrc);
454   klass->on_sending_rtcp = GST_DEBUG_FUNCPTR (rtp_session_on_sending_rtcp);
455   klass->send_rtcp = GST_DEBUG_FUNCPTR (rtp_session_send_rtcp);
456
457   GST_DEBUG_CATEGORY_INIT (rtp_session_debug, "rtpsession", 0, "RTP Session");
458 }
459
460 static void
461 rtp_session_init (RTPSession * sess)
462 {
463   gint i;
464   gchar *str;
465
466   g_mutex_init (&sess->lock);
467   sess->key = g_random_int ();
468   sess->mask_idx = 0;
469   sess->mask = 0;
470
471   for (i = 0; i < 32; i++) {
472     sess->ssrcs[i] =
473         g_hash_table_new_full (NULL, NULL, NULL,
474         (GDestroyNotify) g_object_unref);
475   }
476
477   rtp_stats_init_defaults (&sess->stats);
478   INIT_AVG (sess->stats.avg_rtcp_packet_size, 100);
479   rtp_stats_set_min_interval (&sess->stats,
480       (gdouble) DEFAULT_RTCP_MIN_INTERVAL / GST_SECOND);
481
482   sess->recalc_bandwidth = TRUE;
483   sess->bandwidth = DEFAULT_BANDWIDTH;
484   sess->rtcp_bandwidth = DEFAULT_RTCP_FRACTION;
485   sess->rtcp_rr_bandwidth = DEFAULT_RTCP_RR_BANDWIDTH;
486   sess->rtcp_rs_bandwidth = DEFAULT_RTCP_RS_BANDWIDTH;
487
488   /* default UDP header length */
489   sess->header_len = 28;
490   sess->mtu = DEFAULT_RTCP_MTU;
491
492   sess->probation = DEFAULT_PROBATION;
493
494   /* some default SDES entries */
495   sess->sdes = gst_structure_new_empty ("application/x-rtp-source-sdes");
496
497   /* we do not want to leak details like the username or hostname here */
498   str = g_strdup_printf ("user%u@host-%x", g_random_int (), g_random_int ());
499   gst_structure_set (sess->sdes, "cname", G_TYPE_STRING, str, NULL);
500   g_free (str);
501
502 #if 0
503   /* we do not want to leak the user's real name here */
504   str = g_strdup_printf ("Anon%u", g_random_int ());
505   gst_structure_set (sdes, "name", G_TYPE_STRING, str, NULL);
506   g_free (str);
507 #endif
508
509   gst_structure_set (sess->sdes, "tool", G_TYPE_STRING, "GStreamer", NULL);
510
511   /* this is the SSRC we suggest */
512   sess->suggested_ssrc = rtp_session_create_new_ssrc (sess);
513
514   sess->first_rtcp = TRUE;
515   sess->next_rtcp_check_time = GST_CLOCK_TIME_NONE;
516
517   sess->allow_early = TRUE;
518   sess->next_early_rtcp_time = GST_CLOCK_TIME_NONE;
519   sess->rtcp_feedback_retention_window = DEFAULT_RTCP_FEEDBACK_RETENTION_WINDOW;
520   sess->rtcp_immediate_feedback_threshold =
521       DEFAULT_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD;
522
523   sess->last_keyframe_request = GST_CLOCK_TIME_NONE;
524 }
525
526 static void
527 rtp_session_finalize (GObject * object)
528 {
529   RTPSession *sess;
530   gint i;
531
532   sess = RTP_SESSION_CAST (object);
533
534   gst_structure_free (sess->sdes);
535
536   for (i = 0; i < 32; i++)
537     g_hash_table_destroy (sess->ssrcs[i]);
538
539   g_mutex_clear (&sess->lock);
540
541   G_OBJECT_CLASS (rtp_session_parent_class)->finalize (object);
542 }
543
544 static void
545 copy_source (gpointer key, RTPSource * source, GValueArray * arr)
546 {
547   GValue value = { 0 };
548
549   g_value_init (&value, RTP_TYPE_SOURCE);
550   g_value_take_object (&value, source);
551   /* copies the value */
552   g_value_array_append (arr, &value);
553 }
554
555 static GValueArray *
556 rtp_session_create_sources (RTPSession * sess)
557 {
558   GValueArray *res;
559   guint size;
560
561   RTP_SESSION_LOCK (sess);
562   /* get number of elements in the table */
563   size = g_hash_table_size (sess->ssrcs[sess->mask_idx]);
564   /* create the result value array */
565   res = g_value_array_new (size);
566
567   /* and copy all values into the array */
568   g_hash_table_foreach (sess->ssrcs[sess->mask_idx], (GHFunc) copy_source, res);
569   RTP_SESSION_UNLOCK (sess);
570
571   return res;
572 }
573
574 static void
575 rtp_session_set_property (GObject * object, guint prop_id,
576     const GValue * value, GParamSpec * pspec)
577 {
578   RTPSession *sess;
579
580   sess = RTP_SESSION (object);
581
582   switch (prop_id) {
583     case PROP_INTERNAL_SSRC:
584       break;
585     case PROP_BANDWIDTH:
586       RTP_SESSION_LOCK (sess);
587       sess->bandwidth = g_value_get_double (value);
588       sess->recalc_bandwidth = TRUE;
589       RTP_SESSION_UNLOCK (sess);
590       break;
591     case PROP_RTCP_FRACTION:
592       RTP_SESSION_LOCK (sess);
593       sess->rtcp_bandwidth = g_value_get_double (value);
594       sess->recalc_bandwidth = TRUE;
595       RTP_SESSION_UNLOCK (sess);
596       break;
597     case PROP_RTCP_RR_BANDWIDTH:
598       RTP_SESSION_LOCK (sess);
599       sess->rtcp_rr_bandwidth = g_value_get_int (value);
600       sess->recalc_bandwidth = TRUE;
601       RTP_SESSION_UNLOCK (sess);
602       break;
603     case PROP_RTCP_RS_BANDWIDTH:
604       RTP_SESSION_LOCK (sess);
605       sess->rtcp_rs_bandwidth = g_value_get_int (value);
606       sess->recalc_bandwidth = TRUE;
607       RTP_SESSION_UNLOCK (sess);
608       break;
609     case PROP_RTCP_MTU:
610       sess->mtu = g_value_get_uint (value);
611       break;
612     case PROP_SDES:
613       rtp_session_set_sdes_struct (sess, g_value_get_boxed (value));
614       break;
615     case PROP_FAVOR_NEW:
616       sess->favor_new = g_value_get_boolean (value);
617       break;
618     case PROP_RTCP_MIN_INTERVAL:
619       rtp_stats_set_min_interval (&sess->stats,
620           (gdouble) g_value_get_uint64 (value) / GST_SECOND);
621       /* trigger reconsideration */
622       RTP_SESSION_LOCK (sess);
623       sess->next_rtcp_check_time = 0;
624       RTP_SESSION_UNLOCK (sess);
625       if (sess->callbacks.reconsider)
626         sess->callbacks.reconsider (sess, sess->reconsider_user_data);
627       break;
628     case PROP_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD:
629       sess->rtcp_immediate_feedback_threshold = g_value_get_uint (value);
630       break;
631     case PROP_PROBATION:
632       sess->probation = g_value_get_uint (value);
633       break;
634     default:
635       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
636       break;
637   }
638 }
639
640 static void
641 rtp_session_get_property (GObject * object, guint prop_id,
642     GValue * value, GParamSpec * pspec)
643 {
644   RTPSession *sess;
645
646   sess = RTP_SESSION (object);
647
648   switch (prop_id) {
649     case PROP_INTERNAL_SSRC:
650       g_value_set_uint (value, rtp_session_suggest_ssrc (sess));
651       break;
652     case PROP_INTERNAL_SOURCE:
653       /* FIXME, return a random source */
654       g_value_set_object (value, NULL);
655       break;
656     case PROP_BANDWIDTH:
657       g_value_set_double (value, sess->bandwidth);
658       break;
659     case PROP_RTCP_FRACTION:
660       g_value_set_double (value, sess->rtcp_bandwidth);
661       break;
662     case PROP_RTCP_RR_BANDWIDTH:
663       g_value_set_int (value, sess->rtcp_rr_bandwidth);
664       break;
665     case PROP_RTCP_RS_BANDWIDTH:
666       g_value_set_int (value, sess->rtcp_rs_bandwidth);
667       break;
668     case PROP_RTCP_MTU:
669       g_value_set_uint (value, sess->mtu);
670       break;
671     case PROP_SDES:
672       g_value_take_boxed (value, rtp_session_get_sdes_struct (sess));
673       break;
674     case PROP_NUM_SOURCES:
675       g_value_set_uint (value, rtp_session_get_num_sources (sess));
676       break;
677     case PROP_NUM_ACTIVE_SOURCES:
678       g_value_set_uint (value, rtp_session_get_num_active_sources (sess));
679       break;
680     case PROP_SOURCES:
681       g_value_take_boxed (value, rtp_session_create_sources (sess));
682       break;
683     case PROP_FAVOR_NEW:
684       g_value_set_boolean (value, sess->favor_new);
685       break;
686     case PROP_RTCP_MIN_INTERVAL:
687       g_value_set_uint64 (value, sess->stats.min_interval * GST_SECOND);
688       break;
689     case PROP_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD:
690       g_value_set_uint (value, sess->rtcp_immediate_feedback_threshold);
691       break;
692     case PROP_PROBATION:
693       g_value_set_uint (value, sess->probation);
694       break;
695     default:
696       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
697       break;
698   }
699 }
700
701 static void
702 on_new_ssrc (RTPSession * sess, RTPSource * source)
703 {
704   g_object_ref (source);
705   RTP_SESSION_UNLOCK (sess);
706   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_NEW_SSRC], 0, source);
707   RTP_SESSION_LOCK (sess);
708   g_object_unref (source);
709 }
710
711 static void
712 on_ssrc_collision (RTPSession * sess, RTPSource * source)
713 {
714   g_object_ref (source);
715   RTP_SESSION_UNLOCK (sess);
716   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_COLLISION], 0,
717       source);
718   RTP_SESSION_LOCK (sess);
719   g_object_unref (source);
720 }
721
722 static void
723 on_ssrc_validated (RTPSession * sess, RTPSource * source)
724 {
725   g_object_ref (source);
726   RTP_SESSION_UNLOCK (sess);
727   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_VALIDATED], 0,
728       source);
729   RTP_SESSION_LOCK (sess);
730   g_object_unref (source);
731 }
732
733 static void
734 on_ssrc_active (RTPSession * sess, RTPSource * source)
735 {
736   g_object_ref (source);
737   RTP_SESSION_UNLOCK (sess);
738   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_ACTIVE], 0, source);
739   RTP_SESSION_LOCK (sess);
740   g_object_unref (source);
741 }
742
743 static void
744 on_ssrc_sdes (RTPSession * sess, RTPSource * source)
745 {
746   g_object_ref (source);
747   GST_DEBUG ("SDES changed for SSRC %08x", source->ssrc);
748   RTP_SESSION_UNLOCK (sess);
749   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_SDES], 0, source);
750   RTP_SESSION_LOCK (sess);
751   g_object_unref (source);
752 }
753
754 static void
755 on_bye_ssrc (RTPSession * sess, RTPSource * source)
756 {
757   g_object_ref (source);
758   RTP_SESSION_UNLOCK (sess);
759   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_BYE_SSRC], 0, source);
760   RTP_SESSION_LOCK (sess);
761   g_object_unref (source);
762 }
763
764 static void
765 on_bye_timeout (RTPSession * sess, RTPSource * source)
766 {
767   g_object_ref (source);
768   RTP_SESSION_UNLOCK (sess);
769   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_BYE_TIMEOUT], 0, source);
770   RTP_SESSION_LOCK (sess);
771   g_object_unref (source);
772 }
773
774 static void
775 on_timeout (RTPSession * sess, RTPSource * source)
776 {
777   g_object_ref (source);
778   RTP_SESSION_UNLOCK (sess);
779   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_TIMEOUT], 0, source);
780   RTP_SESSION_LOCK (sess);
781   g_object_unref (source);
782 }
783
784 static void
785 on_sender_timeout (RTPSession * sess, RTPSource * source)
786 {
787   g_object_ref (source);
788   RTP_SESSION_UNLOCK (sess);
789   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SENDER_TIMEOUT], 0,
790       source);
791   RTP_SESSION_LOCK (sess);
792   g_object_unref (source);
793 }
794
795 /**
796  * rtp_session_new:
797  *
798  * Create a new session object.
799  *
800  * Returns: a new #RTPSession. g_object_unref() after usage.
801  */
802 RTPSession *
803 rtp_session_new (void)
804 {
805   RTPSession *sess;
806
807   sess = g_object_new (RTP_TYPE_SESSION, NULL);
808
809   return sess;
810 }
811
812 /**
813  * rtp_session_set_callbacks:
814  * @sess: an #RTPSession
815  * @callbacks: callbacks to configure
816  * @user_data: user data passed in the callbacks
817  *
818  * Configure a set of callbacks to be notified of actions.
819  */
820 void
821 rtp_session_set_callbacks (RTPSession * sess, RTPSessionCallbacks * callbacks,
822     gpointer user_data)
823 {
824   g_return_if_fail (RTP_IS_SESSION (sess));
825
826   if (callbacks->process_rtp) {
827     sess->callbacks.process_rtp = callbacks->process_rtp;
828     sess->process_rtp_user_data = user_data;
829   }
830   if (callbacks->send_rtp) {
831     sess->callbacks.send_rtp = callbacks->send_rtp;
832     sess->send_rtp_user_data = user_data;
833   }
834   if (callbacks->send_rtcp) {
835     sess->callbacks.send_rtcp = callbacks->send_rtcp;
836     sess->send_rtcp_user_data = user_data;
837   }
838   if (callbacks->sync_rtcp) {
839     sess->callbacks.sync_rtcp = callbacks->sync_rtcp;
840     sess->sync_rtcp_user_data = user_data;
841   }
842   if (callbacks->clock_rate) {
843     sess->callbacks.clock_rate = callbacks->clock_rate;
844     sess->clock_rate_user_data = user_data;
845   }
846   if (callbacks->reconsider) {
847     sess->callbacks.reconsider = callbacks->reconsider;
848     sess->reconsider_user_data = user_data;
849   }
850   if (callbacks->request_key_unit) {
851     sess->callbacks.request_key_unit = callbacks->request_key_unit;
852     sess->request_key_unit_user_data = user_data;
853   }
854   if (callbacks->request_time) {
855     sess->callbacks.request_time = callbacks->request_time;
856     sess->request_time_user_data = user_data;
857   }
858 }
859
860 /**
861  * rtp_session_set_process_rtp_callback:
862  * @sess: an #RTPSession
863  * @callback: callback to set
864  * @user_data: user data passed in the callback
865  *
866  * Configure only the process_rtp callback to be notified of the process_rtp action.
867  */
868 void
869 rtp_session_set_process_rtp_callback (RTPSession * sess,
870     RTPSessionProcessRTP callback, gpointer user_data)
871 {
872   g_return_if_fail (RTP_IS_SESSION (sess));
873
874   sess->callbacks.process_rtp = callback;
875   sess->process_rtp_user_data = user_data;
876 }
877
878 /**
879  * rtp_session_set_send_rtp_callback:
880  * @sess: an #RTPSession
881  * @callback: callback to set
882  * @user_data: user data passed in the callback
883  *
884  * Configure only the send_rtp callback to be notified of the send_rtp action.
885  */
886 void
887 rtp_session_set_send_rtp_callback (RTPSession * sess,
888     RTPSessionSendRTP callback, gpointer user_data)
889 {
890   g_return_if_fail (RTP_IS_SESSION (sess));
891
892   sess->callbacks.send_rtp = callback;
893   sess->send_rtp_user_data = user_data;
894 }
895
896 /**
897  * rtp_session_set_send_rtcp_callback:
898  * @sess: an #RTPSession
899  * @callback: callback to set
900  * @user_data: user data passed in the callback
901  *
902  * Configure only the send_rtcp callback to be notified of the send_rtcp action.
903  */
904 void
905 rtp_session_set_send_rtcp_callback (RTPSession * sess,
906     RTPSessionSendRTCP callback, gpointer user_data)
907 {
908   g_return_if_fail (RTP_IS_SESSION (sess));
909
910   sess->callbacks.send_rtcp = callback;
911   sess->send_rtcp_user_data = user_data;
912 }
913
914 /**
915  * rtp_session_set_sync_rtcp_callback:
916  * @sess: an #RTPSession
917  * @callback: callback to set
918  * @user_data: user data passed in the callback
919  *
920  * Configure only the sync_rtcp callback to be notified of the sync_rtcp action.
921  */
922 void
923 rtp_session_set_sync_rtcp_callback (RTPSession * sess,
924     RTPSessionSyncRTCP callback, gpointer user_data)
925 {
926   g_return_if_fail (RTP_IS_SESSION (sess));
927
928   sess->callbacks.sync_rtcp = callback;
929   sess->sync_rtcp_user_data = user_data;
930 }
931
932 /**
933  * rtp_session_set_clock_rate_callback:
934  * @sess: an #RTPSession
935  * @callback: callback to set
936  * @user_data: user data passed in the callback
937  *
938  * Configure only the clock_rate callback to be notified of the clock_rate action.
939  */
940 void
941 rtp_session_set_clock_rate_callback (RTPSession * sess,
942     RTPSessionClockRate callback, gpointer user_data)
943 {
944   g_return_if_fail (RTP_IS_SESSION (sess));
945
946   sess->callbacks.clock_rate = callback;
947   sess->clock_rate_user_data = user_data;
948 }
949
950 /**
951  * rtp_session_set_reconsider_callback:
952  * @sess: an #RTPSession
953  * @callback: callback to set
954  * @user_data: user data passed in the callback
955  *
956  * Configure only the reconsider callback to be notified of the reconsider action.
957  */
958 void
959 rtp_session_set_reconsider_callback (RTPSession * sess,
960     RTPSessionReconsider callback, gpointer user_data)
961 {
962   g_return_if_fail (RTP_IS_SESSION (sess));
963
964   sess->callbacks.reconsider = callback;
965   sess->reconsider_user_data = user_data;
966 }
967
968 /**
969  * rtp_session_set_request_time_callback:
970  * @sess: an #RTPSession
971  * @callback: callback to set
972  * @user_data: user data passed in the callback
973  *
974  * Configure only the request_time callback
975  */
976 void
977 rtp_session_set_request_time_callback (RTPSession * sess,
978     RTPSessionRequestTime callback, gpointer user_data)
979 {
980   g_return_if_fail (RTP_IS_SESSION (sess));
981
982   sess->callbacks.request_time = callback;
983   sess->request_time_user_data = user_data;
984 }
985
986 /**
987  * rtp_session_set_bandwidth:
988  * @sess: an #RTPSession
989  * @bandwidth: the bandwidth allocated
990  *
991  * Set the session bandwidth in bytes per second.
992  */
993 void
994 rtp_session_set_bandwidth (RTPSession * sess, gdouble bandwidth)
995 {
996   g_return_if_fail (RTP_IS_SESSION (sess));
997
998   RTP_SESSION_LOCK (sess);
999   sess->stats.bandwidth = bandwidth;
1000   RTP_SESSION_UNLOCK (sess);
1001 }
1002
1003 /**
1004  * rtp_session_get_bandwidth:
1005  * @sess: an #RTPSession
1006  *
1007  * Get the session bandwidth.
1008  *
1009  * Returns: the session bandwidth.
1010  */
1011 gdouble
1012 rtp_session_get_bandwidth (RTPSession * sess)
1013 {
1014   gdouble result;
1015
1016   g_return_val_if_fail (RTP_IS_SESSION (sess), 0);
1017
1018   RTP_SESSION_LOCK (sess);
1019   result = sess->stats.bandwidth;
1020   RTP_SESSION_UNLOCK (sess);
1021
1022   return result;
1023 }
1024
1025 /**
1026  * rtp_session_set_rtcp_fraction:
1027  * @sess: an #RTPSession
1028  * @bandwidth: the RTCP bandwidth
1029  *
1030  * Set the bandwidth in bytes per second that should be used for RTCP
1031  * messages.
1032  */
1033 void
1034 rtp_session_set_rtcp_fraction (RTPSession * sess, gdouble bandwidth)
1035 {
1036   g_return_if_fail (RTP_IS_SESSION (sess));
1037
1038   RTP_SESSION_LOCK (sess);
1039   sess->stats.rtcp_bandwidth = bandwidth;
1040   RTP_SESSION_UNLOCK (sess);
1041 }
1042
1043 /**
1044  * rtp_session_get_rtcp_fraction:
1045  * @sess: an #RTPSession
1046  *
1047  * Get the session bandwidth used for RTCP.
1048  *
1049  * Returns: The bandwidth used for RTCP messages.
1050  */
1051 gdouble
1052 rtp_session_get_rtcp_fraction (RTPSession * sess)
1053 {
1054   gdouble result;
1055
1056   g_return_val_if_fail (RTP_IS_SESSION (sess), 0.0);
1057
1058   RTP_SESSION_LOCK (sess);
1059   result = sess->stats.rtcp_bandwidth;
1060   RTP_SESSION_UNLOCK (sess);
1061
1062   return result;
1063 }
1064
1065 /**
1066  * rtp_session_get_sdes_struct:
1067  * @sess: an #RTSPSession
1068  *
1069  * Get the SDES data as a #GstStructure
1070  *
1071  * Returns: a GstStructure with SDES items for @sess. This function returns a
1072  * copy of the SDES structure, use gst_structure_free() after usage.
1073  */
1074 GstStructure *
1075 rtp_session_get_sdes_struct (RTPSession * sess)
1076 {
1077   GstStructure *result = NULL;
1078
1079   g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
1080
1081   RTP_SESSION_LOCK (sess);
1082   if (sess->sdes)
1083     result = gst_structure_copy (sess->sdes);
1084   RTP_SESSION_UNLOCK (sess);
1085
1086   return result;
1087 }
1088
1089 /**
1090  * rtp_session_set_sdes_struct:
1091  * @sess: an #RTSPSession
1092  * @sdes: a #GstStructure
1093  *
1094  * Set the SDES data as a #GstStructure. This function makes a copy of @sdes.
1095  */
1096 void
1097 rtp_session_set_sdes_struct (RTPSession * sess, const GstStructure * sdes)
1098 {
1099   g_return_if_fail (sdes);
1100   g_return_if_fail (RTP_IS_SESSION (sess));
1101
1102   RTP_SESSION_LOCK (sess);
1103   if (sess->sdes)
1104     gst_structure_free (sess->sdes);
1105   sess->sdes = gst_structure_copy (sdes);
1106   RTP_SESSION_UNLOCK (sess);
1107 }
1108
1109 static GstFlowReturn
1110 source_push_rtp (RTPSource * source, gpointer data, RTPSession * session)
1111 {
1112   GstFlowReturn result = GST_FLOW_OK;
1113
1114   if (source->internal) {
1115     GST_LOG ("source %08x pushed sender RTP packet", source->ssrc);
1116
1117     RTP_SESSION_UNLOCK (session);
1118
1119     if (session->callbacks.send_rtp)
1120       result =
1121           session->callbacks.send_rtp (session, source, data,
1122           session->send_rtp_user_data);
1123     else {
1124       gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
1125     }
1126   } else {
1127     GST_LOG ("source %08x pushed receiver RTP packet", source->ssrc);
1128     RTP_SESSION_UNLOCK (session);
1129
1130     if (session->callbacks.process_rtp)
1131       result =
1132           session->callbacks.process_rtp (session, source,
1133           GST_BUFFER_CAST (data), session->process_rtp_user_data);
1134     else
1135       gst_buffer_unref (GST_BUFFER_CAST (data));
1136   }
1137   RTP_SESSION_LOCK (session);
1138
1139   return result;
1140 }
1141
1142 static gint
1143 source_clock_rate (RTPSource * source, guint8 pt, RTPSession * session)
1144 {
1145   gint result;
1146
1147   RTP_SESSION_UNLOCK (session);
1148
1149   if (session->callbacks.clock_rate)
1150     result =
1151         session->callbacks.clock_rate (session, pt,
1152         session->clock_rate_user_data);
1153   else
1154     result = -1;
1155
1156   RTP_SESSION_LOCK (session);
1157
1158   GST_DEBUG ("got clock-rate %d for pt %d", result, pt);
1159
1160   return result;
1161 }
1162
1163 static RTPSourceCallbacks callbacks = {
1164   (RTPSourcePushRTP) source_push_rtp,
1165   (RTPSourceClockRate) source_clock_rate,
1166 };
1167
1168 static gboolean
1169 check_collision (RTPSession * sess, RTPSource * source,
1170     RTPArrivalStats * arrival, gboolean rtp)
1171 {
1172   guint32 ssrc;
1173
1174   /* If we have no arrival address, we can't do collision checking */
1175   if (!arrival->address)
1176     return FALSE;
1177
1178   ssrc = rtp_source_get_ssrc (source);
1179
1180   if (!source->internal) {
1181     GSocketAddress *from;
1182
1183     /* This is not our local source, but lets check if two remote
1184      * source collide */
1185     if (rtp) {
1186       from = source->rtp_from;
1187     } else {
1188       from = source->rtcp_from;
1189     }
1190
1191     if (from) {
1192       if (__g_socket_address_equal (from, arrival->address)) {
1193         /* Address is the same */
1194         return FALSE;
1195       } else {
1196         GST_LOG ("we have a third-party collision or loop ssrc:%x", ssrc);
1197         if (sess->favor_new) {
1198           if (rtp_source_find_conflicting_address (source,
1199                   arrival->address, arrival->current_time)) {
1200             gchar *buf1;
1201
1202             buf1 = __g_socket_address_to_string (arrival->address);
1203             GST_LOG ("Known conflict on %x for %s, dropping packet", ssrc,
1204                 buf1);
1205             g_free (buf1);
1206
1207             return TRUE;
1208           } else {
1209             gchar *buf1, *buf2;
1210
1211             /* Current address is not a known conflict, lets assume this is
1212              * a new source. Save old address in possible conflict list
1213              */
1214             rtp_source_add_conflicting_address (source, from,
1215                 arrival->current_time);
1216
1217             buf1 = __g_socket_address_to_string (from);
1218             buf2 = __g_socket_address_to_string (arrival->address);
1219
1220             GST_DEBUG ("New conflict for ssrc %x, replacing %s with %s,"
1221                 " saving old as known conflict", ssrc, buf1, buf2);
1222
1223             if (rtp)
1224               rtp_source_set_rtp_from (source, arrival->address);
1225             else
1226               rtp_source_set_rtcp_from (source, arrival->address);
1227
1228             g_free (buf1);
1229             g_free (buf2);
1230
1231             return FALSE;
1232           }
1233         } else {
1234           /* Don't need to save old addresses, we ignore new sources */
1235           return TRUE;
1236         }
1237       }
1238     } else {
1239       /* We don't already have a from address for RTP, just set it */
1240       if (rtp)
1241         rtp_source_set_rtp_from (source, arrival->address);
1242       else
1243         rtp_source_set_rtcp_from (source, arrival->address);
1244       return FALSE;
1245     }
1246
1247     /* FIXME: Log 3rd party collision somehow
1248      * Maybe should be done in upper layer, only the SDES can tell us
1249      * if its a collision or a loop
1250      */
1251   } else {
1252     /* This is sending with our ssrc, is it an address we already know */
1253     if (rtp_source_find_conflicting_address (source, arrival->address,
1254             arrival->current_time)) {
1255       /* Its a known conflict, its probably a loop, not a collision
1256        * lets just drop the incoming packet
1257        */
1258       GST_DEBUG ("Our packets are being looped back to us, dropping");
1259     } else {
1260       /* Its a new collision, lets change our SSRC */
1261       rtp_source_add_conflicting_address (source, arrival->address,
1262           arrival->current_time);
1263
1264       GST_DEBUG ("Collision for SSRC %x", ssrc);
1265       /* mark the source BYE */
1266       rtp_source_mark_bye (source, "SSRC Collision");
1267       /* if we were suggesting this SSRC, change to something else */
1268       if (sess->suggested_ssrc == ssrc)
1269         sess->suggested_ssrc = rtp_session_create_new_ssrc (sess);
1270
1271       on_ssrc_collision (sess, source);
1272
1273       rtp_session_schedule_bye_locked (sess, arrival->current_time);
1274     }
1275   }
1276
1277   return TRUE;
1278 }
1279
1280 static RTPSource *
1281 find_source (RTPSession * sess, guint32 ssrc)
1282 {
1283   return g_hash_table_lookup (sess->ssrcs[sess->mask_idx],
1284       GINT_TO_POINTER (ssrc));
1285 }
1286
1287 static void
1288 add_source (RTPSession * sess, RTPSource * src)
1289 {
1290   g_hash_table_insert (sess->ssrcs[sess->mask_idx],
1291       GINT_TO_POINTER (src->ssrc), src);
1292   /* report the new source ASAP */
1293   src->generation = sess->generation;
1294   /* we have one more source now */
1295   sess->total_sources++;
1296   if (RTP_SOURCE_IS_ACTIVE (src))
1297     sess->stats.active_sources++;
1298   if (src->internal) {
1299     sess->stats.internal_sources++;
1300     if (sess->suggested_ssrc != src->ssrc)
1301       sess->suggested_ssrc = src->ssrc;
1302   }
1303 }
1304
1305 /* must be called with the session lock, the returned source needs to be
1306  * unreffed after usage. */
1307 static RTPSource *
1308 obtain_source (RTPSession * sess, guint32 ssrc, gboolean * created,
1309     RTPArrivalStats * arrival, gboolean rtp)
1310 {
1311   RTPSource *source;
1312
1313   source = find_source (sess, ssrc);
1314   if (source == NULL) {
1315     /* make new Source in probation and insert */
1316     source = rtp_source_new (ssrc);
1317
1318     GST_DEBUG ("creating new source %08x %p", ssrc, source);
1319
1320     /* for RTP packets we need to set the source in probation. Receiving RTCP
1321      * packets of an SSRC, on the other hand, is a strong indication that we
1322      * are dealing with a valid source. */
1323     if (rtp)
1324       g_object_set (source, "probation", sess->probation, NULL);
1325     else
1326       g_object_set (source, "probation", 0, NULL);
1327
1328     /* store from address, if any */
1329     if (arrival->address) {
1330       if (rtp)
1331         rtp_source_set_rtp_from (source, arrival->address);
1332       else
1333         rtp_source_set_rtcp_from (source, arrival->address);
1334     }
1335
1336     /* configure a callback on the source */
1337     rtp_source_set_callbacks (source, &callbacks, sess);
1338
1339     add_source (sess, source);
1340     *created = TRUE;
1341   } else {
1342     *created = FALSE;
1343     /* check for collision, this updates the address when not previously set */
1344     if (check_collision (sess, source, arrival, rtp)) {
1345       return NULL;
1346     }
1347     /* Receiving RTCP packets of an SSRC is a strong indication that we
1348      * are dealing with a valid source. */
1349     if (!rtp)
1350       g_object_set (source, "probation", 0, NULL);
1351   }
1352   /* update last activity */
1353   source->last_activity = arrival->current_time;
1354   if (rtp)
1355     source->last_rtp_activity = arrival->current_time;
1356   g_object_ref (source);
1357
1358   return source;
1359 }
1360
1361 /* must be called with the session lock, the returned source needs to be
1362  * unreffed after usage. */
1363 static RTPSource *
1364 obtain_internal_source (RTPSession * sess, guint32 ssrc, gboolean * created)
1365 {
1366   RTPSource *source;
1367
1368   source = find_source (sess, ssrc);
1369   if (source == NULL) {
1370     /* make new internal Source and insert */
1371     source = rtp_source_new (ssrc);
1372
1373     GST_DEBUG ("creating new internal source %08x %p", ssrc, source);
1374
1375     source->validated = TRUE;
1376     source->internal = TRUE;
1377     rtp_source_set_sdes_struct (source, gst_structure_copy (sess->sdes));
1378     rtp_source_set_callbacks (source, &callbacks, sess);
1379
1380     add_source (sess, source);
1381     *created = TRUE;
1382   } else {
1383     *created = FALSE;
1384   }
1385   g_object_ref (source);
1386
1387   return source;
1388 }
1389
1390 /**
1391  * rtp_session_suggest_ssrc:
1392  * @sess: a #RTPSession
1393  *
1394  * Suggest an unused SSRC in @sess.
1395  *
1396  * Returns: a free unused SSRC
1397  */
1398 guint32
1399 rtp_session_suggest_ssrc (RTPSession * sess)
1400 {
1401   guint32 result;
1402
1403   g_return_val_if_fail (RTP_IS_SESSION (sess), 0);
1404
1405   RTP_SESSION_LOCK (sess);
1406   result = sess->suggested_ssrc;
1407   RTP_SESSION_UNLOCK (sess);
1408
1409   return result;
1410 }
1411
1412 /**
1413  * rtp_session_add_source:
1414  * @sess: a #RTPSession
1415  * @src: #RTPSource to add
1416  *
1417  * Add @src to @session.
1418  *
1419  * Returns: %TRUE on success, %FALSE if a source with the same SSRC already
1420  * existed in the session.
1421  */
1422 gboolean
1423 rtp_session_add_source (RTPSession * sess, RTPSource * src)
1424 {
1425   gboolean result = FALSE;
1426   RTPSource *find;
1427
1428   g_return_val_if_fail (RTP_IS_SESSION (sess), FALSE);
1429   g_return_val_if_fail (src != NULL, FALSE);
1430
1431   RTP_SESSION_LOCK (sess);
1432   find = find_source (sess, src->ssrc);
1433   if (find == NULL) {
1434     add_source (sess, src);
1435     result = TRUE;
1436   }
1437   RTP_SESSION_UNLOCK (sess);
1438
1439   return result;
1440 }
1441
1442 /**
1443  * rtp_session_get_num_sources:
1444  * @sess: an #RTPSession
1445  *
1446  * Get the number of sources in @sess.
1447  *
1448  * Returns: The number of sources in @sess.
1449  */
1450 guint
1451 rtp_session_get_num_sources (RTPSession * sess)
1452 {
1453   guint result;
1454
1455   g_return_val_if_fail (RTP_IS_SESSION (sess), FALSE);
1456
1457   RTP_SESSION_LOCK (sess);
1458   result = sess->total_sources;
1459   RTP_SESSION_UNLOCK (sess);
1460
1461   return result;
1462 }
1463
1464 /**
1465  * rtp_session_get_num_active_sources:
1466  * @sess: an #RTPSession
1467  *
1468  * Get the number of active sources in @sess. A source is considered active when
1469  * it has been validated and has not yet received a BYE RTCP message.
1470  *
1471  * Returns: The number of active sources in @sess.
1472  */
1473 guint
1474 rtp_session_get_num_active_sources (RTPSession * sess)
1475 {
1476   guint result;
1477
1478   g_return_val_if_fail (RTP_IS_SESSION (sess), 0);
1479
1480   RTP_SESSION_LOCK (sess);
1481   result = sess->stats.active_sources;
1482   RTP_SESSION_UNLOCK (sess);
1483
1484   return result;
1485 }
1486
1487 /**
1488  * rtp_session_get_source_by_ssrc:
1489  * @sess: an #RTPSession
1490  * @ssrc: an SSRC
1491  *
1492  * Find the source with @ssrc in @sess.
1493  *
1494  * Returns: a #RTPSource with SSRC @ssrc or NULL if the source was not found.
1495  * g_object_unref() after usage.
1496  */
1497 RTPSource *
1498 rtp_session_get_source_by_ssrc (RTPSession * sess, guint32 ssrc)
1499 {
1500   RTPSource *result;
1501
1502   g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
1503
1504   RTP_SESSION_LOCK (sess);
1505   result = find_source (sess, ssrc);
1506   if (result)
1507     g_object_ref (result);
1508   RTP_SESSION_UNLOCK (sess);
1509
1510   return result;
1511 }
1512
1513 /* should be called with the SESSION lock */
1514 static guint32
1515 rtp_session_create_new_ssrc (RTPSession * sess)
1516 {
1517   guint32 ssrc;
1518
1519   while (TRUE) {
1520     ssrc = g_random_int ();
1521
1522     /* see if it exists in the session, we're done if it doesn't */
1523     if (find_source (sess, ssrc) == NULL)
1524       break;
1525   }
1526   return ssrc;
1527 }
1528
1529
1530 /**
1531  * rtp_session_create_source:
1532  * @sess: an #RTPSession
1533  *
1534  * Create an #RTPSource for use in @sess. This function will create a source
1535  * with an ssrc that is currently not used by any participants in the session.
1536  *
1537  * Returns: an #RTPSource.
1538  */
1539 RTPSource *
1540 rtp_session_create_source (RTPSession * sess)
1541 {
1542   guint32 ssrc;
1543   RTPSource *source;
1544
1545   RTP_SESSION_LOCK (sess);
1546   ssrc = rtp_session_create_new_ssrc (sess);
1547   source = rtp_source_new (ssrc);
1548   rtp_source_set_callbacks (source, &callbacks, sess);
1549   /* we need an additional ref for the source in the hashtable */
1550   g_object_ref (source);
1551   add_source (sess, source);
1552   RTP_SESSION_UNLOCK (sess);
1553
1554   return source;
1555 }
1556
1557 /* update the RTPArrivalStats structure with the current time and other bits
1558  * about the current buffer we are handling.
1559  * This function is typically called when a validated packet is received.
1560  * This function should be called with the SESSION_LOCK
1561  */
1562 static void
1563 update_arrival_stats (RTPSession * sess, RTPArrivalStats * arrival,
1564     gboolean rtp, GstBuffer * buffer, GstClockTime current_time,
1565     GstClockTime running_time, guint64 ntpnstime)
1566 {
1567   GstNetAddressMeta *meta;
1568   GstRTPBuffer rtpb = { NULL };
1569
1570   /* get time of arrival */
1571   arrival->current_time = current_time;
1572   arrival->running_time = running_time;
1573   arrival->ntpnstime = ntpnstime;
1574
1575   /* get packet size including header overhead */
1576   arrival->bytes = gst_buffer_get_size (buffer) + sess->header_len;
1577
1578   if (rtp) {
1579     gst_rtp_buffer_map (buffer, GST_MAP_READ, &rtpb);
1580     arrival->payload_len = gst_rtp_buffer_get_payload_len (&rtpb);
1581     gst_rtp_buffer_unmap (&rtpb);
1582   } else {
1583     arrival->payload_len = 0;
1584   }
1585
1586   /* for netbuffer we can store the IP address to check for collisions */
1587   meta = gst_buffer_get_net_address_meta (buffer);
1588   if (arrival->address)
1589     g_object_unref (arrival->address);
1590   if (meta) {
1591     arrival->address = G_SOCKET_ADDRESS (g_object_ref (meta->addr));
1592   } else {
1593     arrival->address = NULL;
1594   }
1595 }
1596
1597 static void
1598 clean_arrival_stats (RTPArrivalStats * arrival)
1599 {
1600   if (arrival->address)
1601     g_object_unref (arrival->address);
1602 }
1603
1604 static gboolean
1605 source_update_active (RTPSession * sess, RTPSource * source,
1606     gboolean prevactive)
1607 {
1608   gboolean active = RTP_SOURCE_IS_ACTIVE (source);
1609   guint32 ssrc = source->ssrc;
1610
1611   if (prevactive == active)
1612     return FALSE;
1613
1614   if (active) {
1615     sess->stats.active_sources++;
1616     GST_DEBUG ("source: %08x became active, %d active sources", ssrc,
1617         sess->stats.active_sources);
1618   } else {
1619     sess->stats.active_sources--;
1620     GST_DEBUG ("source: %08x became inactive, %d active sources", ssrc,
1621         sess->stats.active_sources);
1622   }
1623   return TRUE;
1624 }
1625
1626 static gboolean
1627 source_update_sender (RTPSession * sess, RTPSource * source,
1628     gboolean prevsender)
1629 {
1630   gboolean sender = RTP_SOURCE_IS_SENDER (source);
1631   guint32 ssrc = source->ssrc;
1632
1633   if (prevsender == sender)
1634     return FALSE;
1635
1636   if (sender) {
1637     sess->stats.sender_sources++;
1638     if (source->internal)
1639       sess->stats.internal_sender_sources++;
1640     GST_DEBUG ("source: %08x became sender, %d sender sources", ssrc,
1641         sess->stats.sender_sources);
1642   } else {
1643     sess->stats.sender_sources--;
1644     if (source->internal)
1645       sess->stats.internal_sender_sources--;
1646     GST_DEBUG ("source: %08x became non sender, %d sender sources", ssrc,
1647         sess->stats.sender_sources);
1648   }
1649   return TRUE;
1650 }
1651
1652 /**
1653  * rtp_session_process_rtp:
1654  * @sess: and #RTPSession
1655  * @buffer: an RTP buffer
1656  * @current_time: the current system time
1657  * @running_time: the running_time of @buffer
1658  *
1659  * Process an RTP buffer in the session manager. This function takes ownership
1660  * of @buffer.
1661  *
1662  * Returns: a #GstFlowReturn.
1663  */
1664 GstFlowReturn
1665 rtp_session_process_rtp (RTPSession * sess, GstBuffer * buffer,
1666     GstClockTime current_time, GstClockTime running_time)
1667 {
1668   GstFlowReturn result;
1669   guint32 ssrc;
1670   RTPSource *source;
1671   gboolean created;
1672   gboolean prevsender, prevactive;
1673   RTPArrivalStats arrival = { NULL, };
1674   guint32 csrcs[16];
1675   guint8 i, count;
1676   guint64 oldrate;
1677   GstRTPBuffer rtp = { NULL };
1678
1679   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
1680   g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
1681
1682   if (!gst_rtp_buffer_map (buffer, GST_MAP_READ, &rtp))
1683     goto invalid_packet;
1684
1685   /* get SSRC to look up in session database */
1686   ssrc = gst_rtp_buffer_get_ssrc (&rtp);
1687   /* copy available csrc for later */
1688   count = gst_rtp_buffer_get_csrc_count (&rtp);
1689   /* make sure to not overflow our array. An RTP buffer can maximally contain
1690    * 16 CSRCs */
1691   count = MIN (count, 16);
1692
1693   for (i = 0; i < count; i++)
1694     csrcs[i] = gst_rtp_buffer_get_csrc (&rtp, i);
1695
1696   gst_rtp_buffer_unmap (&rtp);
1697
1698   RTP_SESSION_LOCK (sess);
1699
1700   /* update arrival stats */
1701   update_arrival_stats (sess, &arrival, TRUE, buffer, current_time,
1702       running_time, -1);
1703
1704   source = obtain_source (sess, ssrc, &created, &arrival, TRUE);
1705   if (!source)
1706     goto collision;
1707
1708   prevsender = RTP_SOURCE_IS_SENDER (source);
1709   prevactive = RTP_SOURCE_IS_ACTIVE (source);
1710   oldrate = source->bitrate;
1711
1712   /* let source process the packet */
1713   result = rtp_source_process_rtp (source, buffer, &arrival);
1714
1715   /* source became active */
1716   if (source_update_active (sess, source, prevactive))
1717     on_ssrc_validated (sess, source);
1718
1719   source_update_sender (sess, source, prevsender);
1720
1721   if (oldrate != source->bitrate)
1722     sess->recalc_bandwidth = TRUE;
1723
1724   if (created)
1725     on_new_ssrc (sess, source);
1726
1727   if (source->validated) {
1728     gboolean created;
1729
1730     /* for validated sources, we add the CSRCs as well */
1731     for (i = 0; i < count; i++) {
1732       guint32 csrc;
1733       RTPSource *csrc_src;
1734
1735       csrc = csrcs[i];
1736
1737       /* get source */
1738       csrc_src = obtain_source (sess, csrc, &created, &arrival, TRUE);
1739       if (!csrc_src)
1740         continue;
1741
1742       if (created) {
1743         GST_DEBUG ("created new CSRC: %08x", csrc);
1744         rtp_source_set_as_csrc (csrc_src);
1745         source_update_active (sess, csrc_src, FALSE);
1746         on_new_ssrc (sess, csrc_src);
1747       }
1748       g_object_unref (csrc_src);
1749     }
1750   }
1751   g_object_unref (source);
1752
1753   RTP_SESSION_UNLOCK (sess);
1754
1755   clean_arrival_stats (&arrival);
1756
1757   return result;
1758
1759   /* ERRORS */
1760 invalid_packet:
1761   {
1762     gst_buffer_unref (buffer);
1763     GST_DEBUG ("invalid RTP packet received");
1764     return GST_FLOW_OK;
1765   }
1766 collision:
1767   {
1768     RTP_SESSION_UNLOCK (sess);
1769     gst_buffer_unref (buffer);
1770     clean_arrival_stats (&arrival);
1771     GST_DEBUG ("ignoring packet because its collisioning");
1772     return GST_FLOW_OK;
1773   }
1774 }
1775
1776 static void
1777 rtp_session_process_rb (RTPSession * sess, RTPSource * source,
1778     GstRTCPPacket * packet, RTPArrivalStats * arrival)
1779 {
1780   guint count, i;
1781
1782   count = gst_rtcp_packet_get_rb_count (packet);
1783   for (i = 0; i < count; i++) {
1784     guint32 ssrc, exthighestseq, jitter, lsr, dlsr;
1785     guint8 fractionlost;
1786     gint32 packetslost;
1787     RTPSource *src;
1788
1789     gst_rtcp_packet_get_rb (packet, i, &ssrc, &fractionlost,
1790         &packetslost, &exthighestseq, &jitter, &lsr, &dlsr);
1791
1792     GST_DEBUG ("RB %d: SSRC %08x, jitter %" G_GUINT32_FORMAT, i, ssrc, jitter);
1793
1794     /* find our own source */
1795     src = find_source (sess, ssrc);
1796     if (src == NULL)
1797       continue;
1798
1799     if (src->internal && RTP_SOURCE_IS_ACTIVE (src)) {
1800       /* only deal with report blocks for our session, we update the stats of
1801        * the sender of the RTCP message. We could also compare our stats against
1802        * the other sender to see if we are better or worse. */
1803       /* FIXME, need to keep track who the RB block is from */
1804       rtp_source_process_rb (source, arrival->ntpnstime, fractionlost,
1805           packetslost, exthighestseq, jitter, lsr, dlsr);
1806     }
1807   }
1808   on_ssrc_active (sess, source);
1809 }
1810
1811 /* A Sender report contains statistics about how the sender is doing. This
1812  * includes timing informataion such as the relation between RTP and NTP
1813  * timestamps and the number of packets/bytes it sent to us.
1814  *
1815  * In this report is also included a set of report blocks related to how this
1816  * sender is receiving data (in case we (or somebody else) is also sending stuff
1817  * to it). This info includes the packet loss, jitter and seqnum. It also
1818  * contains information to calculate the round trip time (LSR/DLSR).
1819  */
1820 static void
1821 rtp_session_process_sr (RTPSession * sess, GstRTCPPacket * packet,
1822     RTPArrivalStats * arrival, gboolean * do_sync)
1823 {
1824   guint32 senderssrc, rtptime, packet_count, octet_count;
1825   guint64 ntptime;
1826   RTPSource *source;
1827   gboolean created, prevsender;
1828
1829   gst_rtcp_packet_sr_get_sender_info (packet, &senderssrc, &ntptime, &rtptime,
1830       &packet_count, &octet_count);
1831
1832   GST_DEBUG ("got SR packet: SSRC %08x, time %" GST_TIME_FORMAT,
1833       senderssrc, GST_TIME_ARGS (arrival->current_time));
1834
1835   source = obtain_source (sess, senderssrc, &created, arrival, FALSE);
1836   if (!source)
1837     return;
1838
1839   /* don't try to do lip-sync for sources that sent a BYE */
1840   if (RTP_SOURCE_IS_MARKED_BYE (source))
1841     *do_sync = FALSE;
1842   else
1843     *do_sync = TRUE;
1844
1845   prevsender = RTP_SOURCE_IS_SENDER (source);
1846
1847   /* first update the source */
1848   rtp_source_process_sr (source, arrival->current_time, ntptime, rtptime,
1849       packet_count, octet_count);
1850
1851   source_update_sender (sess, source, prevsender);
1852
1853   if (created)
1854     on_new_ssrc (sess, source);
1855
1856   rtp_session_process_rb (sess, source, packet, arrival);
1857   g_object_unref (source);
1858 }
1859
1860 /* A receiver report contains statistics about how a receiver is doing. It
1861  * includes stuff like packet loss, jitter and the seqnum it received last. It
1862  * also contains info to calculate the round trip time.
1863  *
1864  * We are only interested in how the sender of this report is doing wrt to us.
1865  */
1866 static void
1867 rtp_session_process_rr (RTPSession * sess, GstRTCPPacket * packet,
1868     RTPArrivalStats * arrival)
1869 {
1870   guint32 senderssrc;
1871   RTPSource *source;
1872   gboolean created;
1873
1874   senderssrc = gst_rtcp_packet_rr_get_ssrc (packet);
1875
1876   GST_DEBUG ("got RR packet: SSRC %08x", senderssrc);
1877
1878   source = obtain_source (sess, senderssrc, &created, arrival, FALSE);
1879   if (!source)
1880     return;
1881
1882   if (created)
1883     on_new_ssrc (sess, source);
1884
1885   rtp_session_process_rb (sess, source, packet, arrival);
1886   g_object_unref (source);
1887 }
1888
1889 /* Get SDES items and store them in the SSRC */
1890 static void
1891 rtp_session_process_sdes (RTPSession * sess, GstRTCPPacket * packet,
1892     RTPArrivalStats * arrival)
1893 {
1894   guint items, i, j;
1895   gboolean more_items, more_entries;
1896
1897   items = gst_rtcp_packet_sdes_get_item_count (packet);
1898   GST_DEBUG ("got SDES packet with %d items", items);
1899
1900   more_items = gst_rtcp_packet_sdes_first_item (packet);
1901   i = 0;
1902   while (more_items) {
1903     guint32 ssrc;
1904     gboolean changed, created, prevactive;
1905     RTPSource *source;
1906     GstStructure *sdes;
1907
1908     ssrc = gst_rtcp_packet_sdes_get_ssrc (packet);
1909
1910     GST_DEBUG ("item %d, SSRC %08x", i, ssrc);
1911
1912     changed = FALSE;
1913
1914     /* find src, no probation when dealing with RTCP */
1915     source = obtain_source (sess, ssrc, &created, arrival, FALSE);
1916     if (!source)
1917       return;
1918
1919     sdes = gst_structure_new_empty ("application/x-rtp-source-sdes");
1920
1921     more_entries = gst_rtcp_packet_sdes_first_entry (packet);
1922     j = 0;
1923     while (more_entries) {
1924       GstRTCPSDESType type;
1925       guint8 len;
1926       guint8 *data;
1927       gchar *name;
1928       gchar *value;
1929
1930       gst_rtcp_packet_sdes_get_entry (packet, &type, &len, &data);
1931
1932       GST_DEBUG ("entry %d, type %d, len %d, data %.*s", j, type, len, len,
1933           data);
1934
1935       if (type == GST_RTCP_SDES_PRIV) {
1936         name = g_strndup ((const gchar *) &data[1], data[0]);
1937         len -= data[0] + 1;
1938         data += data[0] + 1;
1939       } else {
1940         name = g_strdup (gst_rtcp_sdes_type_to_name (type));
1941       }
1942
1943       value = g_strndup ((const gchar *) data, len);
1944
1945       gst_structure_set (sdes, name, G_TYPE_STRING, value, NULL);
1946
1947       g_free (name);
1948       g_free (value);
1949
1950       more_entries = gst_rtcp_packet_sdes_next_entry (packet);
1951       j++;
1952     }
1953
1954     /* takes ownership of sdes */
1955     changed = rtp_source_set_sdes_struct (source, sdes);
1956
1957     prevactive = RTP_SOURCE_IS_ACTIVE (source);
1958     source->validated = TRUE;
1959
1960     if (created)
1961       on_new_ssrc (sess, source);
1962
1963     /* source became active */
1964     if (source_update_active (sess, source, prevactive))
1965       on_ssrc_validated (sess, source);
1966
1967     if (changed)
1968       on_ssrc_sdes (sess, source);
1969
1970     g_object_unref (source);
1971
1972     more_items = gst_rtcp_packet_sdes_next_item (packet);
1973     i++;
1974   }
1975 }
1976
1977 /* BYE is sent when a client leaves the session
1978  */
1979 static void
1980 rtp_session_process_bye (RTPSession * sess, GstRTCPPacket * packet,
1981     RTPArrivalStats * arrival)
1982 {
1983   guint count, i;
1984   gchar *reason;
1985   gboolean reconsider = FALSE;
1986
1987   reason = gst_rtcp_packet_bye_get_reason (packet);
1988   GST_DEBUG ("got BYE packet (reason: %s)", GST_STR_NULL (reason));
1989
1990   count = gst_rtcp_packet_bye_get_ssrc_count (packet);
1991   for (i = 0; i < count; i++) {
1992     guint32 ssrc;
1993     RTPSource *source;
1994     gboolean created, prevactive, prevsender;
1995     guint pmembers, members;
1996
1997     ssrc = gst_rtcp_packet_bye_get_nth_ssrc (packet, i);
1998     GST_DEBUG ("SSRC: %08x", ssrc);
1999
2000     /* find src and mark bye, no probation when dealing with RTCP */
2001     source = obtain_source (sess, ssrc, &created, arrival, FALSE);
2002     if (!source)
2003       return;
2004
2005     if (source->internal) {
2006       /* our own source, something weird with this packet */
2007       g_object_unref (source);
2008       continue;
2009     }
2010
2011     /* store time for when we need to time out this source */
2012     source->bye_time = arrival->current_time;
2013
2014     prevactive = RTP_SOURCE_IS_ACTIVE (source);
2015     prevsender = RTP_SOURCE_IS_SENDER (source);
2016
2017     /* mark the source BYE */
2018     rtp_source_mark_bye (source, reason);
2019
2020     pmembers = sess->stats.active_sources;
2021
2022     source_update_active (sess, source, prevactive);
2023     source_update_sender (sess, source, prevsender);
2024
2025     members = sess->stats.active_sources;
2026
2027     if (!sess->scheduled_bye && members < pmembers) {
2028       /* some members went away since the previous timeout estimate.
2029        * Perform reverse reconsideration but only when we are not scheduling a
2030        * BYE ourselves. */
2031       if (sess->next_rtcp_check_time != GST_CLOCK_TIME_NONE &&
2032           arrival->current_time < sess->next_rtcp_check_time) {
2033         GstClockTime time_remaining;
2034
2035         time_remaining = sess->next_rtcp_check_time - arrival->current_time;
2036         sess->next_rtcp_check_time =
2037             gst_util_uint64_scale (time_remaining, members, pmembers);
2038
2039         GST_DEBUG ("reverse reconsideration %" GST_TIME_FORMAT,
2040             GST_TIME_ARGS (sess->next_rtcp_check_time));
2041
2042         sess->next_rtcp_check_time += arrival->current_time;
2043
2044         /* mark pending reconsider. We only want to signal the reconsideration
2045          * once after we handled all the source in the bye packet */
2046         reconsider = TRUE;
2047       }
2048     }
2049
2050     if (created)
2051       on_new_ssrc (sess, source);
2052
2053     on_bye_ssrc (sess, source);
2054
2055     g_object_unref (source);
2056   }
2057   if (reconsider) {
2058     RTP_SESSION_UNLOCK (sess);
2059     /* notify app of reconsideration */
2060     if (sess->callbacks.reconsider)
2061       sess->callbacks.reconsider (sess, sess->reconsider_user_data);
2062     RTP_SESSION_LOCK (sess);
2063   }
2064   g_free (reason);
2065 }
2066
2067 static void
2068 rtp_session_process_app (RTPSession * sess, GstRTCPPacket * packet,
2069     RTPArrivalStats * arrival)
2070 {
2071   GST_DEBUG ("received APP");
2072 }
2073
2074 static gboolean
2075 rtp_session_request_local_key_unit (RTPSession * sess, RTPSource * src,
2076     gboolean fir, GstClockTime current_time)
2077 {
2078   guint32 round_trip = 0;
2079
2080   rtp_source_get_last_rb (src, NULL, NULL, NULL, NULL, NULL, NULL, &round_trip);
2081
2082   if (sess->last_keyframe_request != GST_CLOCK_TIME_NONE && round_trip) {
2083     GstClockTime round_trip_in_ns = gst_util_uint64_scale (round_trip,
2084         GST_SECOND, 65536);
2085
2086     if (sess->last_keyframe_request != GST_CLOCK_TIME_NONE &&
2087         current_time - sess->last_keyframe_request < 2 * round_trip_in_ns) {
2088       GST_DEBUG ("Ignoring %s request because one was send without one "
2089           "RTT (%" GST_TIME_FORMAT " < %" GST_TIME_FORMAT ")",
2090           fir ? "FIR" : "PLI",
2091           GST_TIME_ARGS (current_time - sess->last_keyframe_request),
2092           GST_TIME_ARGS (round_trip_in_ns));;
2093       return FALSE;
2094     }
2095   }
2096
2097   sess->last_keyframe_request = current_time;
2098
2099   GST_LOG ("received %s request from %X %p(%p)", fir ? "FIR" : "PLI",
2100       rtp_source_get_ssrc (src), sess->callbacks.process_rtp,
2101       sess->callbacks.request_key_unit);
2102
2103   RTP_SESSION_UNLOCK (sess);
2104   sess->callbacks.request_key_unit (sess, fir,
2105       sess->request_key_unit_user_data);
2106   RTP_SESSION_LOCK (sess);
2107
2108   return TRUE;
2109 }
2110
2111 static void
2112 rtp_session_process_pli (RTPSession * sess, guint32 sender_ssrc,
2113     guint32 media_ssrc, GstClockTime current_time)
2114 {
2115   RTPSource *src;
2116
2117   if (!sess->callbacks.request_key_unit)
2118     return;
2119
2120   src = find_source (sess, sender_ssrc);
2121   if (!src)
2122     return;
2123
2124   rtp_session_request_local_key_unit (sess, src, FALSE, current_time);
2125 }
2126
2127 static void
2128 rtp_session_process_fir (RTPSession * sess, guint32 sender_ssrc,
2129     guint8 * fci_data, guint fci_length, GstClockTime current_time)
2130 {
2131   RTPSource *src;
2132   guint32 ssrc;
2133   guint position = 0;
2134   gboolean our_request = FALSE;
2135
2136   if (!sess->callbacks.request_key_unit)
2137     return;
2138
2139   if (fci_length < 8)
2140     return;
2141
2142   src = find_source (sess, sender_ssrc);
2143
2144   /* Hack because Google fails to set the sender_ssrc correctly */
2145   if (!src && sender_ssrc == 1) {
2146     GHashTableIter iter;
2147
2148     /* we can't find the source if there are multiple */
2149     if (sess->stats.sender_sources > sess->stats.internal_sender_sources + 1)
2150       return;
2151
2152     g_hash_table_iter_init (&iter, sess->ssrcs[sess->mask_idx]);
2153     while (g_hash_table_iter_next (&iter, NULL, (gpointer *) & src)) {
2154       if (!src->internal && rtp_source_is_sender (src))
2155         break;
2156       src = NULL;
2157     }
2158   }
2159   if (!src)
2160     return;
2161
2162   for (position = 0; position < fci_length; position += 8) {
2163     guint8 *data = fci_data + position;
2164     RTPSource *own;
2165
2166     ssrc = GST_READ_UINT32_BE (data);
2167
2168     own = find_source (sess, ssrc);
2169     if (own->internal) {
2170       our_request = TRUE;
2171       break;
2172     }
2173   }
2174   if (!our_request)
2175     return;
2176
2177   rtp_session_request_local_key_unit (sess, src, TRUE, current_time);
2178 }
2179
2180 static void
2181 rtp_session_process_feedback (RTPSession * sess, GstRTCPPacket * packet,
2182     RTPArrivalStats * arrival, GstClockTime current_time)
2183 {
2184   GstRTCPType type = gst_rtcp_packet_get_type (packet);
2185   GstRTCPFBType fbtype = gst_rtcp_packet_fb_get_type (packet);
2186   guint32 sender_ssrc = gst_rtcp_packet_fb_get_sender_ssrc (packet);
2187   guint32 media_ssrc = gst_rtcp_packet_fb_get_media_ssrc (packet);
2188   guint8 *fci_data = gst_rtcp_packet_fb_get_fci (packet);
2189   guint fci_length = 4 * gst_rtcp_packet_fb_get_fci_length (packet);
2190   RTPSource *src;
2191
2192   GST_DEBUG ("received feedback %d:%d from %08X about %08X with FCI of "
2193       "length %d", type, fbtype, sender_ssrc, media_ssrc, fci_length);
2194
2195   if (g_signal_has_handler_pending (sess,
2196           rtp_session_signals[SIGNAL_ON_FEEDBACK_RTCP], 0, TRUE)) {
2197     GstBuffer *fci_buffer = NULL;
2198
2199     if (fci_length > 0) {
2200       fci_buffer = gst_buffer_copy_region (packet->rtcp->buffer,
2201           GST_BUFFER_COPY_MEMORY, fci_data - packet->rtcp->map.data,
2202           fci_length);
2203       GST_BUFFER_TIMESTAMP (fci_buffer) = arrival->running_time;
2204     }
2205
2206     RTP_SESSION_UNLOCK (sess);
2207     g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_FEEDBACK_RTCP], 0,
2208         type, fbtype, sender_ssrc, media_ssrc, fci_buffer);
2209     RTP_SESSION_LOCK (sess);
2210
2211     if (fci_buffer)
2212       gst_buffer_unref (fci_buffer);
2213   }
2214
2215   src = find_source (sess, media_ssrc);
2216   if (!src)
2217     return;
2218
2219   if (sess->rtcp_feedback_retention_window) {
2220     rtp_source_retain_rtcp_packet (src, packet, arrival->running_time);
2221   }
2222
2223   if (src->internal ||
2224       /* PSFB FIR puts the media ssrc inside the FCI */
2225       (type == GST_RTCP_TYPE_PSFB && fbtype == GST_RTCP_PSFB_TYPE_FIR)) {
2226     switch (type) {
2227       case GST_RTCP_TYPE_PSFB:
2228         switch (fbtype) {
2229           case GST_RTCP_PSFB_TYPE_PLI:
2230             rtp_session_process_pli (sess, sender_ssrc, media_ssrc,
2231                 current_time);
2232             break;
2233           case GST_RTCP_PSFB_TYPE_FIR:
2234             rtp_session_process_fir (sess, sender_ssrc, fci_data, fci_length,
2235                 current_time);
2236             break;
2237           default:
2238             break;
2239         }
2240         break;
2241       case GST_RTCP_TYPE_RTPFB:
2242       default:
2243         break;
2244     }
2245   }
2246 }
2247
2248 /**
2249  * rtp_session_process_rtcp:
2250  * @sess: and #RTPSession
2251  * @buffer: an RTCP buffer
2252  * @current_time: the current system time
2253  * @ntpnstime: the current NTP time in nanoseconds
2254  *
2255  * Process an RTCP buffer in the session manager. This function takes ownership
2256  * of @buffer.
2257  *
2258  * Returns: a #GstFlowReturn.
2259  */
2260 GstFlowReturn
2261 rtp_session_process_rtcp (RTPSession * sess, GstBuffer * buffer,
2262     GstClockTime current_time, guint64 ntpnstime)
2263 {
2264   GstRTCPPacket packet;
2265   gboolean more, is_bye = FALSE, do_sync = FALSE;
2266   RTPArrivalStats arrival = { NULL, };
2267   GstFlowReturn result = GST_FLOW_OK;
2268   GstRTCPBuffer rtcp = { NULL, };
2269
2270   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2271   g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
2272
2273   if (!gst_rtcp_buffer_validate (buffer))
2274     goto invalid_packet;
2275
2276   GST_DEBUG ("received RTCP packet");
2277
2278   RTP_SESSION_LOCK (sess);
2279   /* update arrival stats */
2280   update_arrival_stats (sess, &arrival, FALSE, buffer, current_time, -1,
2281       ntpnstime);
2282
2283   /* start processing the compound packet */
2284   gst_rtcp_buffer_map (buffer, GST_MAP_READ, &rtcp);
2285   more = gst_rtcp_buffer_get_first_packet (&rtcp, &packet);
2286   while (more) {
2287     GstRTCPType type;
2288
2289     type = gst_rtcp_packet_get_type (&packet);
2290
2291     /* when we are leaving the session, we should ignore all non-BYE messages */
2292     if (sess->scheduled_bye && type != GST_RTCP_TYPE_BYE) {
2293       GST_DEBUG ("ignoring non-BYE RTCP packet because we are leaving");
2294       goto next;
2295     }
2296
2297     switch (type) {
2298       case GST_RTCP_TYPE_SR:
2299         rtp_session_process_sr (sess, &packet, &arrival, &do_sync);
2300         break;
2301       case GST_RTCP_TYPE_RR:
2302         rtp_session_process_rr (sess, &packet, &arrival);
2303         break;
2304       case GST_RTCP_TYPE_SDES:
2305         rtp_session_process_sdes (sess, &packet, &arrival);
2306         break;
2307       case GST_RTCP_TYPE_BYE:
2308         is_bye = TRUE;
2309         /* don't try to attempt lip-sync anymore for streams with a BYE */
2310         do_sync = FALSE;
2311         rtp_session_process_bye (sess, &packet, &arrival);
2312         break;
2313       case GST_RTCP_TYPE_APP:
2314         rtp_session_process_app (sess, &packet, &arrival);
2315         break;
2316       case GST_RTCP_TYPE_RTPFB:
2317       case GST_RTCP_TYPE_PSFB:
2318         rtp_session_process_feedback (sess, &packet, &arrival, current_time);
2319         break;
2320       default:
2321         GST_WARNING ("got unknown RTCP packet");
2322         break;
2323     }
2324   next:
2325     more = gst_rtcp_packet_move_to_next (&packet);
2326   }
2327
2328   gst_rtcp_buffer_unmap (&rtcp);
2329
2330   /* if we are scheduling a BYE, we only want to count bye packets, else we
2331    * count everything */
2332   if (sess->scheduled_bye) {
2333     if (is_bye) {
2334       sess->stats.bye_members++;
2335       UPDATE_AVG (sess->stats.avg_rtcp_packet_size, arrival.bytes);
2336     }
2337   } else {
2338     /* keep track of average packet size */
2339     UPDATE_AVG (sess->stats.avg_rtcp_packet_size, arrival.bytes);
2340   }
2341   GST_DEBUG ("%p, received RTCP packet, avg size %u, %u", &sess->stats,
2342       sess->stats.avg_rtcp_packet_size, arrival.bytes);
2343   RTP_SESSION_UNLOCK (sess);
2344
2345   clean_arrival_stats (&arrival);
2346
2347   /* notify caller of sr packets in the callback */
2348   if (do_sync && sess->callbacks.sync_rtcp) {
2349     result = sess->callbacks.sync_rtcp (sess, buffer,
2350         sess->sync_rtcp_user_data);
2351   } else
2352     gst_buffer_unref (buffer);
2353
2354   return result;
2355
2356   /* ERRORS */
2357 invalid_packet:
2358   {
2359     GST_DEBUG ("invalid RTCP packet received");
2360     gst_buffer_unref (buffer);
2361     return GST_FLOW_OK;
2362   }
2363 }
2364
2365 /**
2366  * rtp_session_update_send_caps:
2367  * @sess: an #RTPSession
2368  * @caps: a #GstCaps
2369  *
2370  * Update the caps of the sender in the rtp session.
2371  */
2372 void
2373 rtp_session_update_send_caps (RTPSession * sess, GstCaps * caps)
2374 {
2375   GstStructure *s;
2376   guint ssrc;
2377
2378   g_return_if_fail (RTP_IS_SESSION (sess));
2379   g_return_if_fail (GST_IS_CAPS (caps));
2380
2381   GST_LOG ("received caps %" GST_PTR_FORMAT, caps);
2382
2383   s = gst_caps_get_structure (caps, 0);
2384
2385   if (gst_structure_get_uint (s, "ssrc", &ssrc)) {
2386     RTPSource *source;
2387     gboolean created;
2388
2389     RTP_SESSION_LOCK (sess);
2390     source = obtain_internal_source (sess, ssrc, &created);
2391     if (source) {
2392       rtp_source_update_caps (source, caps);
2393       g_object_unref (source);
2394     }
2395     RTP_SESSION_UNLOCK (sess);
2396   }
2397 }
2398
2399 /**
2400  * rtp_session_send_rtp:
2401  * @sess: an #RTPSession
2402  * @data: pointer to either an RTP buffer or a list of RTP buffers
2403  * @is_list: TRUE when @data is a buffer list
2404  * @current_time: the current system time
2405  * @running_time: the running time of @data
2406  *
2407  * Send the RTP buffer in the session manager. This function takes ownership of
2408  * @buffer.
2409  *
2410  * Returns: a #GstFlowReturn.
2411  */
2412 GstFlowReturn
2413 rtp_session_send_rtp (RTPSession * sess, gpointer data, gboolean is_list,
2414     GstClockTime current_time, GstClockTime running_time)
2415 {
2416   GstFlowReturn result;
2417   RTPSource *source;
2418   gboolean prevsender;
2419   guint64 oldrate;
2420   GstBuffer *buffer;
2421   GstRTPBuffer rtp = { NULL };
2422   guint32 ssrc;
2423   gboolean created;
2424
2425   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2426   g_return_val_if_fail (is_list || GST_IS_BUFFER (data), GST_FLOW_ERROR);
2427
2428   GST_LOG ("received RTP %s for sending", is_list ? "list" : "packet");
2429
2430   if (is_list) {
2431     GstBufferList *list = GST_BUFFER_LIST_CAST (data);
2432
2433     buffer = gst_buffer_list_get (list, 0);
2434     if (!buffer)
2435       goto no_buffer;
2436   } else {
2437     buffer = GST_BUFFER_CAST (data);
2438   }
2439
2440   if (!gst_rtp_buffer_map (buffer, GST_MAP_READ, &rtp))
2441     goto invalid_packet;
2442
2443   /* get SSRC and look up in session database */
2444   ssrc = gst_rtp_buffer_get_ssrc (&rtp);
2445
2446   gst_rtp_buffer_unmap (&rtp);
2447
2448   RTP_SESSION_LOCK (sess);
2449   source = obtain_internal_source (sess, ssrc, &created);
2450
2451   /* update last activity */
2452   source->last_rtp_activity = current_time;
2453
2454   prevsender = RTP_SOURCE_IS_SENDER (source);
2455   oldrate = source->bitrate;
2456
2457   /* we use our own source to send */
2458   result = rtp_source_send_rtp (source, data, is_list, running_time);
2459
2460   source_update_sender (sess, source, prevsender);
2461
2462   if (oldrate != source->bitrate)
2463     sess->recalc_bandwidth = TRUE;
2464   RTP_SESSION_UNLOCK (sess);
2465
2466   g_object_unref (source);
2467
2468   return result;
2469
2470 invalid_packet:
2471   {
2472     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
2473     GST_DEBUG ("invalid RTP packet received");
2474     return GST_FLOW_OK;
2475   }
2476 no_buffer:
2477   {
2478     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
2479     GST_DEBUG ("no buffer in list");
2480     return GST_FLOW_OK;
2481   }
2482 }
2483
2484 static void
2485 add_bitrates (gpointer key, RTPSource * source, gdouble * bandwidth)
2486 {
2487   *bandwidth += source->bitrate;
2488 }
2489
2490 /* must be called with session lock */
2491 static GstClockTime
2492 calculate_rtcp_interval (RTPSession * sess, gboolean deterministic,
2493     gboolean first)
2494 {
2495   GstClockTime result;
2496
2497   /* recalculate bandwidth when it changed */
2498   if (sess->recalc_bandwidth) {
2499     gdouble bandwidth;
2500
2501     if (sess->bandwidth > 0)
2502       bandwidth = sess->bandwidth;
2503     else {
2504       /* If it is <= 0, then try to estimate the actual bandwidth */
2505       bandwidth = 0;
2506
2507       g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
2508           (GHFunc) add_bitrates, &bandwidth);
2509       bandwidth /= 8.0;
2510     }
2511     if (bandwidth < 8000)
2512       bandwidth = RTP_STATS_BANDWIDTH;
2513
2514     rtp_stats_set_bandwidths (&sess->stats, bandwidth,
2515         sess->rtcp_bandwidth, sess->rtcp_rs_bandwidth, sess->rtcp_rr_bandwidth);
2516
2517     sess->recalc_bandwidth = FALSE;
2518   }
2519
2520   if (sess->scheduled_bye) {
2521     result = rtp_stats_calculate_bye_interval (&sess->stats);
2522   } else {
2523     result = rtp_stats_calculate_rtcp_interval (&sess->stats,
2524         sess->stats.internal_sender_sources > 0, first);
2525   }
2526
2527   GST_DEBUG ("next deterministic interval: %" GST_TIME_FORMAT ", first %d",
2528       GST_TIME_ARGS (result), first);
2529
2530   if (!deterministic && result != GST_CLOCK_TIME_NONE)
2531     result = rtp_stats_add_rtcp_jitter (&sess->stats, result);
2532
2533   GST_DEBUG ("next interval: %" GST_TIME_FORMAT, GST_TIME_ARGS (result));
2534
2535   return result;
2536 }
2537
2538 static void
2539 source_mark_bye (const gchar * key, RTPSource * source, const gchar * reason)
2540 {
2541   if (source->internal)
2542     rtp_source_mark_bye (source, reason);
2543 }
2544
2545 /**
2546  * rtp_session_mark_all_bye:
2547  * @sess: an #RTPSession
2548  * @reason: a reason
2549  *
2550  * Mark all internal sources of the session as BYE with @reason.
2551  */
2552 void
2553 rtp_session_mark_all_bye (RTPSession * sess, const gchar * reason)
2554 {
2555   g_return_if_fail (RTP_IS_SESSION (sess));
2556
2557   RTP_SESSION_LOCK (sess);
2558   g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
2559       (GHFunc) source_mark_bye, (gpointer) reason);
2560   RTP_SESSION_UNLOCK (sess);
2561 }
2562
2563 /* Stop the current @sess and schedule a BYE message for the other members.
2564  * One must have the session lock to call this function
2565  */
2566 static GstFlowReturn
2567 rtp_session_schedule_bye_locked (RTPSession * sess, GstClockTime current_time)
2568 {
2569   GstFlowReturn result = GST_FLOW_OK;
2570   GstClockTime interval;
2571
2572   /* nothing to do it we already scheduled bye */
2573   if (sess->scheduled_bye)
2574     goto done;
2575
2576   /* we schedule BYE now */
2577   sess->scheduled_bye = TRUE;
2578   /* at least one member wants to send a BYE */
2579   INIT_AVG (sess->stats.avg_rtcp_packet_size, 100);
2580   sess->stats.bye_members = 1;
2581   sess->first_rtcp = TRUE;
2582   sess->allow_early = TRUE;
2583
2584   /* reschedule transmission */
2585   sess->last_rtcp_send_time = current_time;
2586   interval = calculate_rtcp_interval (sess, FALSE, TRUE);
2587
2588   if (interval != GST_CLOCK_TIME_NONE)
2589     sess->next_rtcp_check_time = current_time + interval;
2590   else
2591     sess->next_rtcp_check_time = GST_CLOCK_TIME_NONE;
2592
2593   GST_DEBUG ("Schedule BYE for %" GST_TIME_FORMAT ", %" GST_TIME_FORMAT,
2594       GST_TIME_ARGS (interval), GST_TIME_ARGS (sess->next_rtcp_check_time));
2595
2596   RTP_SESSION_UNLOCK (sess);
2597   /* notify app of reconsideration */
2598   if (sess->callbacks.reconsider)
2599     sess->callbacks.reconsider (sess, sess->reconsider_user_data);
2600   RTP_SESSION_LOCK (sess);
2601 done:
2602
2603   return result;
2604 }
2605
2606 /**
2607  * rtp_session_schedule_bye:
2608  * @sess: an #RTPSession
2609  * @current_time: the current system time
2610  *
2611  * Schedule a BYE message for all sources marked as BYE in @sess.
2612  *
2613  * Returns: a #GstFlowReturn.
2614  */
2615 GstFlowReturn
2616 rtp_session_schedule_bye (RTPSession * sess, GstClockTime current_time)
2617 {
2618   GstFlowReturn result = GST_FLOW_OK;
2619
2620   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2621
2622   RTP_SESSION_LOCK (sess);
2623   result = rtp_session_schedule_bye_locked (sess, current_time);
2624   RTP_SESSION_UNLOCK (sess);
2625
2626   return result;
2627 }
2628
2629 /**
2630  * rtp_session_next_timeout:
2631  * @sess: an #RTPSession
2632  * @current_time: the current system time
2633  *
2634  * Get the next time we should perform session maintenance tasks.
2635  *
2636  * Returns: a time when rtp_session_on_timeout() should be called with the
2637  * current system time.
2638  */
2639 GstClockTime
2640 rtp_session_next_timeout (RTPSession * sess, GstClockTime current_time)
2641 {
2642   GstClockTime result, interval = 0;
2643
2644   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_CLOCK_TIME_NONE);
2645
2646   RTP_SESSION_LOCK (sess);
2647
2648   if (GST_CLOCK_TIME_IS_VALID (sess->next_early_rtcp_time)) {
2649     result = sess->next_early_rtcp_time;
2650     goto early_exit;
2651   }
2652
2653   result = sess->next_rtcp_check_time;
2654
2655   GST_DEBUG ("current time: %" GST_TIME_FORMAT
2656       ", next time: %" GST_TIME_FORMAT,
2657       GST_TIME_ARGS (current_time), GST_TIME_ARGS (result));
2658
2659   if (result == GST_CLOCK_TIME_NONE || result < current_time) {
2660     GST_DEBUG ("take current time as base");
2661     /* our previous check time expired, start counting from the current time
2662      * again. */
2663     result = current_time;
2664   }
2665
2666   if (sess->scheduled_bye) {
2667     if (sess->stats.active_sources >= 50) {
2668       GST_DEBUG ("reconsider BYE, more than 50 sources");
2669       /* reconsider BYE if members >= 50 */
2670       interval = calculate_rtcp_interval (sess, FALSE, TRUE);
2671     }
2672   } else {
2673     if (sess->first_rtcp) {
2674       GST_DEBUG ("first RTCP packet");
2675       /* we are called for the first time */
2676       interval = calculate_rtcp_interval (sess, FALSE, TRUE);
2677     } else if (sess->next_rtcp_check_time < current_time) {
2678       GST_DEBUG ("old check time expired, getting new timeout");
2679       /* get a new timeout when we need to */
2680       interval = calculate_rtcp_interval (sess, FALSE, FALSE);
2681     }
2682   }
2683
2684   if (interval != GST_CLOCK_TIME_NONE)
2685     result += interval;
2686   else
2687     result = GST_CLOCK_TIME_NONE;
2688
2689   sess->next_rtcp_check_time = result;
2690
2691 early_exit:
2692
2693   GST_DEBUG ("current time: %" GST_TIME_FORMAT
2694       ", next time: %" GST_TIME_FORMAT,
2695       GST_TIME_ARGS (current_time), GST_TIME_ARGS (result));
2696   RTP_SESSION_UNLOCK (sess);
2697
2698   return result;
2699 }
2700
2701 typedef struct
2702 {
2703   RTPSource *source;
2704   gboolean is_bye;
2705   GstBuffer *buffer;
2706 } ReportOutput;
2707
2708 typedef struct
2709 {
2710   GstRTCPBuffer rtcpbuf;
2711   RTPSession *sess;
2712   RTPSource *source;
2713   guint num_to_report;
2714   GstBuffer *rtcp;
2715   GstClockTime current_time;
2716   guint64 ntpnstime;
2717   GstClockTime running_time;
2718   GstClockTime interval;
2719   GstRTCPPacket packet;
2720   gboolean has_sdes;
2721   gboolean is_early;
2722   gboolean may_suppress;
2723   GQueue output;
2724 } ReportData;
2725
2726 static void
2727 session_start_rtcp (RTPSession * sess, ReportData * data)
2728 {
2729   GstRTCPPacket *packet = &data->packet;
2730   RTPSource *own = data->source;
2731   GstRTCPBuffer *rtcp = &data->rtcpbuf;
2732
2733   data->rtcp = gst_rtcp_buffer_new (sess->mtu);
2734   data->has_sdes = FALSE;
2735
2736   gst_rtcp_buffer_map (data->rtcp, GST_MAP_READWRITE, rtcp);
2737
2738   if (RTP_SOURCE_IS_SENDER (own)) {
2739     guint64 ntptime;
2740     guint32 rtptime;
2741     guint32 packet_count, octet_count;
2742
2743     /* we are a sender, create SR */
2744     GST_DEBUG ("create SR for SSRC %08x", own->ssrc);
2745     gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_SR, packet);
2746
2747     /* get latest stats */
2748     rtp_source_get_new_sr (own, data->ntpnstime, data->running_time,
2749         &ntptime, &rtptime, &packet_count, &octet_count);
2750     /* store stats */
2751     rtp_source_process_sr (own, data->current_time, ntptime, rtptime,
2752         packet_count, octet_count);
2753
2754     /* fill in sender report info */
2755     gst_rtcp_packet_sr_set_sender_info (packet, own->ssrc,
2756         ntptime, rtptime, packet_count, octet_count);
2757   } else {
2758     /* we are only receiver, create RR */
2759     GST_DEBUG ("create RR for SSRC %08x", own->ssrc);
2760     gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_RR, packet);
2761     gst_rtcp_packet_rr_set_ssrc (packet, own->ssrc);
2762   }
2763 }
2764
2765 /* construct a Sender or Receiver Report */
2766 static void
2767 session_report_blocks (const gchar * key, RTPSource * source, ReportData * data)
2768 {
2769   RTPSession *sess = data->sess;
2770   GstRTCPPacket *packet = &data->packet;
2771   guint8 fractionlost;
2772   gint32 packetslost;
2773   guint32 exthighestseq, jitter;
2774   guint32 lsr, dlsr;
2775
2776   /* don't report for sources in future generations */
2777   if (((gint16) (source->generation - sess->generation)) > 0) {
2778     GST_DEBUG ("source %08x generation %u > %u", source->ssrc,
2779         source->generation, sess->generation);
2780     return;
2781   }
2782
2783   /* only report about other sender */
2784   if (source == data->source)
2785     goto reported;
2786
2787   if (gst_rtcp_packet_get_rb_count (packet) == GST_RTCP_MAX_RB_COUNT) {
2788     GST_DEBUG ("max RB count reached");
2789     return;
2790   }
2791
2792   if (!RTP_SOURCE_IS_SENDER (source)) {
2793     GST_DEBUG ("source %08x not sender", source->ssrc);
2794     goto reported;
2795   }
2796
2797   GST_DEBUG ("create RB for SSRC %08x", source->ssrc);
2798
2799   /* get new stats */
2800   rtp_source_get_new_rb (source, data->current_time, &fractionlost,
2801       &packetslost, &exthighestseq, &jitter, &lsr, &dlsr);
2802
2803   /* store last generated RR packet */
2804   source->last_rr.is_valid = TRUE;
2805   source->last_rr.fractionlost = fractionlost;
2806   source->last_rr.packetslost = packetslost;
2807   source->last_rr.exthighestseq = exthighestseq;
2808   source->last_rr.jitter = jitter;
2809   source->last_rr.lsr = lsr;
2810   source->last_rr.dlsr = dlsr;
2811
2812   /* packet is not yet filled, add report block for this source. */
2813   gst_rtcp_packet_add_rb (packet, source->ssrc, fractionlost, packetslost,
2814       exthighestseq, jitter, lsr, dlsr);
2815
2816 reported:
2817   /* source is reported, move to next generation */
2818   source->generation = sess->generation + 1;
2819
2820   /* if we reported all sources in this generation, move to next */
2821   if (--data->num_to_report == 0) {
2822     sess->generation++;
2823     GST_DEBUG ("all reported, generation now %u", sess->generation);
2824   }
2825 }
2826
2827 /* perform cleanup of sources that timed out */
2828 static void
2829 session_cleanup (const gchar * key, RTPSource * source, ReportData * data)
2830 {
2831   gboolean remove = FALSE;
2832   gboolean byetimeout = FALSE;
2833   gboolean sendertimeout = FALSE;
2834   gboolean is_sender, is_active;
2835   RTPSession *sess = data->sess;
2836   GstClockTime interval, binterval;
2837   GstClockTime btime;
2838
2839   GST_DEBUG ("look at %08x, generation %u", source->ssrc, source->generation);
2840
2841   /* check for outdated collisions */
2842   if (source->internal) {
2843     GST_DEBUG ("Timing out collisions for %x", source->ssrc);
2844     rtp_source_timeout (source, data->current_time,
2845         /* "a relatively long time" -- RFC 3550 section 8.2 */
2846         RTP_STATS_MIN_INTERVAL * GST_SECOND * 10,
2847         data->running_time - sess->rtcp_feedback_retention_window);
2848   }
2849
2850   /* nothing else to do when without RTCP */
2851   if (data->interval == GST_CLOCK_TIME_NONE)
2852     return;
2853
2854   is_sender = RTP_SOURCE_IS_SENDER (source);
2855   is_active = RTP_SOURCE_IS_ACTIVE (source);
2856
2857   /* our own rtcp interval may have been forced low by secondary configuration,
2858    * while sender side may still operate with higher interval,
2859    * so do not just take our interval to decide on timing out sender,
2860    * but take (if data->interval <= 5 * GST_SECOND):
2861    *   interval = CLAMP (sender_interval, data->interval, 5 * GST_SECOND)
2862    * where sender_interval is difference between last 2 received RTCP reports
2863    */
2864   if (data->interval >= 5 * GST_SECOND || source->internal) {
2865     binterval = data->interval;
2866   } else {
2867     GST_LOG ("prev_rtcp %" GST_TIME_FORMAT ", last_rtcp %" GST_TIME_FORMAT,
2868         GST_TIME_ARGS (source->stats.prev_rtcptime),
2869         GST_TIME_ARGS (source->stats.last_rtcptime));
2870     /* if not received enough yet, fallback to larger default */
2871     if (source->stats.last_rtcptime > source->stats.prev_rtcptime)
2872       binterval = source->stats.last_rtcptime - source->stats.prev_rtcptime;
2873     else
2874       binterval = 5 * GST_SECOND;
2875     binterval = CLAMP (binterval, data->interval, 5 * GST_SECOND);
2876   }
2877   GST_LOG ("timeout base interval %" GST_TIME_FORMAT,
2878       GST_TIME_ARGS (binterval));
2879
2880   if (!source->internal) {
2881     if (source->marked_bye) {
2882       /* if we received a BYE from the source, remove the source after some
2883        * time. */
2884       if (data->current_time > source->bye_time &&
2885           data->current_time - source->bye_time > sess->stats.bye_timeout) {
2886         GST_DEBUG ("removing BYE source %08x", source->ssrc);
2887         remove = TRUE;
2888         byetimeout = TRUE;
2889       }
2890     }
2891     /* sources that were inactive for more than 5 times the deterministic reporting
2892      * interval get timed out. the min timeout is 5 seconds. */
2893     /* mind old time that might pre-date last time going to PLAYING */
2894     btime = MAX (source->last_activity, sess->start_time);
2895     if (data->current_time > btime) {
2896       interval = MAX (binterval * 5, 5 * GST_SECOND);
2897       if (data->current_time - btime > interval) {
2898         GST_DEBUG ("removing timeout source %08x, last %" GST_TIME_FORMAT,
2899             source->ssrc, GST_TIME_ARGS (btime));
2900         remove = TRUE;
2901       }
2902     }
2903   }
2904
2905   /* senders that did not send for a long time become a receiver, this also
2906    * holds for our own sources. */
2907   if (is_sender) {
2908     /* mind old time that might pre-date last time going to PLAYING */
2909     btime = MAX (source->last_rtp_activity, sess->start_time);
2910     if (data->current_time > btime) {
2911       interval = MAX (binterval * 2, 5 * GST_SECOND);
2912       if (data->current_time - btime > interval) {
2913         if (source->internal && source->sent_bye) {
2914           /* an internal source is BYE and stopped sending RTP, remove */
2915           GST_DEBUG ("internal BYE source %08x timed out, last %"
2916               GST_TIME_FORMAT, source->ssrc, GST_TIME_ARGS (btime));
2917           remove = TRUE;
2918         } else {
2919           GST_DEBUG ("sender source %08x timed out and became receiver, last %"
2920               GST_TIME_FORMAT, source->ssrc, GST_TIME_ARGS (btime));
2921           sendertimeout = TRUE;
2922         }
2923       }
2924     }
2925   }
2926
2927   if (remove) {
2928     sess->total_sources--;
2929     if (is_sender) {
2930       sess->stats.sender_sources--;
2931       if (source->internal)
2932         sess->stats.internal_sender_sources--;
2933     }
2934     if (is_active)
2935       sess->stats.active_sources--;
2936
2937     if (source->internal)
2938       sess->stats.internal_sources--;
2939
2940     if (byetimeout)
2941       on_bye_timeout (sess, source);
2942     else
2943       on_timeout (sess, source);
2944   } else {
2945     if (sendertimeout) {
2946       source->is_sender = FALSE;
2947       sess->stats.sender_sources--;
2948       if (source->internal)
2949         sess->stats.internal_sender_sources--;
2950
2951       on_sender_timeout (sess, source);
2952     }
2953     /* count how many source to report in this generation */
2954     if (((gint16) (source->generation - sess->generation)) <= 0)
2955       data->num_to_report++;
2956   }
2957   source->closing = remove;
2958 }
2959
2960 static void
2961 session_sdes (RTPSession * sess, ReportData * data)
2962 {
2963   GstRTCPPacket *packet = &data->packet;
2964   const GstStructure *sdes;
2965   gint i, n_fields;
2966   GstRTCPBuffer *rtcp = &data->rtcpbuf;
2967
2968   /* add SDES packet */
2969   gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_SDES, packet);
2970
2971   gst_rtcp_packet_sdes_add_item (packet, data->source->ssrc);
2972
2973   sdes = rtp_source_get_sdes_struct (data->source);
2974
2975   /* add all fields in the structure, the order is not important. */
2976   n_fields = gst_structure_n_fields (sdes);
2977   for (i = 0; i < n_fields; ++i) {
2978     const gchar *field;
2979     const gchar *value;
2980     GstRTCPSDESType type;
2981
2982     field = gst_structure_nth_field_name (sdes, i);
2983     if (field == NULL)
2984       continue;
2985     value = gst_structure_get_string (sdes, field);
2986     if (value == NULL)
2987       continue;
2988     type = gst_rtcp_sdes_name_to_type (field);
2989
2990     /* Early packets are minimal and only include the CNAME */
2991     if (data->is_early && type != GST_RTCP_SDES_CNAME)
2992       continue;
2993
2994     if (type > GST_RTCP_SDES_END && type < GST_RTCP_SDES_PRIV) {
2995       gst_rtcp_packet_sdes_add_entry (packet, type, strlen (value),
2996           (const guint8 *) value);
2997     } else if (type == GST_RTCP_SDES_PRIV) {
2998       gsize prefix_len;
2999       gsize value_len;
3000       gsize data_len;
3001       guint8 data[256];
3002
3003       /* don't accept entries that are too big */
3004       prefix_len = strlen (field);
3005       if (prefix_len > 255)
3006         continue;
3007       value_len = strlen (value);
3008       if (value_len > 255)
3009         continue;
3010       data_len = 1 + prefix_len + value_len;
3011       if (data_len > 255)
3012         continue;
3013
3014       data[0] = prefix_len;
3015       memcpy (&data[1], field, prefix_len);
3016       memcpy (&data[1 + prefix_len], value, value_len);
3017
3018       gst_rtcp_packet_sdes_add_entry (packet, type, data_len, data);
3019     }
3020   }
3021
3022   data->has_sdes = TRUE;
3023 }
3024
3025 /* schedule a BYE packet */
3026 static void
3027 make_source_bye (RTPSession * sess, RTPSource * source, ReportData * data)
3028 {
3029   GstRTCPPacket *packet = &data->packet;
3030   GstRTCPBuffer *rtcp = &data->rtcpbuf;
3031
3032   /* add SDES */
3033   session_sdes (sess, data);
3034   /* add a BYE packet */
3035   gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_BYE, packet);
3036   gst_rtcp_packet_bye_add_ssrc (packet, source->ssrc);
3037   if (source->bye_reason)
3038     gst_rtcp_packet_bye_set_reason (packet, source->bye_reason);
3039
3040   /* we have a BYE packet now */
3041   source->sent_bye = TRUE;
3042 }
3043
3044 static gboolean
3045 is_rtcp_time (RTPSession * sess, GstClockTime current_time, ReportData * data)
3046 {
3047   GstClockTime new_send_time, elapsed;
3048
3049   if (GST_CLOCK_TIME_IS_VALID (sess->next_early_rtcp_time))
3050     data->is_early = TRUE;
3051   else
3052     data->is_early = FALSE;
3053
3054   if (data->is_early && sess->next_early_rtcp_time < current_time)
3055     goto early;
3056
3057   /* no need to check yet */
3058   if (sess->next_rtcp_check_time == GST_CLOCK_TIME_NONE ||
3059       sess->next_rtcp_check_time > current_time) {
3060     GST_DEBUG ("no check time yet, next %" GST_TIME_FORMAT " > now %"
3061         GST_TIME_FORMAT, GST_TIME_ARGS (sess->next_rtcp_check_time),
3062         GST_TIME_ARGS (current_time));
3063     return FALSE;
3064   }
3065
3066   /* get elapsed time since we last reported */
3067   elapsed = current_time - sess->last_rtcp_send_time;
3068
3069   new_send_time = data->interval;
3070   /* perform forward reconsideration */
3071   if (new_send_time != GST_CLOCK_TIME_NONE) {
3072     new_send_time = rtp_stats_add_rtcp_jitter (&sess->stats, new_send_time);
3073
3074     GST_DEBUG ("forward reconsideration %" GST_TIME_FORMAT ", elapsed %"
3075         GST_TIME_FORMAT, GST_TIME_ARGS (new_send_time),
3076         GST_TIME_ARGS (elapsed));
3077
3078     new_send_time += sess->last_rtcp_send_time;
3079   }
3080
3081   /* check if reconsideration */
3082   if (new_send_time == GST_CLOCK_TIME_NONE || current_time < new_send_time) {
3083     GST_DEBUG ("reconsider RTCP for %" GST_TIME_FORMAT,
3084         GST_TIME_ARGS (new_send_time));
3085     /* store new check time */
3086     sess->next_rtcp_check_time = new_send_time;
3087     return FALSE;
3088   }
3089
3090 early:
3091
3092   new_send_time = calculate_rtcp_interval (sess, FALSE, FALSE);
3093
3094   GST_DEBUG ("can send RTCP now, next interval %" GST_TIME_FORMAT,
3095       GST_TIME_ARGS (new_send_time));
3096
3097   sess->next_rtcp_check_time = new_send_time;
3098   if (new_send_time != GST_CLOCK_TIME_NONE) {
3099     sess->next_rtcp_check_time += current_time;
3100
3101     /* Apply the rules from RFC 4585 section 3.5.3 */
3102     if (sess->stats.min_interval != 0 && !sess->first_rtcp) {
3103       GstClockTimeDiff T_rr_current_interval =
3104           g_random_double_range (0.5, 1.5) * sess->stats.min_interval;
3105
3106       /* This will caused the RTCP to be suppressed if no FB packets are added */
3107       if (sess->last_rtcp_send_time + T_rr_current_interval >
3108           sess->next_rtcp_check_time) {
3109         GST_DEBUG ("RTCP packet could be suppressed min: %" GST_TIME_FORMAT
3110             " last: %" GST_TIME_FORMAT
3111             " + T_rr_current_interval: %" GST_TIME_FORMAT
3112             " >  sess->next_rtcp_check_time: %" GST_TIME_FORMAT,
3113             GST_TIME_ARGS (sess->stats.min_interval),
3114             GST_TIME_ARGS (sess->last_rtcp_send_time),
3115             GST_TIME_ARGS (T_rr_current_interval),
3116             GST_TIME_ARGS (sess->next_rtcp_check_time));
3117         data->may_suppress = TRUE;
3118       }
3119     }
3120   }
3121
3122   return TRUE;
3123 }
3124
3125 static void
3126 clone_ssrcs_hashtable (gchar * key, RTPSource * source, GHashTable * hash_table)
3127 {
3128   g_hash_table_insert (hash_table, key, g_object_ref (source));
3129 }
3130
3131 static gboolean
3132 remove_closing_sources (const gchar * key, RTPSource * source, gpointer * data)
3133 {
3134   return source->closing;
3135 }
3136
3137 static void
3138 generate_rtcp (const gchar * key, RTPSource * source, ReportData * data)
3139 {
3140   RTPSession *sess = data->sess;
3141   gboolean is_bye = FALSE;
3142   ReportOutput *output;
3143
3144   /* only generate RTCP for active internal sources */
3145   if (!source->internal || source->sent_bye)
3146     return;
3147
3148   data->source = source;
3149
3150   /* open packet */
3151   session_start_rtcp (sess, data);
3152
3153   if (source->marked_bye) {
3154     /* send BYE */
3155     make_source_bye (sess, source, data);
3156     is_bye = TRUE;
3157   } else if (!data->is_early) {
3158     /* loop over all known sources and add report blocks. If we are early, we
3159      * just make a minimal RTCP packet and skip this step */
3160     g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
3161         (GHFunc) session_report_blocks, data);
3162   }
3163   if (!data->has_sdes)
3164     session_sdes (sess, data);
3165
3166   gst_rtcp_buffer_unmap (&data->rtcpbuf);
3167
3168   output = g_slice_new (ReportOutput);
3169   output->source = g_object_ref (source);
3170   output->is_bye = is_bye;
3171   output->buffer = data->rtcp;
3172   /* queue the RTCP packet to push later */
3173   g_queue_push_tail (&data->output, output);
3174 }
3175
3176 /**
3177  * rtp_session_on_timeout:
3178  * @sess: an #RTPSession
3179  * @current_time: the current system time
3180  * @ntpnstime: the current NTP time in nanoseconds
3181  * @running_time: the current running_time of the pipeline
3182  *
3183  * Perform maintenance actions after the timeout obtained with
3184  * rtp_session_next_timeout() expired.
3185  *
3186  * This function will perform timeouts of receivers and senders, send a BYE
3187  * packet or generate RTCP packets with current session stats.
3188  *
3189  * This function can call the #RTPSessionSendRTCP callback, possibly multiple
3190  * times, for each packet that should be processed.
3191  *
3192  * Returns: a #GstFlowReturn.
3193  */
3194 GstFlowReturn
3195 rtp_session_on_timeout (RTPSession * sess, GstClockTime current_time,
3196     guint64 ntpnstime, GstClockTime running_time)
3197 {
3198   GstFlowReturn result = GST_FLOW_OK;
3199   ReportData data = { GST_RTCP_BUFFER_INIT };
3200   GHashTable *table_copy;
3201   ReportOutput *output;
3202
3203   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
3204
3205   GST_DEBUG ("reporting at %" GST_TIME_FORMAT ", NTP time %" GST_TIME_FORMAT
3206       ", running-time %" GST_TIME_FORMAT, GST_TIME_ARGS (current_time),
3207       GST_TIME_ARGS (ntpnstime), GST_TIME_ARGS (running_time));
3208
3209   data.sess = sess;
3210   data.current_time = current_time;
3211   data.ntpnstime = ntpnstime;
3212   data.running_time = running_time;
3213   data.num_to_report = 0;
3214   data.may_suppress = FALSE;
3215   g_queue_init (&data.output);
3216
3217   RTP_SESSION_LOCK (sess);
3218   /* get a new interval, we need this for various cleanups etc */
3219   data.interval = calculate_rtcp_interval (sess, TRUE, sess->first_rtcp);
3220
3221   /* we need an internal source now */
3222   if (sess->stats.internal_sources == 0) {
3223     RTPSource *source;
3224     gboolean created;
3225
3226     source = obtain_internal_source (sess, sess->suggested_ssrc, &created);
3227     g_object_unref (source);
3228   }
3229
3230   /* Make a local copy of the hashtable. We need to do this because the
3231    * cleanup stage below releases the session lock. */
3232   table_copy = g_hash_table_new_full (NULL, NULL, NULL,
3233       (GDestroyNotify) g_object_unref);
3234   g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
3235       (GHFunc) clone_ssrcs_hashtable, table_copy);
3236
3237   /* Clean up the session, mark the source for removing, this might release the
3238    * session lock. */
3239   g_hash_table_foreach (table_copy, (GHFunc) session_cleanup, &data);
3240   g_hash_table_destroy (table_copy);
3241
3242   /* Now remove the marked sources */
3243   g_hash_table_foreach_remove (sess->ssrcs[sess->mask_idx],
3244       (GHRFunc) remove_closing_sources, NULL);
3245
3246   /* see if we need to generate SR or RR packets */
3247   if (!is_rtcp_time (sess, current_time, &data))
3248     goto done;
3249
3250   GST_DEBUG ("doing RTCP generation %u for %u sources", sess->generation,
3251       data.num_to_report);
3252
3253   /* generate RTCP for all internal sources */
3254   g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
3255       (GHFunc) generate_rtcp, &data);
3256
3257   /* we keep track of the last report time in order to timeout inactive
3258    * receivers or senders */
3259   if (!data.is_early && !data.may_suppress)
3260     sess->last_rtcp_send_time = data.current_time;
3261   sess->first_rtcp = FALSE;
3262   sess->next_early_rtcp_time = GST_CLOCK_TIME_NONE;
3263
3264 done:
3265   RTP_SESSION_UNLOCK (sess);
3266
3267   /* push out the RTCP packets */
3268   while ((output = g_queue_pop_head (&data.output))) {
3269     gboolean do_not_suppress;
3270     GstBuffer *buffer = output->buffer;
3271     RTPSource *source = output->source;
3272
3273     /* Give the user a change to add its own packet */
3274     g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SENDING_RTCP], 0,
3275         buffer, data.is_early, &do_not_suppress);
3276
3277     if (sess->callbacks.send_rtcp && (do_not_suppress || !data.may_suppress)) {
3278       guint packet_size;
3279
3280       packet_size = gst_buffer_get_size (buffer) + sess->header_len;
3281
3282       UPDATE_AVG (sess->stats.avg_rtcp_packet_size, packet_size);
3283       GST_DEBUG ("%p, sending RTCP packet, avg size %u, %u", &sess->stats,
3284           sess->stats.avg_rtcp_packet_size, packet_size);
3285       result =
3286           sess->callbacks.send_rtcp (sess, source, buffer, output->is_bye,
3287           sess->send_rtcp_user_data);
3288     } else {
3289       GST_DEBUG ("freeing packet callback: %p"
3290           " do_not_suppress: %d may_suppress: %d",
3291           sess->callbacks.send_rtcp, do_not_suppress, data.may_suppress);
3292       gst_buffer_unref (buffer);
3293     }
3294     g_object_unref (source);
3295     g_slice_free (ReportOutput, output);
3296   }
3297   return result;
3298 }
3299
3300 /**
3301  * rtp_session_request_early_rtcp:
3302  * @sess: an #RTPSession
3303  * @current_time: the current system time
3304  * @max_delay: maximum delay
3305  *
3306  * Request transmission of early RTCP
3307  */
3308 void
3309 rtp_session_request_early_rtcp (RTPSession * sess, GstClockTime current_time,
3310     GstClockTimeDiff max_delay)
3311 {
3312   GstClockTime T_dither_max;
3313
3314   /* Implements the algorithm described in RFC 4585 section 3.5.2 */
3315
3316   RTP_SESSION_LOCK (sess);
3317
3318   /* Check if already requested */
3319   /*  RFC 4585 section 3.5.2 step 2 */
3320   if (GST_CLOCK_TIME_IS_VALID (sess->next_early_rtcp_time))
3321     goto dont_send;
3322
3323   if (!GST_CLOCK_TIME_IS_VALID (sess->next_rtcp_check_time))
3324     goto dont_send;
3325
3326   /* Ignore the request a scheduled packet will be in time anyway */
3327   if (current_time + max_delay > sess->next_rtcp_check_time)
3328     goto dont_send;
3329
3330   /*  RFC 4585 section 3.5.2 step 2b */
3331   /* If the total sources is <=2, then there is only us and one peer */
3332   if (sess->total_sources <= 2) {
3333     T_dither_max = 0;
3334   } else {
3335     /* Divide by 2 because l = 0.5 */
3336     T_dither_max = sess->next_rtcp_check_time - sess->last_rtcp_send_time;
3337     T_dither_max /= 2;
3338   }
3339
3340   /*  RFC 4585 section 3.5.2 step 3 */
3341   if (current_time + T_dither_max > sess->next_rtcp_check_time)
3342     goto dont_send;
3343
3344   /*  RFC 4585 section 3.5.2 step 4
3345    * Don't send if allow_early is FALSE, but not if we are in
3346    * immediate mode, meaning we are part of a group of at most the
3347    * application-specific threshold.
3348    */
3349   if (sess->total_sources > sess->rtcp_immediate_feedback_threshold &&
3350       sess->allow_early == FALSE)
3351     goto dont_send;
3352
3353   if (T_dither_max) {
3354     /* Schedule an early transmission later */
3355     sess->next_early_rtcp_time = g_random_double () * T_dither_max +
3356         current_time;
3357   } else {
3358     /* If no dithering, schedule it for NOW */
3359     sess->next_early_rtcp_time = current_time;
3360   }
3361
3362   RTP_SESSION_UNLOCK (sess);
3363
3364   /* notify app of need to send packet early
3365    * and therefore of timeout change */
3366   if (sess->callbacks.reconsider)
3367     sess->callbacks.reconsider (sess, sess->reconsider_user_data);
3368
3369   return;
3370
3371 dont_send:
3372
3373   RTP_SESSION_UNLOCK (sess);
3374 }
3375
3376 gboolean
3377 rtp_session_request_key_unit (RTPSession * sess, guint32 ssrc, GstClockTime now,
3378     gboolean fir, gint count)
3379 {
3380   RTPSource *src = find_source (sess, ssrc);
3381
3382   if (!src)
3383     return FALSE;
3384
3385   if (fir) {
3386     src->send_pli = FALSE;
3387     src->send_fir = TRUE;
3388
3389     if (count == -1 || count != src->last_fir_count)
3390       src->current_send_fir_seqnum++;
3391     src->last_fir_count = count;
3392   } else if (!src->send_fir) {
3393     src->send_pli = TRUE;
3394   }
3395
3396   rtp_session_request_early_rtcp (sess, now, 200 * GST_MSECOND);
3397
3398   return TRUE;
3399 }
3400
3401 static gboolean
3402 has_pli_compare_func (gconstpointer a, gconstpointer ignored)
3403 {
3404   GstRTCPPacket packet;
3405   GstRTCPBuffer rtcp = { NULL, };
3406   gboolean ret = FALSE;
3407
3408   gst_rtcp_buffer_map ((GstBuffer *) a, GST_MAP_READ, &rtcp);
3409
3410   if (gst_rtcp_buffer_get_first_packet (&rtcp, &packet)) {
3411     if (gst_rtcp_packet_get_type (&packet) == GST_RTCP_TYPE_PSFB &&
3412         gst_rtcp_packet_fb_get_type (&packet) == GST_RTCP_PSFB_TYPE_PLI)
3413       ret = TRUE;
3414   }
3415
3416   gst_rtcp_buffer_unmap (&rtcp);
3417
3418   return ret;
3419 }
3420
3421 static gboolean
3422 rtp_session_on_sending_rtcp (RTPSession * sess, GstBuffer * buffer,
3423     gboolean early)
3424 {
3425   gboolean ret = FALSE;
3426   GHashTableIter iter;
3427   gpointer key, value;
3428   gboolean started_fir = FALSE;
3429   GstRTCPPacket fir_rtcppacket;
3430   GstRTCPPacket packet;
3431   GstRTCPBuffer rtcp = { NULL, };
3432   guint32 ssrc;
3433
3434   gst_rtcp_buffer_map (buffer, GST_MAP_READWRITE, &rtcp);
3435
3436   gst_rtcp_buffer_get_first_packet (&rtcp, &packet);
3437   switch (gst_rtcp_packet_get_type (&packet)) {
3438     case GST_RTCP_TYPE_SR:
3439       gst_rtcp_packet_sr_get_sender_info (&packet, &ssrc,
3440           NULL, NULL, NULL, NULL);
3441       break;
3442     case GST_RTCP_TYPE_RR:
3443       ssrc = gst_rtcp_packet_rr_get_ssrc (&packet);
3444       break;
3445     default:
3446       goto done;
3447   }
3448
3449   RTP_SESSION_LOCK (sess);
3450   g_hash_table_iter_init (&iter, sess->ssrcs[sess->mask_idx]);
3451   while (g_hash_table_iter_next (&iter, &key, &value)) {
3452     guint media_ssrc = GPOINTER_TO_UINT (key);
3453     RTPSource *media_src = value;
3454     guint8 *fci_data;
3455
3456     if (media_src->send_fir) {
3457       if (!started_fir) {
3458         if (!gst_rtcp_buffer_add_packet (&rtcp, GST_RTCP_TYPE_PSFB,
3459                 &fir_rtcppacket))
3460           break;
3461         gst_rtcp_packet_fb_set_type (&fir_rtcppacket, GST_RTCP_PSFB_TYPE_FIR);
3462         gst_rtcp_packet_fb_set_sender_ssrc (&fir_rtcppacket, ssrc);
3463         gst_rtcp_packet_fb_set_media_ssrc (&fir_rtcppacket, 0);
3464
3465         if (!gst_rtcp_packet_fb_set_fci_length (&fir_rtcppacket, 2)) {
3466           gst_rtcp_packet_remove (&fir_rtcppacket);
3467           break;
3468         }
3469         ret = TRUE;
3470         started_fir = TRUE;
3471       } else {
3472         if (!gst_rtcp_packet_fb_set_fci_length (&fir_rtcppacket,
3473                 !gst_rtcp_packet_fb_get_fci_length (&fir_rtcppacket) + 2))
3474           break;
3475       }
3476
3477       fci_data = gst_rtcp_packet_fb_get_fci (&fir_rtcppacket) -
3478           ((gst_rtcp_packet_fb_get_fci_length (&fir_rtcppacket) - 2) * 4);
3479
3480       GST_WRITE_UINT32_BE (fci_data, media_ssrc);
3481       fci_data += 4;
3482       fci_data[0] = media_src->current_send_fir_seqnum;
3483       fci_data[1] = fci_data[2] = fci_data[3] = 0;
3484       media_src->send_fir = FALSE;
3485     }
3486   }
3487
3488   g_hash_table_iter_init (&iter, sess->ssrcs[sess->mask_idx]);
3489   while (g_hash_table_iter_next (&iter, &key, &value)) {
3490     guint media_ssrc = GPOINTER_TO_UINT (key);
3491     RTPSource *media_src = value;
3492     GstRTCPPacket pli_rtcppacket;
3493
3494     if (media_src->send_pli && !rtp_source_has_retained (media_src,
3495             has_pli_compare_func, NULL)) {
3496       if (!gst_rtcp_buffer_add_packet (&rtcp, GST_RTCP_TYPE_PSFB,
3497               &pli_rtcppacket))
3498         /* Break because the packet is full, will put next request in a
3499          * further packet */
3500         break;
3501       gst_rtcp_packet_fb_set_type (&pli_rtcppacket, GST_RTCP_PSFB_TYPE_PLI);
3502       gst_rtcp_packet_fb_set_sender_ssrc (&pli_rtcppacket, ssrc);
3503       gst_rtcp_packet_fb_set_media_ssrc (&pli_rtcppacket, media_ssrc);
3504       ret = TRUE;
3505     }
3506     media_src->send_pli = FALSE;
3507   }
3508   RTP_SESSION_UNLOCK (sess);
3509
3510 done:
3511   gst_rtcp_buffer_unmap (&rtcp);
3512
3513   return ret;
3514 }
3515
3516 static void
3517 rtp_session_send_rtcp (RTPSession * sess, GstClockTimeDiff max_delay)
3518 {
3519   GstClockTime now;
3520
3521   if (!sess->callbacks.send_rtcp)
3522     return;
3523
3524   now = sess->callbacks.request_time (sess, sess->request_time_user_data);
3525
3526   rtp_session_request_early_rtcp (sess, now, max_delay);
3527 }