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