rtpmanager: don't pretend our random hostnames are fully-qualified domain names
[platform/upstream/gstreamer.git] / gst / rtpmanager / gstrtpbin.c
1 /* GStreamer
2  * Copyright (C) <2007> Wim Taymans <wim.taymans@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /**
21  * SECTION:element-gstrtpbin
22  * @see_also: gstrtpjitterbuffer, gstrtpsession, gstrtpptdemux, gstrtpssrcdemux
23  *
24  * RTP bin combines the functions of #GstRtpSession, #GstRtpSsrcDemux,
25  * #GstRtpJitterBuffer and #GstRtpPtDemux in one element. It allows for multiple
26  * RTP sessions that will be synchronized together using RTCP SR packets.
27  *
28  * #GstRtpBin is configured with a number of request pads that define the
29  * functionality that is activated, similar to the #GstRtpSession element.
30  *
31  * To use #GstRtpBin as an RTP receiver, request a recv_rtp_sink_\%d pad. The session
32  * number must be specified in the pad name.
33  * Data received on the recv_rtp_sink_\%d pad will be processed in the #GstRtpSession
34  * manager and after being validated forwarded on #GstRtpSsrcDemux element. Each
35  * RTP stream is demuxed based on the SSRC and send to a #GstRtpJitterBuffer. After
36  * the packets are released from the jitterbuffer, they will be forwarded to a
37  * #GstRtpPtDemux element. The #GstRtpPtDemux element will demux the packets based
38  * on the payload type and will create a unique pad recv_rtp_src_\%d_\%d_\%d on
39  * gstrtpbin with the session number, SSRC and payload type respectively as the pad
40  * name.
41  *
42  * To also use #GstRtpBin as an RTCP receiver, request a recv_rtcp_sink_\%d pad. The
43  * session number must be specified in the pad name.
44  *
45  * If you want the session manager to generate and send RTCP packets, request
46  * the send_rtcp_src_\%d pad with the session number in the pad name. Packet pushed
47  * on this pad contain SR/RR RTCP reports that should be sent to all participants
48  * in the session.
49  *
50  * To use #GstRtpBin as a sender, request a send_rtp_sink_\%d pad, which will
51  * automatically create a send_rtp_src_\%d pad. If the session number is not provided,
52  * the pad from the lowest available session will be returned. The session manager will modify the
53  * SSRC in the RTP packets to its own SSRC and wil forward the packets on the
54  * send_rtp_src_\%d pad after updating its internal state.
55  *
56  * The session manager needs the clock-rate of the payload types it is handling
57  * and will signal the #GstRtpSession::request-pt-map signal when it needs such a
58  * mapping. One can clear the cached values with the #GstRtpSession::clear-pt-map
59  * signal.
60  *
61  * Access to the internal statistics of gstrtpbin is provided with the
62  * get-internal-session property. This action signal gives access to the
63  * RTPSession object which further provides action signals to retrieve the
64  * internal source and other sources.
65  *
66  * <refsect2>
67  * <title>Example pipelines</title>
68  * |[
69  * gst-launch udpsrc port=5000 caps="application/x-rtp, ..." ! .recv_rtp_sink_0 \
70  *     gstrtpbin ! rtptheoradepay ! theoradec ! xvimagesink
71  * ]| Receive RTP data from port 5000 and send to the session 0 in gstrtpbin.
72  * |[
73  * gst-launch gstrtpbin name=rtpbin \
74  *         v4l2src ! ffmpegcolorspace ! ffenc_h263 ! rtph263ppay ! rtpbin.send_rtp_sink_0 \
75  *                   rtpbin.send_rtp_src_0 ! udpsink port=5000                            \
76  *                   rtpbin.send_rtcp_src_0 ! udpsink port=5001 sync=false async=false    \
77  *                   udpsrc port=5005 ! rtpbin.recv_rtcp_sink_0                           \
78  *         audiotestsrc ! amrnbenc ! rtpamrpay ! rtpbin.send_rtp_sink_1                   \
79  *                   rtpbin.send_rtp_src_1 ! udpsink port=5002                            \
80  *                   rtpbin.send_rtcp_src_1 ! udpsink port=5003 sync=false async=false    \
81  *                   udpsrc port=5007 ! rtpbin.recv_rtcp_sink_1
82  * ]| Encode and payload H263 video captured from a v4l2src. Encode and payload AMR
83  * audio generated from audiotestsrc. The video is sent to session 0 in rtpbin
84  * and the audio is sent to session 1. Video packets are sent on UDP port 5000
85  * and audio packets on port 5002. The video RTCP packets for session 0 are sent
86  * on port 5001 and the audio RTCP packets for session 0 are sent on port 5003.
87  * RTCP packets for session 0 are received on port 5005 and RTCP for session 1
88  * is received on port 5007. Since RTCP packets from the sender should be sent
89  * as soon as possible and do not participate in preroll, sync=false and
90  * async=false is configured on udpsink
91  * |[
92  * gst-launch -v gstrtpbin name=rtpbin                                          \
93  *     udpsrc caps="application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding-name=(string)H263-1998" \
94  *             port=5000 ! rtpbin.recv_rtp_sink_0                                \
95  *         rtpbin. ! rtph263pdepay ! ffdec_h263 ! xvimagesink                    \
96  *      udpsrc port=5001 ! rtpbin.recv_rtcp_sink_0                               \
97  *      rtpbin.send_rtcp_src_0 ! udpsink port=5005 sync=false async=false        \
98  *     udpsrc caps="application/x-rtp,media=(string)audio,clock-rate=(int)8000,encoding-name=(string)AMR,encoding-params=(string)1,octet-align=(string)1" \
99  *             port=5002 ! rtpbin.recv_rtp_sink_1                                \
100  *         rtpbin. ! rtpamrdepay ! amrnbdec ! alsasink                           \
101  *      udpsrc port=5003 ! rtpbin.recv_rtcp_sink_1                               \
102  *      rtpbin.send_rtcp_src_1 ! udpsink port=5007 sync=false async=false
103  * ]| Receive H263 on port 5000, send it through rtpbin in session 0, depayload,
104  * decode and display the video.
105  * Receive AMR on port 5002, send it through rtpbin in session 1, depayload,
106  * decode and play the audio.
107  * Receive server RTCP packets for session 0 on port 5001 and RTCP packets for
108  * session 1 on port 5003. These packets will be used for session management and
109  * synchronisation.
110  * Send RTCP reports for session 0 on port 5005 and RTCP reports for session 1
111  * on port 5007.
112  * </refsect2>
113  *
114  * Last reviewed on 2007-08-30 (0.10.6)
115  */
116
117 #ifdef HAVE_CONFIG_H
118 #include "config.h"
119 #endif
120 #include <stdio.h>
121 #include <string.h>
122
123 #include <gst/rtp/gstrtpbuffer.h>
124 #include <gst/rtp/gstrtcpbuffer.h>
125
126 #include "gstrtpbin-marshal.h"
127 #include "gstrtpbin.h"
128 #include "rtpsession.h"
129 #include "gstrtpsession.h"
130 #include "gstrtpjitterbuffer.h"
131
132 #include <gst/glib-compat-private.h>
133
134 GST_DEBUG_CATEGORY_STATIC (gst_rtp_bin_debug);
135 #define GST_CAT_DEFAULT gst_rtp_bin_debug
136
137 /* sink pads */
138 static GstStaticPadTemplate rtpbin_recv_rtp_sink_template =
139 GST_STATIC_PAD_TEMPLATE ("recv_rtp_sink_%d",
140     GST_PAD_SINK,
141     GST_PAD_REQUEST,
142     GST_STATIC_CAPS ("application/x-rtp")
143     );
144
145 static GstStaticPadTemplate rtpbin_recv_rtcp_sink_template =
146 GST_STATIC_PAD_TEMPLATE ("recv_rtcp_sink_%d",
147     GST_PAD_SINK,
148     GST_PAD_REQUEST,
149     GST_STATIC_CAPS ("application/x-rtcp")
150     );
151
152 static GstStaticPadTemplate rtpbin_send_rtp_sink_template =
153 GST_STATIC_PAD_TEMPLATE ("send_rtp_sink_%d",
154     GST_PAD_SINK,
155     GST_PAD_REQUEST,
156     GST_STATIC_CAPS ("application/x-rtp")
157     );
158
159 /* src pads */
160 static GstStaticPadTemplate rtpbin_recv_rtp_src_template =
161 GST_STATIC_PAD_TEMPLATE ("recv_rtp_src_%d_%d_%d",
162     GST_PAD_SRC,
163     GST_PAD_SOMETIMES,
164     GST_STATIC_CAPS ("application/x-rtp")
165     );
166
167 static GstStaticPadTemplate rtpbin_send_rtcp_src_template =
168 GST_STATIC_PAD_TEMPLATE ("send_rtcp_src_%d",
169     GST_PAD_SRC,
170     GST_PAD_REQUEST,
171     GST_STATIC_CAPS ("application/x-rtcp")
172     );
173
174 static GstStaticPadTemplate rtpbin_send_rtp_src_template =
175 GST_STATIC_PAD_TEMPLATE ("send_rtp_src_%d",
176     GST_PAD_SRC,
177     GST_PAD_SOMETIMES,
178     GST_STATIC_CAPS ("application/x-rtp")
179     );
180
181 #define GST_RTP_BIN_GET_PRIVATE(obj)  \
182    (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_RTP_BIN, GstRtpBinPrivate))
183
184 #define GST_RTP_BIN_LOCK(bin)   g_mutex_lock ((bin)->priv->bin_lock)
185 #define GST_RTP_BIN_UNLOCK(bin) g_mutex_unlock ((bin)->priv->bin_lock)
186
187 /* lock to protect dynamic callbacks, like pad-added and new ssrc. */
188 #define GST_RTP_BIN_DYN_LOCK(bin)    g_mutex_lock ((bin)->priv->dyn_lock)
189 #define GST_RTP_BIN_DYN_UNLOCK(bin)  g_mutex_unlock ((bin)->priv->dyn_lock)
190
191 /* lock for shutdown */
192 #define GST_RTP_BIN_SHUTDOWN_LOCK(bin,label)     \
193 G_STMT_START {                                   \
194   if (g_atomic_int_get (&bin->priv->shutdown))   \
195     goto label;                                  \
196   GST_RTP_BIN_DYN_LOCK (bin);                    \
197   if (g_atomic_int_get (&bin->priv->shutdown)) { \
198     GST_RTP_BIN_DYN_UNLOCK (bin);                \
199     goto label;                                  \
200   }                                              \
201 } G_STMT_END
202
203 /* unlock for shutdown */
204 #define GST_RTP_BIN_SHUTDOWN_UNLOCK(bin)         \
205   GST_RTP_BIN_DYN_UNLOCK (bin);                  \
206
207 struct _GstRtpBinPrivate
208 {
209   GMutex *bin_lock;
210
211   /* lock protecting dynamic adding/removing */
212   GMutex *dyn_lock;
213
214   /* if we are shutting down or not */
215   gint shutdown;
216
217   gboolean autoremove;
218
219   /* UNIX (ntp) time of last SR sync used */
220   guint64 last_unix;
221 };
222
223 /* signals and args */
224 enum
225 {
226   SIGNAL_REQUEST_PT_MAP,
227   SIGNAL_PAYLOAD_TYPE_CHANGE,
228   SIGNAL_CLEAR_PT_MAP,
229   SIGNAL_RESET_SYNC,
230   SIGNAL_GET_INTERNAL_SESSION,
231
232   SIGNAL_ON_NEW_SSRC,
233   SIGNAL_ON_SSRC_COLLISION,
234   SIGNAL_ON_SSRC_VALIDATED,
235   SIGNAL_ON_SSRC_ACTIVE,
236   SIGNAL_ON_SSRC_SDES,
237   SIGNAL_ON_BYE_SSRC,
238   SIGNAL_ON_BYE_TIMEOUT,
239   SIGNAL_ON_TIMEOUT,
240   SIGNAL_ON_SENDER_TIMEOUT,
241   SIGNAL_ON_NPT_STOP,
242   LAST_SIGNAL
243 };
244
245 #define DEFAULT_LATENCY_MS           200
246 #define DEFAULT_SDES                 NULL
247 #define DEFAULT_DO_LOST              FALSE
248 #define DEFAULT_IGNORE_PT            FALSE
249 #define DEFAULT_NTP_SYNC             FALSE
250 #define DEFAULT_AUTOREMOVE           FALSE
251 #define DEFAULT_BUFFER_MODE          RTP_JITTER_BUFFER_MODE_SLAVE
252 #define DEFAULT_USE_PIPELINE_CLOCK   FALSE
253 #define DEFAULT_RTCP_SYNC            GST_RTP_BIN_RTCP_SYNC_ALWAYS
254 #define DEFAULT_RTCP_SYNC_INTERVAL   0
255
256 enum
257 {
258   PROP_0,
259   PROP_LATENCY,
260   PROP_SDES,
261   PROP_DO_LOST,
262   PROP_IGNORE_PT,
263   PROP_NTP_SYNC,
264   PROP_RTCP_SYNC,
265   PROP_RTCP_SYNC_INTERVAL,
266   PROP_AUTOREMOVE,
267   PROP_BUFFER_MODE,
268   PROP_USE_PIPELINE_CLOCK,
269   PROP_LAST
270 };
271
272 enum
273 {
274   GST_RTP_BIN_RTCP_SYNC_ALWAYS,
275   GST_RTP_BIN_RTCP_SYNC_INITIAL,
276   GST_RTP_BIN_RTCP_SYNC_RTP
277 };
278
279 #define GST_RTP_BIN_RTCP_SYNC_TYPE (gst_rtp_bin_rtcp_sync_get_type())
280 static GType
281 gst_rtp_bin_rtcp_sync_get_type (void)
282 {
283   static GType rtcp_sync_type = 0;
284   static const GEnumValue rtcp_sync_types[] = {
285     {GST_RTP_BIN_RTCP_SYNC_ALWAYS, "always", "always"},
286     {GST_RTP_BIN_RTCP_SYNC_INITIAL, "initial", "initial"},
287     {GST_RTP_BIN_RTCP_SYNC_RTP, "rtp-info", "rtp-info"},
288     {0, NULL, NULL},
289   };
290
291   if (!rtcp_sync_type) {
292     rtcp_sync_type = g_enum_register_static ("GstRTCPSync", rtcp_sync_types);
293   }
294   return rtcp_sync_type;
295 }
296
297 /* helper objects */
298 typedef struct _GstRtpBinSession GstRtpBinSession;
299 typedef struct _GstRtpBinStream GstRtpBinStream;
300 typedef struct _GstRtpBinClient GstRtpBinClient;
301
302 static guint gst_rtp_bin_signals[LAST_SIGNAL] = { 0 };
303
304 static GstCaps *pt_map_requested (GstElement * element, guint pt,
305     GstRtpBinSession * session);
306 static void payload_type_change (GstElement * element, guint pt,
307     GstRtpBinSession * session);
308 static void free_client (GstRtpBinClient * client, GstRtpBin * bin);
309 static void free_stream (GstRtpBinStream * stream);
310
311 /* Manages the RTP stream for one SSRC.
312  *
313  * We pipe the stream (comming from the SSRC demuxer) into a jitterbuffer.
314  * If we see an SDES RTCP packet that links multiple SSRCs together based on a
315  * common CNAME, we create a GstRtpBinClient structure to group the SSRCs
316  * together (see below).
317  */
318 struct _GstRtpBinStream
319 {
320   /* the SSRC of this stream */
321   guint32 ssrc;
322
323   /* parent bin */
324   GstRtpBin *bin;
325
326   /* the session this SSRC belongs to */
327   GstRtpBinSession *session;
328
329   /* the jitterbuffer of the SSRC */
330   GstElement *buffer;
331   gulong buffer_handlesync_sig;
332   gulong buffer_ptreq_sig;
333   gulong buffer_ntpstop_sig;
334   gint percent;
335
336   /* the PT demuxer of the SSRC */
337   GstElement *demux;
338   gulong demux_newpad_sig;
339   gulong demux_padremoved_sig;
340   gulong demux_ptreq_sig;
341   gulong demux_ptchange_sig;
342
343   /* if we have calculated a valid rt_delta for this stream */
344   gboolean have_sync;
345   /* mapping to local RTP and NTP time */
346   gint64 rt_delta;
347   gint64 rtp_delta;
348   /* base rtptime in gst time */
349   gint64 clock_base;
350 };
351
352 #define GST_RTP_SESSION_LOCK(sess)   g_mutex_lock ((sess)->lock)
353 #define GST_RTP_SESSION_UNLOCK(sess) g_mutex_unlock ((sess)->lock)
354
355 /* Manages the receiving end of the packets.
356  *
357  * There is one such structure for each RTP session (audio/video/...).
358  * We get the RTP/RTCP packets and stuff them into the session manager. From
359  * there they are pushed into an SSRC demuxer that splits the stream based on
360  * SSRC. Each of the SSRC streams go into their own jitterbuffer (managed with
361  * the GstRtpBinStream above).
362  */
363 struct _GstRtpBinSession
364 {
365   /* session id */
366   gint id;
367   /* the parent bin */
368   GstRtpBin *bin;
369   /* the session element */
370   GstElement *session;
371   /* the SSRC demuxer */
372   GstElement *demux;
373   gulong demux_newpad_sig;
374   gulong demux_padremoved_sig;
375
376   GMutex *lock;
377
378   /* list of GstRtpBinStream */
379   GSList *streams;
380
381   /* mapping of payload type to caps */
382   GHashTable *ptmap;
383
384   /* the pads of the session */
385   GstPad *recv_rtp_sink;
386   GstPad *recv_rtp_sink_ghost;
387   GstPad *recv_rtp_src;
388   GstPad *recv_rtcp_sink;
389   GstPad *recv_rtcp_sink_ghost;
390   GstPad *sync_src;
391   GstPad *send_rtp_sink;
392   GstPad *send_rtp_sink_ghost;
393   GstPad *send_rtp_src;
394   GstPad *send_rtp_src_ghost;
395   GstPad *send_rtcp_src;
396   GstPad *send_rtcp_src_ghost;
397 };
398
399 /* Manages the RTP streams that come from one client and should therefore be
400  * synchronized.
401  */
402 struct _GstRtpBinClient
403 {
404   /* the common CNAME for the streams */
405   gchar *cname;
406   guint cname_len;
407
408   /* the streams */
409   guint nstreams;
410   GSList *streams;
411 };
412
413 /* find a session with the given id. Must be called with RTP_BIN_LOCK */
414 static GstRtpBinSession *
415 find_session_by_id (GstRtpBin * rtpbin, gint id)
416 {
417   GSList *walk;
418
419   for (walk = rtpbin->sessions; walk; walk = g_slist_next (walk)) {
420     GstRtpBinSession *sess = (GstRtpBinSession *) walk->data;
421
422     if (sess->id == id)
423       return sess;
424   }
425   return NULL;
426 }
427
428 /* find a session with the given request pad. Must be called with RTP_BIN_LOCK */
429 static GstRtpBinSession *
430 find_session_by_pad (GstRtpBin * rtpbin, GstPad * pad)
431 {
432   GSList *walk;
433
434   for (walk = rtpbin->sessions; walk; walk = g_slist_next (walk)) {
435     GstRtpBinSession *sess = (GstRtpBinSession *) walk->data;
436
437     if ((sess->recv_rtp_sink_ghost == pad) ||
438         (sess->recv_rtcp_sink_ghost == pad) ||
439         (sess->send_rtp_sink_ghost == pad)
440         || (sess->send_rtcp_src_ghost == pad))
441       return sess;
442   }
443   return NULL;
444 }
445
446 static void
447 on_new_ssrc (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
448 {
449   g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_NEW_SSRC], 0,
450       sess->id, ssrc);
451 }
452
453 static void
454 on_ssrc_collision (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
455 {
456   g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_SSRC_COLLISION], 0,
457       sess->id, ssrc);
458 }
459
460 static void
461 on_ssrc_validated (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
462 {
463   g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_SSRC_VALIDATED], 0,
464       sess->id, ssrc);
465 }
466
467 static void
468 on_ssrc_active (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
469 {
470   g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_SSRC_ACTIVE], 0,
471       sess->id, ssrc);
472 }
473
474 static void
475 on_ssrc_sdes (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
476 {
477   g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_SSRC_SDES], 0,
478       sess->id, ssrc);
479 }
480
481 static void
482 on_bye_ssrc (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
483 {
484   g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_BYE_SSRC], 0,
485       sess->id, ssrc);
486 }
487
488 static void
489 on_bye_timeout (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
490 {
491   g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_BYE_TIMEOUT], 0,
492       sess->id, ssrc);
493
494   if (sess->bin->priv->autoremove)
495     g_signal_emit_by_name (sess->demux, "clear-ssrc", ssrc, NULL);
496 }
497
498 static void
499 on_timeout (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
500 {
501   g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_TIMEOUT], 0,
502       sess->id, ssrc);
503
504   if (sess->bin->priv->autoremove)
505     g_signal_emit_by_name (sess->demux, "clear-ssrc", ssrc, NULL);
506 }
507
508 static void
509 on_sender_timeout (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
510 {
511   g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_SENDER_TIMEOUT], 0,
512       sess->id, ssrc);
513 }
514
515 static void
516 on_npt_stop (GstElement * jbuf, GstRtpBinStream * stream)
517 {
518   g_signal_emit (stream->bin, gst_rtp_bin_signals[SIGNAL_ON_NPT_STOP], 0,
519       stream->session->id, stream->ssrc);
520 }
521
522 /* must be called with the SESSION lock */
523 static GstRtpBinStream *
524 find_stream_by_ssrc (GstRtpBinSession * session, guint32 ssrc)
525 {
526   GSList *walk;
527
528   for (walk = session->streams; walk; walk = g_slist_next (walk)) {
529     GstRtpBinStream *stream = (GstRtpBinStream *) walk->data;
530
531     if (stream->ssrc == ssrc)
532       return stream;
533   }
534   return NULL;
535 }
536
537 static void
538 ssrc_demux_pad_removed (GstElement * element, guint ssrc, GstPad * pad,
539     GstRtpBinSession * session)
540 {
541   GstRtpBinStream *stream = NULL;
542
543   GST_RTP_SESSION_LOCK (session);
544   if ((stream = find_stream_by_ssrc (session, ssrc)))
545     session->streams = g_slist_remove (session->streams, stream);
546   GST_RTP_SESSION_UNLOCK (session);
547
548   if (stream)
549     free_stream (stream);
550 }
551
552 /* create a session with the given id.  Must be called with RTP_BIN_LOCK */
553 static GstRtpBinSession *
554 create_session (GstRtpBin * rtpbin, gint id)
555 {
556   GstRtpBinSession *sess;
557   GstElement *session, *demux;
558   GstState target;
559
560   if (!(session = gst_element_factory_make ("gstrtpsession", NULL)))
561     goto no_session;
562
563   if (!(demux = gst_element_factory_make ("gstrtpssrcdemux", NULL)))
564     goto no_demux;
565
566   sess = g_new0 (GstRtpBinSession, 1);
567   sess->lock = g_mutex_new ();
568   sess->id = id;
569   sess->bin = rtpbin;
570   sess->session = session;
571   sess->demux = demux;
572   sess->ptmap = g_hash_table_new_full (NULL, NULL, NULL,
573       (GDestroyNotify) gst_caps_unref);
574   rtpbin->sessions = g_slist_prepend (rtpbin->sessions, sess);
575
576   /* configure SDES items */
577   GST_OBJECT_LOCK (rtpbin);
578   g_object_set (session, "sdes", rtpbin->sdes, "use-pipeline-clock",
579       rtpbin->use_pipeline_clock, NULL);
580   GST_OBJECT_UNLOCK (rtpbin);
581
582   /* provide clock_rate to the session manager when needed */
583   g_signal_connect (session, "request-pt-map",
584       (GCallback) pt_map_requested, sess);
585
586   g_signal_connect (sess->session, "on-new-ssrc",
587       (GCallback) on_new_ssrc, sess);
588   g_signal_connect (sess->session, "on-ssrc-collision",
589       (GCallback) on_ssrc_collision, sess);
590   g_signal_connect (sess->session, "on-ssrc-validated",
591       (GCallback) on_ssrc_validated, sess);
592   g_signal_connect (sess->session, "on-ssrc-active",
593       (GCallback) on_ssrc_active, sess);
594   g_signal_connect (sess->session, "on-ssrc-sdes",
595       (GCallback) on_ssrc_sdes, sess);
596   g_signal_connect (sess->session, "on-bye-ssrc",
597       (GCallback) on_bye_ssrc, sess);
598   g_signal_connect (sess->session, "on-bye-timeout",
599       (GCallback) on_bye_timeout, sess);
600   g_signal_connect (sess->session, "on-timeout", (GCallback) on_timeout, sess);
601   g_signal_connect (sess->session, "on-sender-timeout",
602       (GCallback) on_sender_timeout, sess);
603
604   gst_bin_add (GST_BIN_CAST (rtpbin), session);
605   gst_bin_add (GST_BIN_CAST (rtpbin), demux);
606
607   GST_OBJECT_LOCK (rtpbin);
608   target = GST_STATE_TARGET (rtpbin);
609   GST_OBJECT_UNLOCK (rtpbin);
610
611   /* change state only to what's needed */
612   gst_element_set_state (demux, target);
613   gst_element_set_state (session, target);
614
615   return sess;
616
617   /* ERRORS */
618 no_session:
619   {
620     g_warning ("gstrtpbin: could not create gstrtpsession element");
621     return NULL;
622   }
623 no_demux:
624   {
625     gst_object_unref (session);
626     g_warning ("gstrtpbin: could not create gstrtpssrcdemux element");
627     return NULL;
628   }
629 }
630
631 static void
632 free_session (GstRtpBinSession * sess, GstRtpBin * bin)
633 {
634   GSList *client_walk;
635
636   GST_DEBUG_OBJECT (bin, "freeing session %p", sess);
637
638   gst_element_set_locked_state (sess->demux, TRUE);
639   gst_element_set_locked_state (sess->session, TRUE);
640
641   gst_element_set_state (sess->demux, GST_STATE_NULL);
642   gst_element_set_state (sess->session, GST_STATE_NULL);
643
644   if (sess->recv_rtp_sink != NULL) {
645     gst_element_release_request_pad (sess->session, sess->recv_rtp_sink);
646     gst_object_unref (sess->recv_rtp_sink);
647   }
648   if (sess->recv_rtp_src != NULL)
649     gst_object_unref (sess->recv_rtp_src);
650   if (sess->recv_rtcp_sink != NULL) {
651     gst_element_release_request_pad (sess->session, sess->recv_rtcp_sink);
652     gst_object_unref (sess->recv_rtcp_sink);
653   }
654   if (sess->sync_src != NULL)
655     gst_object_unref (sess->sync_src);
656   if (sess->send_rtp_sink != NULL) {
657     gst_element_release_request_pad (sess->session, sess->send_rtp_sink);
658     gst_object_unref (sess->send_rtp_sink);
659   }
660   if (sess->send_rtp_src != NULL)
661     gst_object_unref (sess->send_rtp_src);
662   if (sess->send_rtcp_src != NULL) {
663     gst_element_release_request_pad (sess->session, sess->send_rtcp_src);
664     gst_object_unref (sess->send_rtcp_src);
665   }
666
667   gst_bin_remove (GST_BIN_CAST (bin), sess->session);
668   gst_bin_remove (GST_BIN_CAST (bin), sess->demux);
669
670   /* remove any references in bin->clients to the streams in sess->streams */
671   client_walk = bin->clients;
672   while (client_walk) {
673     GSList *client_node = client_walk;
674     GstRtpBinClient *client = (GstRtpBinClient *) client_node->data;
675     GSList *stream_walk = client->streams;
676
677     while (stream_walk) {
678       GSList *stream_node = stream_walk;
679       GstRtpBinStream *stream = (GstRtpBinStream *) stream_node->data;
680       GSList *inner_walk;
681
682       stream_walk = g_slist_next (stream_walk);
683
684       for (inner_walk = sess->streams; inner_walk;
685           inner_walk = g_slist_next (inner_walk)) {
686         if ((GstRtpBinStream *) inner_walk->data == stream) {
687           client->streams = g_slist_delete_link (client->streams, stream_node);
688           --client->nstreams;
689           break;
690         }
691       }
692     }
693     client_walk = g_slist_next (client_walk);
694
695     g_assert ((client->streams && client->nstreams > 0) || (!client->streams
696             && client->streams == 0));
697     if (client->nstreams == 0) {
698       free_client (client, bin);
699       bin->clients = g_slist_delete_link (bin->clients, client_node);
700     }
701   }
702
703   g_slist_foreach (sess->streams, (GFunc) free_stream, NULL);
704   g_slist_free (sess->streams);
705
706   g_mutex_free (sess->lock);
707   g_hash_table_destroy (sess->ptmap);
708
709   g_free (sess);
710 }
711
712 /* get the payload type caps for the specific payload @pt in @session */
713 static GstCaps *
714 get_pt_map (GstRtpBinSession * session, guint pt)
715 {
716   GstCaps *caps = NULL;
717   GstRtpBin *bin;
718   GValue ret = { 0 };
719   GValue args[3] = { {0}, {0}, {0} };
720
721   GST_DEBUG ("searching pt %d in cache", pt);
722
723   GST_RTP_SESSION_LOCK (session);
724
725   /* first look in the cache */
726   caps = g_hash_table_lookup (session->ptmap, GINT_TO_POINTER (pt));
727   if (caps) {
728     gst_caps_ref (caps);
729     goto done;
730   }
731
732   bin = session->bin;
733
734   GST_DEBUG ("emiting signal for pt %d in session %d", pt, session->id);
735
736   /* not in cache, send signal to request caps */
737   g_value_init (&args[0], GST_TYPE_ELEMENT);
738   g_value_set_object (&args[0], bin);
739   g_value_init (&args[1], G_TYPE_UINT);
740   g_value_set_uint (&args[1], session->id);
741   g_value_init (&args[2], G_TYPE_UINT);
742   g_value_set_uint (&args[2], pt);
743
744   g_value_init (&ret, GST_TYPE_CAPS);
745   g_value_set_boxed (&ret, NULL);
746
747   GST_RTP_SESSION_UNLOCK (session);
748
749   g_signal_emitv (args, gst_rtp_bin_signals[SIGNAL_REQUEST_PT_MAP], 0, &ret);
750
751   GST_RTP_SESSION_LOCK (session);
752
753   g_value_unset (&args[0]);
754   g_value_unset (&args[1]);
755   g_value_unset (&args[2]);
756
757   /* look in the cache again because we let the lock go */
758   caps = g_hash_table_lookup (session->ptmap, GINT_TO_POINTER (pt));
759   if (caps) {
760     gst_caps_ref (caps);
761     g_value_unset (&ret);
762     goto done;
763   }
764
765   caps = (GstCaps *) g_value_dup_boxed (&ret);
766   g_value_unset (&ret);
767   if (!caps)
768     goto no_caps;
769
770   GST_DEBUG ("caching pt %d as %" GST_PTR_FORMAT, pt, caps);
771
772   /* store in cache, take additional ref */
773   g_hash_table_insert (session->ptmap, GINT_TO_POINTER (pt),
774       gst_caps_ref (caps));
775
776 done:
777   GST_RTP_SESSION_UNLOCK (session);
778
779   return caps;
780
781   /* ERRORS */
782 no_caps:
783   {
784     GST_RTP_SESSION_UNLOCK (session);
785     GST_DEBUG ("no pt map could be obtained");
786     return NULL;
787   }
788 }
789
790 static gboolean
791 return_true (gpointer key, gpointer value, gpointer user_data)
792 {
793   return TRUE;
794 }
795
796 static void
797 gst_rtp_bin_reset_sync (GstRtpBin * rtpbin)
798 {
799   GSList *clients, *streams;
800
801   GST_DEBUG_OBJECT (rtpbin, "Reset sync on all clients");
802
803   GST_RTP_BIN_LOCK (rtpbin);
804   for (clients = rtpbin->clients; clients; clients = g_slist_next (clients)) {
805     GstRtpBinClient *client = (GstRtpBinClient *) clients->data;
806
807     /* reset sync on all streams for this client */
808     for (streams = client->streams; streams; streams = g_slist_next (streams)) {
809       GstRtpBinStream *stream = (GstRtpBinStream *) streams->data;
810
811       /* make use require a new SR packet for this stream before we attempt new
812        * lip-sync */
813       stream->have_sync = FALSE;
814       stream->rt_delta = 0;
815       stream->rtp_delta = 0;
816       stream->clock_base = -100 * GST_SECOND;
817     }
818   }
819   GST_RTP_BIN_UNLOCK (rtpbin);
820 }
821
822 static void
823 gst_rtp_bin_clear_pt_map (GstRtpBin * bin)
824 {
825   GSList *sessions, *streams;
826
827   GST_RTP_BIN_LOCK (bin);
828   GST_DEBUG_OBJECT (bin, "clearing pt map");
829   for (sessions = bin->sessions; sessions; sessions = g_slist_next (sessions)) {
830     GstRtpBinSession *session = (GstRtpBinSession *) sessions->data;
831
832     GST_DEBUG_OBJECT (bin, "clearing session %p", session);
833     g_signal_emit_by_name (session->session, "clear-pt-map", NULL);
834
835     GST_RTP_SESSION_LOCK (session);
836     g_hash_table_foreach_remove (session->ptmap, return_true, NULL);
837
838     for (streams = session->streams; streams; streams = g_slist_next (streams)) {
839       GstRtpBinStream *stream = (GstRtpBinStream *) streams->data;
840
841       GST_DEBUG_OBJECT (bin, "clearing stream %p", stream);
842       g_signal_emit_by_name (stream->buffer, "clear-pt-map", NULL);
843       if (stream->demux)
844         g_signal_emit_by_name (stream->demux, "clear-pt-map", NULL);
845     }
846     GST_RTP_SESSION_UNLOCK (session);
847   }
848   GST_RTP_BIN_UNLOCK (bin);
849
850   /* reset sync too */
851   gst_rtp_bin_reset_sync (bin);
852 }
853
854 static RTPSession *
855 gst_rtp_bin_get_internal_session (GstRtpBin * bin, guint session_id)
856 {
857   RTPSession *internal_session = NULL;
858   GstRtpBinSession *session;
859
860   GST_RTP_BIN_LOCK (bin);
861   GST_DEBUG_OBJECT (bin, "retrieving internal RTPSession object, index: %d",
862       session_id);
863   session = find_session_by_id (bin, (gint) session_id);
864   if (session) {
865     g_object_get (session->session, "internal-session", &internal_session,
866         NULL);
867   }
868   GST_RTP_BIN_UNLOCK (bin);
869
870   return internal_session;
871 }
872
873 static void
874 gst_rtp_bin_propagate_property_to_jitterbuffer (GstRtpBin * bin,
875     const gchar * name, const GValue * value)
876 {
877   GSList *sessions, *streams;
878
879   GST_RTP_BIN_LOCK (bin);
880   for (sessions = bin->sessions; sessions; sessions = g_slist_next (sessions)) {
881     GstRtpBinSession *session = (GstRtpBinSession *) sessions->data;
882
883     GST_RTP_SESSION_LOCK (session);
884     for (streams = session->streams; streams; streams = g_slist_next (streams)) {
885       GstRtpBinStream *stream = (GstRtpBinStream *) streams->data;
886
887       g_object_set_property (G_OBJECT (stream->buffer), name, value);
888     }
889     GST_RTP_SESSION_UNLOCK (session);
890   }
891   GST_RTP_BIN_UNLOCK (bin);
892 }
893
894 /* get a client with the given SDES name. Must be called with RTP_BIN_LOCK */
895 static GstRtpBinClient *
896 get_client (GstRtpBin * bin, guint8 len, guint8 * data, gboolean * created)
897 {
898   GstRtpBinClient *result = NULL;
899   GSList *walk;
900
901   for (walk = bin->clients; walk; walk = g_slist_next (walk)) {
902     GstRtpBinClient *client = (GstRtpBinClient *) walk->data;
903
904     if (len != client->cname_len)
905       continue;
906
907     if (!strncmp ((gchar *) data, client->cname, client->cname_len)) {
908       GST_DEBUG_OBJECT (bin, "found existing client %p with CNAME %s", client,
909           client->cname);
910       result = client;
911       break;
912     }
913   }
914
915   /* nothing found, create one */
916   if (result == NULL) {
917     result = g_new0 (GstRtpBinClient, 1);
918     result->cname = g_strndup ((gchar *) data, len);
919     result->cname_len = len;
920     bin->clients = g_slist_prepend (bin->clients, result);
921     GST_DEBUG_OBJECT (bin, "created new client %p with CNAME %s", result,
922         result->cname);
923   }
924   return result;
925 }
926
927 static void
928 free_client (GstRtpBinClient * client, GstRtpBin * bin)
929 {
930   GST_DEBUG_OBJECT (bin, "freeing client %p", client);
931   g_slist_free (client->streams);
932   g_free (client->cname);
933   g_free (client);
934 }
935
936 static void
937 get_current_times (GstRtpBin * bin, GstClockTime * running_time,
938     guint64 * ntpnstime)
939 {
940   guint64 ntpns;
941   GstClock *clock;
942   GstClockTime base_time, rt, clock_time;
943
944   GST_OBJECT_LOCK (bin);
945   if ((clock = GST_ELEMENT_CLOCK (bin))) {
946     base_time = GST_ELEMENT_CAST (bin)->base_time;
947     gst_object_ref (clock);
948     GST_OBJECT_UNLOCK (bin);
949
950     clock_time = gst_clock_get_time (clock);
951
952     if (bin->use_pipeline_clock) {
953       ntpns = clock_time;
954     } else {
955       GTimeVal current;
956
957       /* get current NTP time */
958       g_get_current_time (&current);
959       ntpns = GST_TIMEVAL_TO_TIME (current);
960     }
961
962     /* add constant to convert from 1970 based time to 1900 based time */
963     ntpns += (2208988800LL * GST_SECOND);
964
965     /* get current clock time and convert to running time */
966     rt = clock_time - base_time;
967
968     gst_object_unref (clock);
969   } else {
970     GST_OBJECT_UNLOCK (bin);
971     rt = -1;
972     ntpns = -1;
973   }
974   if (running_time)
975     *running_time = rt;
976   if (ntpnstime)
977     *ntpnstime = ntpns;
978 }
979
980 static void
981 stream_set_ts_offset (GstRtpBin * bin, GstRtpBinStream * stream,
982     gint64 ts_offset)
983 {
984   gint64 prev_ts_offset;
985
986   g_object_get (stream->buffer, "ts-offset", &prev_ts_offset, NULL);
987
988   /* delta changed, see how much */
989   if (prev_ts_offset != ts_offset) {
990     gint64 diff;
991
992     diff = prev_ts_offset - ts_offset;
993
994     GST_DEBUG_OBJECT (bin,
995         "ts-offset %" G_GINT64_FORMAT ", prev %" G_GINT64_FORMAT
996         ", diff: %" G_GINT64_FORMAT, ts_offset, prev_ts_offset, diff);
997
998     /* only change diff when it changed more than 4 milliseconds. This
999      * compensates for rounding errors in NTP to RTP timestamp
1000      * conversions */
1001     if (ABS (diff) > 4 * GST_MSECOND) {
1002       if (ABS (diff) < (3 * GST_SECOND)) {
1003         g_object_set (stream->buffer, "ts-offset", ts_offset, NULL);
1004       } else {
1005         GST_WARNING_OBJECT (bin, "offset unusually large, ignoring");
1006       }
1007     } else {
1008       GST_DEBUG_OBJECT (bin, "offset too small, ignoring");
1009     }
1010   }
1011   GST_DEBUG_OBJECT (bin, "stream SSRC %08x, delta %" G_GINT64_FORMAT,
1012       stream->ssrc, ts_offset);
1013 }
1014
1015 /* associate a stream to the given CNAME. This will make sure all streams for
1016  * that CNAME are synchronized together.
1017  * Must be called with GST_RTP_BIN_LOCK */
1018 static void
1019 gst_rtp_bin_associate (GstRtpBin * bin, GstRtpBinStream * stream, guint8 len,
1020     guint8 * data, guint64 ntptime, guint64 last_extrtptime,
1021     guint64 base_rtptime, guint64 base_time, guint clock_rate,
1022     gint64 rtp_clock_base)
1023 {
1024   GstRtpBinClient *client;
1025   gboolean created;
1026   GSList *walk;
1027   guint64 local_rt;
1028   guint64 local_rtp;
1029   GstClockTime running_time;
1030   guint64 ntpnstime;
1031   gint64 ntpdiff, rtdiff;
1032   guint64 last_unix;
1033
1034   /* first find or create the CNAME */
1035   client = get_client (bin, len, data, &created);
1036
1037   /* find stream in the client */
1038   for (walk = client->streams; walk; walk = g_slist_next (walk)) {
1039     GstRtpBinStream *ostream = (GstRtpBinStream *) walk->data;
1040
1041     if (ostream == stream)
1042       break;
1043   }
1044   /* not found, add it to the list */
1045   if (walk == NULL) {
1046     GST_DEBUG_OBJECT (bin,
1047         "new association of SSRC %08x with client %p with CNAME %s",
1048         stream->ssrc, client, client->cname);
1049     client->streams = g_slist_prepend (client->streams, stream);
1050     client->nstreams++;
1051   } else {
1052     GST_DEBUG_OBJECT (bin,
1053         "found association of SSRC %08x with client %p with CNAME %s",
1054         stream->ssrc, client, client->cname);
1055   }
1056
1057   if (!GST_CLOCK_TIME_IS_VALID (last_extrtptime)) {
1058     GST_DEBUG_OBJECT (bin, "invalidated sync data");
1059     if (bin->rtcp_sync == GST_RTP_BIN_RTCP_SYNC_RTP) {
1060       /* we don't need that data, so carry on,
1061        * but make some values look saner */
1062       last_extrtptime = base_rtptime;
1063     } else {
1064       /* nothing we can do with this data in this case */
1065       GST_DEBUG_OBJECT (bin, "bailing out");
1066       return;
1067     }
1068   }
1069
1070   /* Take the extended rtptime we found in the SR packet and map it to the
1071    * local rtptime. The local rtp time is used to construct timestamps on the
1072    * buffers so we will calculate what running_time corresponds to the RTP
1073    * timestamp in the SR packet. */
1074   local_rtp = last_extrtptime - base_rtptime;
1075
1076   GST_DEBUG_OBJECT (bin,
1077       "base %" G_GUINT64_FORMAT ", extrtptime %" G_GUINT64_FORMAT
1078       ", local RTP %" G_GUINT64_FORMAT ", clock-rate %d, "
1079       "clock-base %" G_GINT64_FORMAT, base_rtptime,
1080       last_extrtptime, local_rtp, clock_rate, rtp_clock_base);
1081
1082   /* calculate local RTP time in gstreamer timestamp, we essentially perform the
1083    * same conversion that a jitterbuffer would use to convert an rtp timestamp
1084    * into a corresponding gstreamer timestamp. Note that the base_time also
1085    * contains the drift between sender and receiver. */
1086   local_rt = gst_util_uint64_scale_int (local_rtp, GST_SECOND, clock_rate);
1087   local_rt += base_time;
1088
1089   /* convert ntptime to unix time since 1900 */
1090   last_unix = gst_util_uint64_scale (ntptime, GST_SECOND,
1091       (G_GINT64_CONSTANT (1) << 32));
1092
1093   stream->have_sync = TRUE;
1094
1095   GST_DEBUG_OBJECT (bin,
1096       "local UNIX %" G_GUINT64_FORMAT ", remote UNIX %" G_GUINT64_FORMAT,
1097       local_rt, last_unix);
1098
1099   /* recalc inter stream playout offset, but only if there is more than one
1100    * stream or we're doing NTP sync. */
1101   if (bin->ntp_sync) {
1102     /* For NTP sync we need to first get a snapshot of running_time and NTP
1103      * time. We know at what running_time we play a certain RTP time, we also
1104      * calculated when we would play the RTP time in the SR packet. Now we need
1105      * to know how the running_time and the NTP time relate to eachother. */
1106     get_current_times (bin, &running_time, &ntpnstime);
1107
1108     /* see how far away the NTP time is. This is the difference between the
1109      * current NTP time and the NTP time in the last SR packet. */
1110     ntpdiff = ntpnstime - last_unix;
1111     /* see how far away the running_time is. This is the difference between the
1112      * current running_time and the running_time of the RTP timestamp in the
1113      * last SR packet. */
1114     rtdiff = running_time - local_rt;
1115
1116     GST_DEBUG_OBJECT (bin,
1117         "NTP time %" G_GUINT64_FORMAT ", last unix %" G_GUINT64_FORMAT,
1118         ntpnstime, last_unix);
1119     GST_DEBUG_OBJECT (bin,
1120         "NTP diff %" G_GINT64_FORMAT ", RT diff %" G_GINT64_FORMAT, ntpdiff,
1121         rtdiff);
1122
1123     /* combine to get the final diff to apply to the running_time */
1124     stream->rt_delta = rtdiff - ntpdiff;
1125
1126     stream_set_ts_offset (bin, stream, stream->rt_delta);
1127   } else {
1128     gint64 min, rtp_min, clock_base = stream->clock_base;
1129     gboolean all_sync, use_rtp;
1130     gboolean rtcp_sync = g_atomic_int_get (&bin->rtcp_sync);
1131
1132     /* calculate delta between server and receiver. last_unix is created by
1133      * converting the ntptime in the last SR packet to a gstreamer timestamp. This
1134      * delta expresses the difference to our timeline and the server timeline. The
1135      * difference in itself doesn't mean much but we can combine the delta of
1136      * multiple streams to create a stream specific offset. */
1137     stream->rt_delta = last_unix - local_rt;
1138
1139     /* calculate the min of all deltas, ignoring streams that did not yet have a
1140      * valid rt_delta because we did not yet receive an SR packet for those
1141      * streams.
1142      * We calculate the mininum because we would like to only apply positive
1143      * offsets to streams, delaying their playback instead of trying to speed up
1144      * other streams (which might be imposible when we have to create negative
1145      * latencies).
1146      * The stream that has the smallest diff is selected as the reference stream,
1147      * all other streams will have a positive offset to this difference. */
1148
1149     /* some alternative setting allow ignoring RTCP as much as possible,
1150      * for servers generating bogus ntp timeline */
1151     min = rtp_min = G_MAXINT64;
1152     use_rtp = FALSE;
1153     if (rtcp_sync == GST_RTP_BIN_RTCP_SYNC_RTP) {
1154       guint64 ext_base;
1155
1156       use_rtp = TRUE;
1157       /* signed version for convienience */
1158       clock_base = base_rtptime;
1159       /* deal with possible wrap-around */
1160       ext_base = base_rtptime;
1161       rtp_clock_base = gst_rtp_buffer_ext_timestamp (&ext_base, rtp_clock_base);
1162       /* sanity check; base rtp and provided clock_base should be close */
1163       if (rtp_clock_base >= clock_base) {
1164         if (rtp_clock_base - clock_base < 10 * clock_rate) {
1165           rtp_clock_base = base_time +
1166               gst_util_uint64_scale_int (rtp_clock_base - clock_base,
1167               GST_SECOND, clock_rate);
1168         } else {
1169           use_rtp = FALSE;
1170         }
1171       } else {
1172         if (clock_base - rtp_clock_base < 10 * clock_rate) {
1173           rtp_clock_base = base_time -
1174               gst_util_uint64_scale_int (clock_base - rtp_clock_base,
1175               GST_SECOND, clock_rate);
1176         } else {
1177           use_rtp = FALSE;
1178         }
1179       }
1180       /* warn and bail for clarity out if no sane values */
1181       if (!use_rtp) {
1182         GST_WARNING_OBJECT (bin, "unable to sync to provided rtptime");
1183         return;
1184       }
1185       /* store to track changes */
1186       clock_base = rtp_clock_base;
1187       /* generate a fake as before,
1188        * now equating rtptime obtained from RTP-Info,
1189        * where the large time represent the otherwise irrelevant npt/ntp time */
1190       stream->rtp_delta = (GST_SECOND << 28) - rtp_clock_base;
1191     } else {
1192       clock_base = rtp_clock_base;
1193     }
1194
1195     all_sync = TRUE;
1196     for (walk = client->streams; walk; walk = g_slist_next (walk)) {
1197       GstRtpBinStream *ostream = (GstRtpBinStream *) walk->data;
1198
1199       if (!ostream->have_sync) {
1200         all_sync = FALSE;
1201         continue;
1202       }
1203
1204       /* change in current stream's base from previously init'ed value
1205        * leads to reset of all stream's base */
1206       if (stream != ostream && stream->clock_base >= 0 &&
1207           (stream->clock_base != clock_base)) {
1208         GST_DEBUG_OBJECT (bin, "reset upon clock base change");
1209         ostream->clock_base = -100 * GST_SECOND;
1210         ostream->rtp_delta = 0;
1211       }
1212
1213       if (ostream->rt_delta < min)
1214         min = ostream->rt_delta;
1215       if (ostream->rtp_delta < rtp_min)
1216         rtp_min = ostream->rtp_delta;
1217     }
1218
1219     /* arrange to re-sync for each stream upon significant change,
1220      * e.g. post-seek */
1221     all_sync = all_sync && (stream->clock_base == clock_base);
1222     stream->clock_base = clock_base;
1223
1224     /* may need init performed above later on, but nothing more to do now */
1225     if (client->nstreams <= 1)
1226       return;
1227
1228     GST_DEBUG_OBJECT (bin, "client %p min delta %" G_GINT64_FORMAT
1229         " all sync %d", client, min, all_sync);
1230     GST_DEBUG_OBJECT (bin, "rtcp sync mode %d, use_rtp %d", rtcp_sync, use_rtp);
1231
1232     switch (rtcp_sync) {
1233       case GST_RTP_BIN_RTCP_SYNC_RTP:
1234         if (!use_rtp)
1235           break;
1236         GST_DEBUG_OBJECT (bin, "using rtp generated reports; "
1237             "client %p min rtp delta %" G_GINT64_FORMAT, client, rtp_min);
1238         /* fall-through */
1239       case GST_RTP_BIN_RTCP_SYNC_INITIAL:
1240         /* if all have been synced already, do not bother further */
1241         if (all_sync) {
1242           GST_DEBUG_OBJECT (bin, "all streams already synced; done");
1243           return;
1244         }
1245         break;
1246       default:
1247         break;
1248     }
1249
1250     /* bail out if we adjusted recently enough */
1251     if (all_sync && (last_unix - bin->priv->last_unix) <
1252         bin->rtcp_sync_interval * GST_MSECOND) {
1253       GST_DEBUG_OBJECT (bin, "discarding RTCP sender packet for sync; "
1254           "previous sender info too recent "
1255           "(previous UNIX %" G_GUINT64_FORMAT ")", bin->priv->last_unix);
1256       return;
1257     }
1258     bin->priv->last_unix = last_unix;
1259
1260     /* calculate offsets for each stream */
1261     for (walk = client->streams; walk; walk = g_slist_next (walk)) {
1262       GstRtpBinStream *ostream = (GstRtpBinStream *) walk->data;
1263       gint64 ts_offset;
1264
1265       /* ignore streams for which we didn't receive an SR packet yet, we
1266        * can't synchronize them yet. We can however sync other streams just
1267        * fine. */
1268       if (!ostream->have_sync)
1269         continue;
1270
1271       /* calculate offset to our reference stream, this should always give a
1272        * positive number. */
1273       if (use_rtp)
1274         ts_offset = ostream->rtp_delta - rtp_min;
1275       else
1276         ts_offset = ostream->rt_delta - min;
1277
1278       stream_set_ts_offset (bin, ostream, ts_offset);
1279     }
1280   }
1281   return;
1282 }
1283
1284 #define GST_RTCP_BUFFER_FOR_PACKETS(b,buffer,packet) \
1285   for ((b) = gst_rtcp_buffer_get_first_packet ((buffer), (packet)); (b); \
1286           (b) = gst_rtcp_packet_move_to_next ((packet)))
1287
1288 #define GST_RTCP_SDES_FOR_ITEMS(b,packet) \
1289   for ((b) = gst_rtcp_packet_sdes_first_item ((packet)); (b); \
1290           (b) = gst_rtcp_packet_sdes_next_item ((packet)))
1291
1292 #define GST_RTCP_SDES_FOR_ENTRIES(b,packet) \
1293   for ((b) = gst_rtcp_packet_sdes_first_entry ((packet)); (b); \
1294           (b) = gst_rtcp_packet_sdes_next_entry ((packet)))
1295
1296 static void
1297 gst_rtp_bin_handle_sync (GstElement * jitterbuffer, GstStructure * s,
1298     GstRtpBinStream * stream)
1299 {
1300   GstRtpBin *bin;
1301   GstRTCPPacket packet;
1302   guint32 ssrc;
1303   guint64 ntptime;
1304   gboolean have_sr, have_sdes;
1305   gboolean more;
1306   guint64 base_rtptime;
1307   guint64 base_time;
1308   guint clock_rate;
1309   guint64 clock_base;
1310   guint64 extrtptime;
1311   GstBuffer *buffer;
1312
1313   bin = stream->bin;
1314
1315   GST_DEBUG_OBJECT (bin, "sync handler called");
1316
1317   /* get the last relation between the rtp timestamps and the gstreamer
1318    * timestamps. We get this info directly from the jitterbuffer which
1319    * constructs gstreamer timestamps from rtp timestamps and so it know exactly
1320    * what the current situation is. */
1321   base_rtptime =
1322       g_value_get_uint64 (gst_structure_get_value (s, "base-rtptime"));
1323   base_time = g_value_get_uint64 (gst_structure_get_value (s, "base-time"));
1324   clock_rate = g_value_get_uint (gst_structure_get_value (s, "clock-rate"));
1325   clock_base = g_value_get_uint64 (gst_structure_get_value (s, "clock-base"));
1326   extrtptime =
1327       g_value_get_uint64 (gst_structure_get_value (s, "sr-ext-rtptime"));
1328   buffer = gst_value_get_buffer (gst_structure_get_value (s, "sr-buffer"));
1329
1330   have_sr = FALSE;
1331   have_sdes = FALSE;
1332   GST_RTCP_BUFFER_FOR_PACKETS (more, buffer, &packet) {
1333     /* first packet must be SR or RR or else the validate would have failed */
1334     switch (gst_rtcp_packet_get_type (&packet)) {
1335       case GST_RTCP_TYPE_SR:
1336         /* only parse first. There is only supposed to be one SR in the packet
1337          * but we will deal with malformed packets gracefully */
1338         if (have_sr)
1339           break;
1340         /* get NTP and RTP times */
1341         gst_rtcp_packet_sr_get_sender_info (&packet, &ssrc, &ntptime, NULL,
1342             NULL, NULL);
1343
1344         GST_DEBUG_OBJECT (bin, "received sync packet from SSRC %08x", ssrc);
1345         /* ignore SR that is not ours */
1346         if (ssrc != stream->ssrc)
1347           continue;
1348
1349         have_sr = TRUE;
1350         break;
1351       case GST_RTCP_TYPE_SDES:
1352       {
1353         gboolean more_items, more_entries;
1354
1355         /* only deal with first SDES, there is only supposed to be one SDES in
1356          * the RTCP packet but we deal with bad packets gracefully. Also bail
1357          * out if we have not seen an SR item yet. */
1358         if (have_sdes || !have_sr)
1359           break;
1360
1361         GST_RTCP_SDES_FOR_ITEMS (more_items, &packet) {
1362           /* skip items that are not about the SSRC of the sender */
1363           if (gst_rtcp_packet_sdes_get_ssrc (&packet) != ssrc)
1364             continue;
1365
1366           /* find the CNAME entry */
1367           GST_RTCP_SDES_FOR_ENTRIES (more_entries, &packet) {
1368             GstRTCPSDESType type;
1369             guint8 len;
1370             guint8 *data;
1371
1372             gst_rtcp_packet_sdes_get_entry (&packet, &type, &len, &data);
1373
1374             if (type == GST_RTCP_SDES_CNAME) {
1375               GST_RTP_BIN_LOCK (bin);
1376               /* associate the stream to CNAME */
1377               gst_rtp_bin_associate (bin, stream, len, data,
1378                   ntptime, extrtptime, base_rtptime, base_time, clock_rate,
1379                   clock_base);
1380               GST_RTP_BIN_UNLOCK (bin);
1381             }
1382           }
1383         }
1384         have_sdes = TRUE;
1385         break;
1386       }
1387       default:
1388         /* we can ignore these packets */
1389         break;
1390     }
1391   }
1392 }
1393
1394 /* create a new stream with @ssrc in @session. Must be called with
1395  * RTP_SESSION_LOCK. */
1396 static GstRtpBinStream *
1397 create_stream (GstRtpBinSession * session, guint32 ssrc)
1398 {
1399   GstElement *buffer, *demux = NULL;
1400   GstRtpBinStream *stream;
1401   GstRtpBin *rtpbin;
1402   GstState target;
1403
1404   rtpbin = session->bin;
1405
1406   if (!(buffer = gst_element_factory_make ("gstrtpjitterbuffer", NULL)))
1407     goto no_jitterbuffer;
1408
1409   if (!rtpbin->ignore_pt)
1410     if (!(demux = gst_element_factory_make ("gstrtpptdemux", NULL)))
1411       goto no_demux;
1412
1413
1414   stream = g_new0 (GstRtpBinStream, 1);
1415   stream->ssrc = ssrc;
1416   stream->bin = rtpbin;
1417   stream->session = session;
1418   stream->buffer = buffer;
1419   stream->demux = demux;
1420
1421   stream->have_sync = FALSE;
1422   stream->rt_delta = 0;
1423   stream->rtp_delta = 0;
1424   stream->percent = 100;
1425   stream->clock_base = -100 * GST_SECOND;
1426   session->streams = g_slist_prepend (session->streams, stream);
1427
1428   /* provide clock_rate to the jitterbuffer when needed */
1429   stream->buffer_ptreq_sig = g_signal_connect (buffer, "request-pt-map",
1430       (GCallback) pt_map_requested, session);
1431   stream->buffer_ntpstop_sig = g_signal_connect (buffer, "on-npt-stop",
1432       (GCallback) on_npt_stop, stream);
1433
1434   g_object_set_data (G_OBJECT (buffer), "GstRTPBin.session", session);
1435   g_object_set_data (G_OBJECT (buffer), "GstRTPBin.stream", stream);
1436
1437   /* configure latency and packet lost */
1438   g_object_set (buffer, "latency", rtpbin->latency_ms, NULL);
1439   g_object_set (buffer, "do-lost", rtpbin->do_lost, NULL);
1440   g_object_set (buffer, "mode", rtpbin->buffer_mode, NULL);
1441
1442   if (!rtpbin->ignore_pt)
1443     gst_bin_add (GST_BIN_CAST (rtpbin), demux);
1444   gst_bin_add (GST_BIN_CAST (rtpbin), buffer);
1445
1446   /* link stuff */
1447   if (demux)
1448     gst_element_link (buffer, demux);
1449
1450   if (rtpbin->buffering) {
1451     guint64 last_out;
1452
1453     GST_INFO_OBJECT (rtpbin,
1454         "bin is buffering, set jitterbuffer as not active");
1455     g_signal_emit_by_name (buffer, "set-active", FALSE, (gint64) 0, &last_out);
1456   }
1457
1458
1459   GST_OBJECT_LOCK (rtpbin);
1460   target = GST_STATE_TARGET (rtpbin);
1461   GST_OBJECT_UNLOCK (rtpbin);
1462
1463   /* from sink to source */
1464   if (demux)
1465     gst_element_set_state (demux, target);
1466
1467   gst_element_set_state (buffer, target);
1468
1469   return stream;
1470
1471   /* ERRORS */
1472 no_jitterbuffer:
1473   {
1474     g_warning ("gstrtpbin: could not create gstrtpjitterbuffer element");
1475     return NULL;
1476   }
1477 no_demux:
1478   {
1479     gst_object_unref (buffer);
1480     g_warning ("gstrtpbin: could not create gstrtpptdemux element");
1481     return NULL;
1482   }
1483 }
1484
1485 static void
1486 free_stream (GstRtpBinStream * stream)
1487 {
1488   GstRtpBinSession *session;
1489
1490   session = stream->session;
1491
1492   if (stream->demux) {
1493     g_signal_handler_disconnect (stream->demux, stream->demux_newpad_sig);
1494     g_signal_handler_disconnect (stream->demux, stream->demux_ptreq_sig);
1495     g_signal_handler_disconnect (stream->demux, stream->demux_ptchange_sig);
1496   }
1497   g_signal_handler_disconnect (stream->buffer, stream->buffer_handlesync_sig);
1498   g_signal_handler_disconnect (stream->buffer, stream->buffer_ptreq_sig);
1499   g_signal_handler_disconnect (stream->buffer, stream->buffer_ntpstop_sig);
1500
1501   if (stream->demux)
1502     gst_element_set_locked_state (stream->demux, TRUE);
1503   gst_element_set_locked_state (stream->buffer, TRUE);
1504
1505   if (stream->demux)
1506     gst_element_set_state (stream->demux, GST_STATE_NULL);
1507   gst_element_set_state (stream->buffer, GST_STATE_NULL);
1508
1509   /* now remove this signal, we need this while going to NULL because it to
1510    * do some cleanups */
1511   if (stream->demux)
1512     g_signal_handler_disconnect (stream->demux, stream->demux_padremoved_sig);
1513
1514   gst_bin_remove (GST_BIN_CAST (session->bin), stream->buffer);
1515   if (stream->demux)
1516     gst_bin_remove (GST_BIN_CAST (session->bin), stream->demux);
1517
1518   g_free (stream);
1519 }
1520
1521 /* GObject vmethods */
1522 static void gst_rtp_bin_dispose (GObject * object);
1523 static void gst_rtp_bin_finalize (GObject * object);
1524 static void gst_rtp_bin_set_property (GObject * object, guint prop_id,
1525     const GValue * value, GParamSpec * pspec);
1526 static void gst_rtp_bin_get_property (GObject * object, guint prop_id,
1527     GValue * value, GParamSpec * pspec);
1528
1529 /* GstElement vmethods */
1530 static GstStateChangeReturn gst_rtp_bin_change_state (GstElement * element,
1531     GstStateChange transition);
1532 static GstPad *gst_rtp_bin_request_new_pad (GstElement * element,
1533     GstPadTemplate * templ, const gchar * name);
1534 static void gst_rtp_bin_release_pad (GstElement * element, GstPad * pad);
1535 static void gst_rtp_bin_handle_message (GstBin * bin, GstMessage * message);
1536
1537 GST_BOILERPLATE (GstRtpBin, gst_rtp_bin, GstBin, GST_TYPE_BIN);
1538
1539 static void
1540 gst_rtp_bin_base_init (gpointer klass)
1541 {
1542   GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
1543
1544   /* sink pads */
1545   gst_element_class_add_static_pad_template (element_class,
1546       &rtpbin_recv_rtp_sink_template);
1547   gst_element_class_add_static_pad_template (element_class,
1548       &rtpbin_recv_rtcp_sink_template);
1549   gst_element_class_add_static_pad_template (element_class,
1550       &rtpbin_send_rtp_sink_template);
1551
1552   /* src pads */
1553   gst_element_class_add_static_pad_template (element_class,
1554       &rtpbin_recv_rtp_src_template);
1555   gst_element_class_add_static_pad_template (element_class,
1556       &rtpbin_send_rtcp_src_template);
1557   gst_element_class_add_static_pad_template (element_class,
1558       &rtpbin_send_rtp_src_template);
1559
1560   gst_element_class_set_details_simple (element_class, "RTP Bin",
1561       "Filter/Network/RTP",
1562       "Real-Time Transport Protocol bin",
1563       "Wim Taymans <wim.taymans@gmail.com>");
1564 }
1565
1566 static void
1567 gst_rtp_bin_class_init (GstRtpBinClass * klass)
1568 {
1569   GObjectClass *gobject_class;
1570   GstElementClass *gstelement_class;
1571   GstBinClass *gstbin_class;
1572
1573   gobject_class = (GObjectClass *) klass;
1574   gstelement_class = (GstElementClass *) klass;
1575   gstbin_class = (GstBinClass *) klass;
1576
1577   g_type_class_add_private (klass, sizeof (GstRtpBinPrivate));
1578
1579   gobject_class->dispose = gst_rtp_bin_dispose;
1580   gobject_class->finalize = gst_rtp_bin_finalize;
1581   gobject_class->set_property = gst_rtp_bin_set_property;
1582   gobject_class->get_property = gst_rtp_bin_get_property;
1583
1584   g_object_class_install_property (gobject_class, PROP_LATENCY,
1585       g_param_spec_uint ("latency", "Buffer latency in ms",
1586           "Default amount of ms to buffer in the jitterbuffers", 0,
1587           G_MAXUINT, DEFAULT_LATENCY_MS,
1588           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1589
1590   /**
1591    * GstRtpBin::request-pt-map:
1592    * @rtpbin: the object which received the signal
1593    * @session: the session
1594    * @pt: the pt
1595    *
1596    * Request the payload type as #GstCaps for @pt in @session.
1597    */
1598   gst_rtp_bin_signals[SIGNAL_REQUEST_PT_MAP] =
1599       g_signal_new ("request-pt-map", G_TYPE_FROM_CLASS (klass),
1600       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, request_pt_map),
1601       NULL, NULL, gst_rtp_bin_marshal_BOXED__UINT_UINT, GST_TYPE_CAPS, 2,
1602       G_TYPE_UINT, G_TYPE_UINT);
1603
1604     /**
1605    * GstRtpBin::payload-type-change:
1606    * @rtpbin: the object which received the signal
1607    * @session: the session
1608    * @pt: the pt
1609    *
1610    * Signal that the current payload type changed to @pt in @session.
1611    *
1612    * Since: 0.10.17
1613    */
1614   gst_rtp_bin_signals[SIGNAL_PAYLOAD_TYPE_CHANGE] =
1615       g_signal_new ("payload-type-change", G_TYPE_FROM_CLASS (klass),
1616       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, payload_type_change),
1617       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1618       G_TYPE_UINT, G_TYPE_UINT);
1619
1620   /**
1621    * GstRtpBin::clear-pt-map:
1622    * @rtpbin: the object which received the signal
1623    *
1624    * Clear all previously cached pt-mapping obtained with
1625    * #GstRtpBin::request-pt-map.
1626    */
1627   gst_rtp_bin_signals[SIGNAL_CLEAR_PT_MAP] =
1628       g_signal_new ("clear-pt-map", G_TYPE_FROM_CLASS (klass),
1629       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (GstRtpBinClass,
1630           clear_pt_map), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE,
1631       0, G_TYPE_NONE);
1632
1633   /**
1634    * GstRtpBin::reset-sync:
1635    * @rtpbin: the object which received the signal
1636    *
1637    * Reset all currently configured lip-sync parameters and require new SR
1638    * packets for all streams before lip-sync is attempted again.
1639    */
1640   gst_rtp_bin_signals[SIGNAL_RESET_SYNC] =
1641       g_signal_new ("reset-sync", G_TYPE_FROM_CLASS (klass),
1642       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (GstRtpBinClass,
1643           reset_sync), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE,
1644       0, G_TYPE_NONE);
1645
1646   /**
1647    * GstRtpBin::get-internal-session:
1648    * @rtpbin: the object which received the signal
1649    * @id: the session id
1650    *
1651    * Request the internal RTPSession object as #GObject in session @id.
1652    */
1653   gst_rtp_bin_signals[SIGNAL_GET_INTERNAL_SESSION] =
1654       g_signal_new ("get-internal-session", G_TYPE_FROM_CLASS (klass),
1655       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (GstRtpBinClass,
1656           get_internal_session), NULL, NULL, gst_rtp_bin_marshal_OBJECT__UINT,
1657       RTP_TYPE_SESSION, 1, G_TYPE_UINT);
1658
1659   /**
1660    * GstRtpBin::on-new-ssrc:
1661    * @rtpbin: the object which received the signal
1662    * @session: the session
1663    * @ssrc: the SSRC
1664    *
1665    * Notify of a new SSRC that entered @session.
1666    */
1667   gst_rtp_bin_signals[SIGNAL_ON_NEW_SSRC] =
1668       g_signal_new ("on-new-ssrc", G_TYPE_FROM_CLASS (klass),
1669       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_new_ssrc),
1670       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1671       G_TYPE_UINT, G_TYPE_UINT);
1672   /**
1673    * GstRtpBin::on-ssrc-collision:
1674    * @rtpbin: the object which received the signal
1675    * @session: the session
1676    * @ssrc: the SSRC
1677    *
1678    * Notify when we have an SSRC collision
1679    */
1680   gst_rtp_bin_signals[SIGNAL_ON_SSRC_COLLISION] =
1681       g_signal_new ("on-ssrc-collision", G_TYPE_FROM_CLASS (klass),
1682       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_ssrc_collision),
1683       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1684       G_TYPE_UINT, G_TYPE_UINT);
1685   /**
1686    * GstRtpBin::on-ssrc-validated:
1687    * @rtpbin: the object which received the signal
1688    * @session: the session
1689    * @ssrc: the SSRC
1690    *
1691    * Notify of a new SSRC that became validated.
1692    */
1693   gst_rtp_bin_signals[SIGNAL_ON_SSRC_VALIDATED] =
1694       g_signal_new ("on-ssrc-validated", G_TYPE_FROM_CLASS (klass),
1695       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_ssrc_validated),
1696       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1697       G_TYPE_UINT, G_TYPE_UINT);
1698   /**
1699    * GstRtpBin::on-ssrc-active:
1700    * @rtpbin: the object which received the signal
1701    * @session: the session
1702    * @ssrc: the SSRC
1703    *
1704    * Notify of a SSRC that is active, i.e., sending RTCP.
1705    */
1706   gst_rtp_bin_signals[SIGNAL_ON_SSRC_ACTIVE] =
1707       g_signal_new ("on-ssrc-active", G_TYPE_FROM_CLASS (klass),
1708       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_ssrc_active),
1709       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1710       G_TYPE_UINT, G_TYPE_UINT);
1711   /**
1712    * GstRtpBin::on-ssrc-sdes:
1713    * @rtpbin: the object which received the signal
1714    * @session: the session
1715    * @ssrc: the SSRC
1716    *
1717    * Notify of a SSRC that is active, i.e., sending RTCP.
1718    */
1719   gst_rtp_bin_signals[SIGNAL_ON_SSRC_SDES] =
1720       g_signal_new ("on-ssrc-sdes", G_TYPE_FROM_CLASS (klass),
1721       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_ssrc_sdes),
1722       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1723       G_TYPE_UINT, G_TYPE_UINT);
1724
1725   /**
1726    * GstRtpBin::on-bye-ssrc:
1727    * @rtpbin: the object which received the signal
1728    * @session: the session
1729    * @ssrc: the SSRC
1730    *
1731    * Notify of an SSRC that became inactive because of a BYE packet.
1732    */
1733   gst_rtp_bin_signals[SIGNAL_ON_BYE_SSRC] =
1734       g_signal_new ("on-bye-ssrc", G_TYPE_FROM_CLASS (klass),
1735       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_bye_ssrc),
1736       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1737       G_TYPE_UINT, G_TYPE_UINT);
1738   /**
1739    * GstRtpBin::on-bye-timeout:
1740    * @rtpbin: the object which received the signal
1741    * @session: the session
1742    * @ssrc: the SSRC
1743    *
1744    * Notify of an SSRC that has timed out because of BYE
1745    */
1746   gst_rtp_bin_signals[SIGNAL_ON_BYE_TIMEOUT] =
1747       g_signal_new ("on-bye-timeout", G_TYPE_FROM_CLASS (klass),
1748       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_bye_timeout),
1749       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1750       G_TYPE_UINT, G_TYPE_UINT);
1751   /**
1752    * GstRtpBin::on-timeout:
1753    * @rtpbin: the object which received the signal
1754    * @session: the session
1755    * @ssrc: the SSRC
1756    *
1757    * Notify of an SSRC that has timed out
1758    */
1759   gst_rtp_bin_signals[SIGNAL_ON_TIMEOUT] =
1760       g_signal_new ("on-timeout", G_TYPE_FROM_CLASS (klass),
1761       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_timeout),
1762       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1763       G_TYPE_UINT, G_TYPE_UINT);
1764   /**
1765    * GstRtpBin::on-sender-timeout:
1766    * @rtpbin: the object which received the signal
1767    * @session: the session
1768    * @ssrc: the SSRC
1769    *
1770    * Notify of a sender SSRC that has timed out and became a receiver
1771    */
1772   gst_rtp_bin_signals[SIGNAL_ON_SENDER_TIMEOUT] =
1773       g_signal_new ("on-sender-timeout", G_TYPE_FROM_CLASS (klass),
1774       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_sender_timeout),
1775       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1776       G_TYPE_UINT, G_TYPE_UINT);
1777
1778   /**
1779    * GstRtpBin::on-npt-stop:
1780    * @rtpbin: the object which received the signal
1781    * @session: the session
1782    * @ssrc: the SSRC
1783    *
1784    * Notify that SSRC sender has sent data up to the configured NPT stop time.
1785    */
1786   gst_rtp_bin_signals[SIGNAL_ON_NPT_STOP] =
1787       g_signal_new ("on-npt-stop", G_TYPE_FROM_CLASS (klass),
1788       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_npt_stop),
1789       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1790       G_TYPE_UINT, G_TYPE_UINT);
1791
1792   g_object_class_install_property (gobject_class, PROP_SDES,
1793       g_param_spec_boxed ("sdes", "SDES",
1794           "The SDES items of this session",
1795           GST_TYPE_STRUCTURE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1796
1797   g_object_class_install_property (gobject_class, PROP_DO_LOST,
1798       g_param_spec_boolean ("do-lost", "Do Lost",
1799           "Send an event downstream when a packet is lost", DEFAULT_DO_LOST,
1800           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1801
1802   g_object_class_install_property (gobject_class, PROP_AUTOREMOVE,
1803       g_param_spec_boolean ("autoremove", "Auto Remove",
1804           "Automatically remove timed out sources", DEFAULT_AUTOREMOVE,
1805           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1806
1807   g_object_class_install_property (gobject_class, PROP_IGNORE_PT,
1808       g_param_spec_boolean ("ignore-pt", "Ignore PT",
1809           "Do not demultiplex based on PT values", DEFAULT_IGNORE_PT,
1810           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1811
1812   g_object_class_install_property (gobject_class, PROP_USE_PIPELINE_CLOCK,
1813       g_param_spec_boolean ("use-pipeline-clock", "Use pipeline clock",
1814           "Use the pipeline clock to set the NTP time in the RTCP SR messages",
1815           DEFAULT_USE_PIPELINE_CLOCK,
1816           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1817   /**
1818    * GstRtpBin::buffer-mode:
1819    *
1820    * Control the buffering and timestamping mode used by the jitterbuffer.
1821    *
1822    * Since: 0.10.17
1823    */
1824   g_object_class_install_property (gobject_class, PROP_BUFFER_MODE,
1825       g_param_spec_enum ("buffer-mode", "Buffer Mode",
1826           "Control the buffering algorithm in use", RTP_TYPE_JITTER_BUFFER_MODE,
1827           DEFAULT_BUFFER_MODE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1828   /**
1829    * GstRtpBin::ntp-sync:
1830    *
1831    * Synchronize received streams to the NTP clock. When the NTP clock is shared
1832    * between the receivers and the senders (such as when using ntpd) this option
1833    * can be used to synchronize receivers on multiple machines.
1834    *
1835    * Since: 0.10.21
1836    */
1837   g_object_class_install_property (gobject_class, PROP_NTP_SYNC,
1838       g_param_spec_boolean ("ntp-sync", "Sync on NTP clock",
1839           "Synchronize received streams to the NTP clock", DEFAULT_NTP_SYNC,
1840           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1841
1842   /**
1843    * GstRtpBin::rtcp-sync:
1844    *
1845    * If not synchronizing (directly) to the NTP clock, determines how to sync
1846    * the various streams.
1847    *
1848    * Since: 0.10.31
1849    */
1850   g_object_class_install_property (gobject_class, PROP_RTCP_SYNC,
1851       g_param_spec_enum ("rtcp-sync", "RTCP Sync",
1852           "Use of RTCP SR in synchronization", GST_RTP_BIN_RTCP_SYNC_TYPE,
1853           DEFAULT_RTCP_SYNC, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1854
1855   /**
1856    * GstRtpBin::rtcp-sync-interval:
1857    *
1858    * Determines how often to sync streams using RTCP data.
1859    *
1860    * Since: 0.10.31
1861    */
1862   g_object_class_install_property (gobject_class, PROP_RTCP_SYNC_INTERVAL,
1863       g_param_spec_uint ("rtcp-sync-interval", "RTCP Sync Interval",
1864           "RTCP SR interval synchronization (ms) (0 = always)",
1865           0, G_MAXUINT, DEFAULT_RTCP_SYNC_INTERVAL,
1866           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1867
1868   gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_rtp_bin_change_state);
1869   gstelement_class->request_new_pad =
1870       GST_DEBUG_FUNCPTR (gst_rtp_bin_request_new_pad);
1871   gstelement_class->release_pad = GST_DEBUG_FUNCPTR (gst_rtp_bin_release_pad);
1872
1873   gstbin_class->handle_message = GST_DEBUG_FUNCPTR (gst_rtp_bin_handle_message);
1874
1875   klass->clear_pt_map = GST_DEBUG_FUNCPTR (gst_rtp_bin_clear_pt_map);
1876   klass->reset_sync = GST_DEBUG_FUNCPTR (gst_rtp_bin_reset_sync);
1877   klass->get_internal_session =
1878       GST_DEBUG_FUNCPTR (gst_rtp_bin_get_internal_session);
1879
1880   GST_DEBUG_CATEGORY_INIT (gst_rtp_bin_debug, "rtpbin", 0, "RTP bin");
1881 }
1882
1883 static void
1884 gst_rtp_bin_init (GstRtpBin * rtpbin, GstRtpBinClass * klass)
1885 {
1886   gchar *cname;
1887
1888   rtpbin->priv = GST_RTP_BIN_GET_PRIVATE (rtpbin);
1889   rtpbin->priv->bin_lock = g_mutex_new ();
1890   rtpbin->priv->dyn_lock = g_mutex_new ();
1891
1892   rtpbin->latency_ms = DEFAULT_LATENCY_MS;
1893   rtpbin->latency_ns = DEFAULT_LATENCY_MS * GST_MSECOND;
1894   rtpbin->do_lost = DEFAULT_DO_LOST;
1895   rtpbin->ignore_pt = DEFAULT_IGNORE_PT;
1896   rtpbin->ntp_sync = DEFAULT_NTP_SYNC;
1897   rtpbin->rtcp_sync = DEFAULT_RTCP_SYNC;
1898   rtpbin->rtcp_sync_interval = DEFAULT_RTCP_SYNC_INTERVAL;
1899   rtpbin->priv->autoremove = DEFAULT_AUTOREMOVE;
1900   rtpbin->buffer_mode = DEFAULT_BUFFER_MODE;
1901   rtpbin->use_pipeline_clock = DEFAULT_USE_PIPELINE_CLOCK;
1902
1903   /* some default SDES entries */
1904   cname = g_strdup_printf ("user%u@host-%x", g_random_int (), g_random_int ());
1905   rtpbin->sdes = gst_structure_new ("application/x-rtp-source-sdes",
1906       "cname", G_TYPE_STRING, cname, "tool", G_TYPE_STRING, "GStreamer", NULL);
1907   g_free (cname);
1908 }
1909
1910 static void
1911 gst_rtp_bin_dispose (GObject * object)
1912 {
1913   GstRtpBin *rtpbin;
1914
1915   rtpbin = GST_RTP_BIN (object);
1916
1917   GST_DEBUG_OBJECT (object, "freeing sessions");
1918   g_slist_foreach (rtpbin->sessions, (GFunc) free_session, rtpbin);
1919   g_slist_free (rtpbin->sessions);
1920   rtpbin->sessions = NULL;
1921   GST_DEBUG_OBJECT (object, "freeing clients");
1922   g_slist_foreach (rtpbin->clients, (GFunc) free_client, rtpbin);
1923   g_slist_free (rtpbin->clients);
1924   rtpbin->clients = NULL;
1925
1926   G_OBJECT_CLASS (parent_class)->dispose (object);
1927 }
1928
1929 static void
1930 gst_rtp_bin_finalize (GObject * object)
1931 {
1932   GstRtpBin *rtpbin;
1933
1934   rtpbin = GST_RTP_BIN (object);
1935
1936   if (rtpbin->sdes)
1937     gst_structure_free (rtpbin->sdes);
1938
1939   g_mutex_free (rtpbin->priv->bin_lock);
1940   g_mutex_free (rtpbin->priv->dyn_lock);
1941
1942   G_OBJECT_CLASS (parent_class)->finalize (object);
1943 }
1944
1945
1946 static void
1947 gst_rtp_bin_set_sdes_struct (GstRtpBin * bin, const GstStructure * sdes)
1948 {
1949   GSList *item;
1950
1951   if (sdes == NULL)
1952     return;
1953
1954   GST_RTP_BIN_LOCK (bin);
1955
1956   GST_OBJECT_LOCK (bin);
1957   if (bin->sdes)
1958     gst_structure_free (bin->sdes);
1959   bin->sdes = gst_structure_copy (sdes);
1960   GST_OBJECT_UNLOCK (bin);
1961
1962   /* store in all sessions */
1963   for (item = bin->sessions; item; item = g_slist_next (item)) {
1964     GstRtpBinSession *session = item->data;
1965     g_object_set (session->session, "sdes", sdes, NULL);
1966   }
1967
1968   GST_RTP_BIN_UNLOCK (bin);
1969 }
1970
1971 static GstStructure *
1972 gst_rtp_bin_get_sdes_struct (GstRtpBin * bin)
1973 {
1974   GstStructure *result;
1975
1976   GST_OBJECT_LOCK (bin);
1977   result = gst_structure_copy (bin->sdes);
1978   GST_OBJECT_UNLOCK (bin);
1979
1980   return result;
1981 }
1982
1983 static void
1984 gst_rtp_bin_set_property (GObject * object, guint prop_id,
1985     const GValue * value, GParamSpec * pspec)
1986 {
1987   GstRtpBin *rtpbin;
1988
1989   rtpbin = GST_RTP_BIN (object);
1990
1991   switch (prop_id) {
1992     case PROP_LATENCY:
1993       GST_RTP_BIN_LOCK (rtpbin);
1994       rtpbin->latency_ms = g_value_get_uint (value);
1995       rtpbin->latency_ns = rtpbin->latency_ms * GST_MSECOND;
1996       GST_RTP_BIN_UNLOCK (rtpbin);
1997       /* propagate the property down to the jitterbuffer */
1998       gst_rtp_bin_propagate_property_to_jitterbuffer (rtpbin, "latency", value);
1999       break;
2000     case PROP_SDES:
2001       gst_rtp_bin_set_sdes_struct (rtpbin, g_value_get_boxed (value));
2002       break;
2003     case PROP_DO_LOST:
2004       GST_RTP_BIN_LOCK (rtpbin);
2005       rtpbin->do_lost = g_value_get_boolean (value);
2006       GST_RTP_BIN_UNLOCK (rtpbin);
2007       gst_rtp_bin_propagate_property_to_jitterbuffer (rtpbin, "do-lost", value);
2008       break;
2009     case PROP_NTP_SYNC:
2010       rtpbin->ntp_sync = g_value_get_boolean (value);
2011       break;
2012     case PROP_RTCP_SYNC:
2013       g_atomic_int_set (&rtpbin->rtcp_sync, g_value_get_enum (value));
2014       break;
2015     case PROP_RTCP_SYNC_INTERVAL:
2016       rtpbin->rtcp_sync_interval = g_value_get_uint (value);
2017       break;
2018     case PROP_IGNORE_PT:
2019       rtpbin->ignore_pt = g_value_get_boolean (value);
2020       break;
2021     case PROP_AUTOREMOVE:
2022       rtpbin->priv->autoremove = g_value_get_boolean (value);
2023       break;
2024     case PROP_USE_PIPELINE_CLOCK:
2025     {
2026       GSList *sessions;
2027       GST_RTP_BIN_LOCK (rtpbin);
2028       rtpbin->use_pipeline_clock = g_value_get_boolean (value);
2029       for (sessions = rtpbin->sessions; sessions;
2030           sessions = g_slist_next (sessions)) {
2031         GstRtpBinSession *session = (GstRtpBinSession *) sessions->data;
2032
2033         g_object_set (G_OBJECT (session->session),
2034             "use-pipeline-clock", rtpbin->use_pipeline_clock, NULL);
2035       }
2036       GST_RTP_BIN_UNLOCK (rtpbin);
2037     }
2038       break;
2039     case PROP_BUFFER_MODE:
2040       GST_RTP_BIN_LOCK (rtpbin);
2041       rtpbin->buffer_mode = g_value_get_enum (value);
2042       GST_RTP_BIN_UNLOCK (rtpbin);
2043       /* propagate the property down to the jitterbuffer */
2044       gst_rtp_bin_propagate_property_to_jitterbuffer (rtpbin, "mode", value);
2045       break;
2046     default:
2047       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
2048       break;
2049   }
2050 }
2051
2052 static void
2053 gst_rtp_bin_get_property (GObject * object, guint prop_id,
2054     GValue * value, GParamSpec * pspec)
2055 {
2056   GstRtpBin *rtpbin;
2057
2058   rtpbin = GST_RTP_BIN (object);
2059
2060   switch (prop_id) {
2061     case PROP_LATENCY:
2062       GST_RTP_BIN_LOCK (rtpbin);
2063       g_value_set_uint (value, rtpbin->latency_ms);
2064       GST_RTP_BIN_UNLOCK (rtpbin);
2065       break;
2066     case PROP_SDES:
2067       g_value_take_boxed (value, gst_rtp_bin_get_sdes_struct (rtpbin));
2068       break;
2069     case PROP_DO_LOST:
2070       GST_RTP_BIN_LOCK (rtpbin);
2071       g_value_set_boolean (value, rtpbin->do_lost);
2072       GST_RTP_BIN_UNLOCK (rtpbin);
2073       break;
2074     case PROP_IGNORE_PT:
2075       g_value_set_boolean (value, rtpbin->ignore_pt);
2076       break;
2077     case PROP_NTP_SYNC:
2078       g_value_set_boolean (value, rtpbin->ntp_sync);
2079       break;
2080     case PROP_RTCP_SYNC:
2081       g_value_set_enum (value, g_atomic_int_get (&rtpbin->rtcp_sync));
2082       break;
2083     case PROP_RTCP_SYNC_INTERVAL:
2084       g_value_set_uint (value, rtpbin->rtcp_sync_interval);
2085       break;
2086     case PROP_AUTOREMOVE:
2087       g_value_set_boolean (value, rtpbin->priv->autoremove);
2088       break;
2089     case PROP_BUFFER_MODE:
2090       g_value_set_enum (value, rtpbin->buffer_mode);
2091       break;
2092     case PROP_USE_PIPELINE_CLOCK:
2093       g_value_set_boolean (value, rtpbin->use_pipeline_clock);
2094       break;
2095     default:
2096       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
2097       break;
2098   }
2099 }
2100
2101 static void
2102 gst_rtp_bin_handle_message (GstBin * bin, GstMessage * message)
2103 {
2104   GstRtpBin *rtpbin;
2105
2106   rtpbin = GST_RTP_BIN (bin);
2107
2108   switch (GST_MESSAGE_TYPE (message)) {
2109     case GST_MESSAGE_ELEMENT:
2110     {
2111       const GstStructure *s = gst_message_get_structure (message);
2112
2113       /* we change the structure name and add the session ID to it */
2114       if (gst_structure_has_name (s, "application/x-rtp-source-sdes")) {
2115         GstRtpBinSession *sess;
2116
2117         /* find the session we set it as object data */
2118         sess = g_object_get_data (G_OBJECT (GST_MESSAGE_SRC (message)),
2119             "GstRTPBin.session");
2120
2121         if (G_LIKELY (sess)) {
2122           message = gst_message_make_writable (message);
2123           s = gst_message_get_structure (message);
2124           gst_structure_set ((GstStructure *) s, "session", G_TYPE_UINT,
2125               sess->id, NULL);
2126         }
2127       }
2128       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
2129       break;
2130     }
2131     case GST_MESSAGE_BUFFERING:
2132     {
2133       gint percent;
2134       gint min_percent = 100;
2135       GSList *sessions, *streams;
2136       GstRtpBinStream *stream;
2137       gboolean change = FALSE, active = FALSE;
2138       GstClockTime min_out_time;
2139       GstBufferingMode mode;
2140       gint avg_in, avg_out;
2141       gint64 buffering_left;
2142
2143       gst_message_parse_buffering (message, &percent);
2144       gst_message_parse_buffering_stats (message, &mode, &avg_in, &avg_out,
2145           &buffering_left);
2146
2147       stream =
2148           g_object_get_data (G_OBJECT (GST_MESSAGE_SRC (message)),
2149           "GstRTPBin.stream");
2150
2151       GST_DEBUG_OBJECT (bin, "got percent %d from stream %p", percent, stream);
2152
2153       /* get the stream */
2154       if (G_LIKELY (stream)) {
2155         GST_RTP_BIN_LOCK (rtpbin);
2156         /* fill in the percent */
2157         stream->percent = percent;
2158
2159         /* calculate the min value for all streams */
2160         for (sessions = rtpbin->sessions; sessions;
2161             sessions = g_slist_next (sessions)) {
2162           GstRtpBinSession *session = (GstRtpBinSession *) sessions->data;
2163
2164           GST_RTP_SESSION_LOCK (session);
2165           if (session->streams) {
2166             for (streams = session->streams; streams;
2167                 streams = g_slist_next (streams)) {
2168               GstRtpBinStream *stream = (GstRtpBinStream *) streams->data;
2169
2170               GST_DEBUG_OBJECT (bin, "stream %p percent %d", stream,
2171                   stream->percent);
2172
2173               /* find min percent */
2174               if (min_percent > stream->percent)
2175                 min_percent = stream->percent;
2176             }
2177           } else {
2178             GST_INFO_OBJECT (bin,
2179                 "session has no streams, setting min_percent to 0");
2180             min_percent = 0;
2181           }
2182           GST_RTP_SESSION_UNLOCK (session);
2183         }
2184         GST_DEBUG_OBJECT (bin, "min percent %d", min_percent);
2185
2186         if (rtpbin->buffering) {
2187           if (min_percent == 100) {
2188             rtpbin->buffering = FALSE;
2189             active = TRUE;
2190             change = TRUE;
2191           }
2192         } else {
2193           if (min_percent < 100) {
2194             /* pause the streams */
2195             rtpbin->buffering = TRUE;
2196             active = FALSE;
2197             change = TRUE;
2198           }
2199         }
2200         GST_RTP_BIN_UNLOCK (rtpbin);
2201
2202         gst_message_unref (message);
2203
2204         /* make a new buffering message with the min value */
2205         message =
2206             gst_message_new_buffering (GST_OBJECT_CAST (bin), min_percent);
2207         gst_message_set_buffering_stats (message, mode, avg_in, avg_out,
2208             buffering_left);
2209
2210         if (G_UNLIKELY (change)) {
2211           GstClock *clock;
2212           guint64 running_time = 0;
2213           guint64 offset = 0;
2214
2215           /* figure out the running time when we have a clock */
2216           if (G_LIKELY ((clock =
2217                       gst_element_get_clock (GST_ELEMENT_CAST (bin))))) {
2218             guint64 now, base_time;
2219
2220             now = gst_clock_get_time (clock);
2221             base_time = gst_element_get_base_time (GST_ELEMENT_CAST (bin));
2222             running_time = now - base_time;
2223             gst_object_unref (clock);
2224           }
2225           GST_DEBUG_OBJECT (bin,
2226               "running time now %" GST_TIME_FORMAT,
2227               GST_TIME_ARGS (running_time));
2228
2229           GST_RTP_BIN_LOCK (rtpbin);
2230
2231           /* when we reactivate, calculate the offsets so that all streams have
2232            * an output time that is at least as big as the running_time */
2233           offset = 0;
2234           if (active) {
2235             if (running_time > rtpbin->buffer_start) {
2236               offset = running_time - rtpbin->buffer_start;
2237               if (offset >= rtpbin->latency_ns)
2238                 offset -= rtpbin->latency_ns;
2239               else
2240                 offset = 0;
2241             }
2242           }
2243
2244           /* pause all streams */
2245           min_out_time = -1;
2246           for (sessions = rtpbin->sessions; sessions;
2247               sessions = g_slist_next (sessions)) {
2248             GstRtpBinSession *session = (GstRtpBinSession *) sessions->data;
2249
2250             GST_RTP_SESSION_LOCK (session);
2251             for (streams = session->streams; streams;
2252                 streams = g_slist_next (streams)) {
2253               GstRtpBinStream *stream = (GstRtpBinStream *) streams->data;
2254               GstElement *element = stream->buffer;
2255               guint64 last_out;
2256
2257               g_signal_emit_by_name (element, "set-active", active, offset,
2258                   &last_out);
2259
2260               if (!active) {
2261                 g_object_get (element, "percent", &stream->percent, NULL);
2262
2263                 if (last_out == -1)
2264                   last_out = 0;
2265                 if (min_out_time == -1 || last_out < min_out_time)
2266                   min_out_time = last_out;
2267               }
2268
2269               GST_DEBUG_OBJECT (bin,
2270                   "setting %p to %d, offset %" GST_TIME_FORMAT ", last %"
2271                   GST_TIME_FORMAT ", percent %d", element, active,
2272                   GST_TIME_ARGS (offset), GST_TIME_ARGS (last_out),
2273                   stream->percent);
2274             }
2275             GST_RTP_SESSION_UNLOCK (session);
2276           }
2277           GST_DEBUG_OBJECT (bin,
2278               "min out time %" GST_TIME_FORMAT, GST_TIME_ARGS (min_out_time));
2279
2280           /* the buffer_start is the min out time of all paused jitterbuffers */
2281           if (!active)
2282             rtpbin->buffer_start = min_out_time;
2283
2284           GST_RTP_BIN_UNLOCK (rtpbin);
2285         }
2286       }
2287       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
2288       break;
2289     }
2290     default:
2291     {
2292       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
2293       break;
2294     }
2295   }
2296 }
2297
2298 static GstStateChangeReturn
2299 gst_rtp_bin_change_state (GstElement * element, GstStateChange transition)
2300 {
2301   GstStateChangeReturn res;
2302   GstRtpBin *rtpbin;
2303   GstRtpBinPrivate *priv;
2304
2305   rtpbin = GST_RTP_BIN (element);
2306   priv = rtpbin->priv;
2307
2308   switch (transition) {
2309     case GST_STATE_CHANGE_NULL_TO_READY:
2310       break;
2311     case GST_STATE_CHANGE_READY_TO_PAUSED:
2312       priv->last_unix = 0;
2313       GST_LOG_OBJECT (rtpbin, "clearing shutdown flag");
2314       g_atomic_int_set (&priv->shutdown, 0);
2315       break;
2316     case GST_STATE_CHANGE_PAUSED_TO_READY:
2317       GST_LOG_OBJECT (rtpbin, "setting shutdown flag");
2318       g_atomic_int_set (&priv->shutdown, 1);
2319       /* wait for all callbacks to end by taking the lock. No new callbacks will
2320        * be able to happen as we set the shutdown flag. */
2321       GST_RTP_BIN_DYN_LOCK (rtpbin);
2322       GST_LOG_OBJECT (rtpbin, "dynamic lock taken, we can continue shutdown");
2323       GST_RTP_BIN_DYN_UNLOCK (rtpbin);
2324       break;
2325     default:
2326       break;
2327   }
2328
2329   res = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
2330
2331   switch (transition) {
2332     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
2333       break;
2334     case GST_STATE_CHANGE_PAUSED_TO_READY:
2335       break;
2336     case GST_STATE_CHANGE_READY_TO_NULL:
2337       break;
2338     default:
2339       break;
2340   }
2341   return res;
2342 }
2343
2344 /* a new pad (SSRC) was created in @session. This signal is emited from the
2345  * payload demuxer. */
2346 static void
2347 new_payload_found (GstElement * element, guint pt, GstPad * pad,
2348     GstRtpBinStream * stream)
2349 {
2350   GstRtpBin *rtpbin;
2351   GstElementClass *klass;
2352   GstPadTemplate *templ;
2353   gchar *padname;
2354   GstPad *gpad;
2355
2356   rtpbin = stream->bin;
2357
2358   GST_DEBUG ("new payload pad %d", pt);
2359
2360   GST_RTP_BIN_SHUTDOWN_LOCK (rtpbin, shutdown);
2361
2362   /* ghost the pad to the parent */
2363   klass = GST_ELEMENT_GET_CLASS (rtpbin);
2364   templ = gst_element_class_get_pad_template (klass, "recv_rtp_src_%d_%d_%d");
2365   padname = g_strdup_printf ("recv_rtp_src_%d_%u_%d",
2366       stream->session->id, stream->ssrc, pt);
2367   gpad = gst_ghost_pad_new_from_template (padname, pad, templ);
2368   g_free (padname);
2369   g_object_set_data (G_OBJECT (pad), "GstRTPBin.ghostpad", gpad);
2370
2371   gst_pad_set_caps (gpad, GST_PAD_CAPS (pad));
2372   gst_pad_set_active (gpad, TRUE);
2373   GST_RTP_BIN_SHUTDOWN_UNLOCK (rtpbin);
2374
2375   gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), gpad);
2376
2377   return;
2378
2379 shutdown:
2380   {
2381     GST_DEBUG ("ignoring, we are shutting down");
2382     return;
2383   }
2384 }
2385
2386 static void
2387 payload_pad_removed (GstElement * element, GstPad * pad,
2388     GstRtpBinStream * stream)
2389 {
2390   GstRtpBin *rtpbin;
2391   GstPad *gpad;
2392
2393   rtpbin = stream->bin;
2394
2395   GST_DEBUG ("payload pad removed");
2396
2397   GST_RTP_BIN_DYN_LOCK (rtpbin);
2398   if ((gpad = g_object_get_data (G_OBJECT (pad), "GstRTPBin.ghostpad"))) {
2399     g_object_set_data (G_OBJECT (pad), "GstRTPBin.ghostpad", NULL);
2400
2401     gst_pad_set_active (gpad, FALSE);
2402     gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin), gpad);
2403   }
2404   GST_RTP_BIN_DYN_UNLOCK (rtpbin);
2405 }
2406
2407 static GstCaps *
2408 pt_map_requested (GstElement * element, guint pt, GstRtpBinSession * session)
2409 {
2410   GstRtpBin *rtpbin;
2411   GstCaps *caps;
2412
2413   rtpbin = session->bin;
2414
2415   GST_DEBUG_OBJECT (rtpbin, "payload map requested for pt %d in session %d", pt,
2416       session->id);
2417
2418   caps = get_pt_map (session, pt);
2419   if (!caps)
2420     goto no_caps;
2421
2422   return caps;
2423
2424   /* ERRORS */
2425 no_caps:
2426   {
2427     GST_DEBUG_OBJECT (rtpbin, "could not get caps");
2428     return NULL;
2429   }
2430 }
2431
2432 static void
2433 payload_type_change (GstElement * element, guint pt, GstRtpBinSession * session)
2434 {
2435   GST_DEBUG_OBJECT (session->bin,
2436       "emiting signal for pt type changed to %d in session %d", pt,
2437       session->id);
2438
2439   g_signal_emit (session->bin, gst_rtp_bin_signals[SIGNAL_PAYLOAD_TYPE_CHANGE],
2440       0, session->id, pt);
2441 }
2442
2443 /* emited when caps changed for the session */
2444 static void
2445 caps_changed (GstPad * pad, GParamSpec * pspec, GstRtpBinSession * session)
2446 {
2447   GstRtpBin *bin;
2448   GstCaps *caps;
2449   gint payload;
2450   const GstStructure *s;
2451
2452   bin = session->bin;
2453
2454   g_object_get (pad, "caps", &caps, NULL);
2455
2456   if (caps == NULL)
2457     return;
2458
2459   GST_DEBUG_OBJECT (bin, "got caps %" GST_PTR_FORMAT, caps);
2460
2461   s = gst_caps_get_structure (caps, 0);
2462
2463   /* get payload, finish when it's not there */
2464   if (!gst_structure_get_int (s, "payload", &payload))
2465     return;
2466
2467   GST_RTP_SESSION_LOCK (session);
2468   GST_DEBUG_OBJECT (bin, "insert caps for payload %d", payload);
2469   g_hash_table_insert (session->ptmap, GINT_TO_POINTER (payload), caps);
2470   GST_RTP_SESSION_UNLOCK (session);
2471 }
2472
2473 /* a new pad (SSRC) was created in @session */
2474 static void
2475 new_ssrc_pad_found (GstElement * element, guint ssrc, GstPad * pad,
2476     GstRtpBinSession * session)
2477 {
2478   GstRtpBin *rtpbin;
2479   GstRtpBinStream *stream;
2480   GstPad *sinkpad, *srcpad;
2481   gchar *padname;
2482
2483   rtpbin = session->bin;
2484
2485   GST_DEBUG_OBJECT (rtpbin, "new SSRC pad %08x, %s:%s", ssrc,
2486       GST_DEBUG_PAD_NAME (pad));
2487
2488   GST_RTP_BIN_SHUTDOWN_LOCK (rtpbin, shutdown);
2489
2490   GST_RTP_SESSION_LOCK (session);
2491
2492   /* create new stream */
2493   stream = create_stream (session, ssrc);
2494   if (!stream)
2495     goto no_stream;
2496
2497   /* get pad and link */
2498   GST_DEBUG_OBJECT (rtpbin, "linking jitterbuffer RTP");
2499   padname = g_strdup_printf ("src_%d", ssrc);
2500   srcpad = gst_element_get_static_pad (element, padname);
2501   g_free (padname);
2502   sinkpad = gst_element_get_static_pad (stream->buffer, "sink");
2503   gst_pad_link (srcpad, sinkpad);
2504   gst_object_unref (sinkpad);
2505   gst_object_unref (srcpad);
2506
2507   GST_DEBUG_OBJECT (rtpbin, "linking jitterbuffer RTCP");
2508   padname = g_strdup_printf ("rtcp_src_%d", ssrc);
2509   srcpad = gst_element_get_static_pad (element, padname);
2510   g_free (padname);
2511   sinkpad = gst_element_get_request_pad (stream->buffer, "sink_rtcp");
2512   gst_pad_link (srcpad, sinkpad);
2513   gst_object_unref (sinkpad);
2514   gst_object_unref (srcpad);
2515
2516   /* connect to the RTCP sync signal from the jitterbuffer */
2517   GST_DEBUG_OBJECT (rtpbin, "connecting sync signal");
2518   stream->buffer_handlesync_sig = g_signal_connect (stream->buffer,
2519       "handle-sync", (GCallback) gst_rtp_bin_handle_sync, stream);
2520
2521   if (stream->demux) {
2522     /* connect to the new-pad signal of the payload demuxer, this will expose the
2523      * new pad by ghosting it. */
2524     stream->demux_newpad_sig = g_signal_connect (stream->demux,
2525         "new-payload-type", (GCallback) new_payload_found, stream);
2526     stream->demux_padremoved_sig = g_signal_connect (stream->demux,
2527         "pad-removed", (GCallback) payload_pad_removed, stream);
2528
2529     /* connect to the request-pt-map signal. This signal will be emited by the
2530      * demuxer so that it can apply a proper caps on the buffers for the
2531      * depayloaders. */
2532     stream->demux_ptreq_sig = g_signal_connect (stream->demux,
2533         "request-pt-map", (GCallback) pt_map_requested, session);
2534     /* connect to the  signal so it can be forwarded. */
2535     stream->demux_ptchange_sig = g_signal_connect (stream->demux,
2536         "payload-type-change", (GCallback) payload_type_change, session);
2537   } else {
2538     /* add gstrtpjitterbuffer src pad to pads */
2539     GstElementClass *klass;
2540     GstPadTemplate *templ;
2541     gchar *padname;
2542     GstPad *gpad, *pad;
2543
2544     pad = gst_element_get_static_pad (stream->buffer, "src");
2545
2546     /* ghost the pad to the parent */
2547     klass = GST_ELEMENT_GET_CLASS (rtpbin);
2548     templ = gst_element_class_get_pad_template (klass, "recv_rtp_src_%d_%d_%d");
2549     padname = g_strdup_printf ("recv_rtp_src_%d_%u_%d",
2550         stream->session->id, stream->ssrc, 255);
2551     gpad = gst_ghost_pad_new_from_template (padname, pad, templ);
2552     g_free (padname);
2553
2554     gst_pad_set_caps (gpad, GST_PAD_CAPS (pad));
2555     gst_pad_set_active (gpad, TRUE);
2556     gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), gpad);
2557
2558     gst_object_unref (pad);
2559   }
2560
2561   GST_RTP_SESSION_UNLOCK (session);
2562   GST_RTP_BIN_SHUTDOWN_UNLOCK (rtpbin);
2563
2564   return;
2565
2566   /* ERRORS */
2567 shutdown:
2568   {
2569     GST_DEBUG_OBJECT (rtpbin, "we are shutting down");
2570     return;
2571   }
2572 no_stream:
2573   {
2574     GST_RTP_SESSION_UNLOCK (session);
2575     GST_RTP_BIN_SHUTDOWN_UNLOCK (rtpbin);
2576     GST_DEBUG_OBJECT (rtpbin, "could not create stream");
2577     return;
2578   }
2579 }
2580
2581 /* Create a pad for receiving RTP for the session in @name. Must be called with
2582  * RTP_BIN_LOCK.
2583  */
2584 static GstPad *
2585 create_recv_rtp (GstRtpBin * rtpbin, GstPadTemplate * templ, const gchar * name)
2586 {
2587   GstPad *sinkdpad;
2588   guint sessid;
2589   GstRtpBinSession *session;
2590   GstPadLinkReturn lres;
2591
2592   /* first get the session number */
2593   if (name == NULL || sscanf (name, "recv_rtp_sink_%d", &sessid) != 1)
2594     goto no_name;
2595
2596   GST_DEBUG_OBJECT (rtpbin, "finding session %d", sessid);
2597
2598   /* get or create session */
2599   session = find_session_by_id (rtpbin, sessid);
2600   if (!session) {
2601     GST_DEBUG_OBJECT (rtpbin, "creating session %d", sessid);
2602     /* create session now */
2603     session = create_session (rtpbin, sessid);
2604     if (session == NULL)
2605       goto create_error;
2606   }
2607
2608   /* check if pad was requested */
2609   if (session->recv_rtp_sink_ghost != NULL)
2610     return session->recv_rtp_sink_ghost;
2611
2612   GST_DEBUG_OBJECT (rtpbin, "getting RTP sink pad");
2613   /* get recv_rtp pad and store */
2614   session->recv_rtp_sink =
2615       gst_element_get_request_pad (session->session, "recv_rtp_sink");
2616   if (session->recv_rtp_sink == NULL)
2617     goto pad_failed;
2618
2619   g_signal_connect (session->recv_rtp_sink, "notify::caps",
2620       (GCallback) caps_changed, session);
2621
2622   GST_DEBUG_OBJECT (rtpbin, "getting RTP src pad");
2623   /* get srcpad, link to SSRCDemux */
2624   session->recv_rtp_src =
2625       gst_element_get_static_pad (session->session, "recv_rtp_src");
2626   if (session->recv_rtp_src == NULL)
2627     goto pad_failed;
2628
2629   GST_DEBUG_OBJECT (rtpbin, "getting demuxer RTP sink pad");
2630   sinkdpad = gst_element_get_static_pad (session->demux, "sink");
2631   GST_DEBUG_OBJECT (rtpbin, "linking demuxer RTP sink pad");
2632   lres = gst_pad_link (session->recv_rtp_src, sinkdpad);
2633   gst_object_unref (sinkdpad);
2634   if (lres != GST_PAD_LINK_OK)
2635     goto link_failed;
2636
2637   /* connect to the new-ssrc-pad signal of the SSRC demuxer */
2638   session->demux_newpad_sig = g_signal_connect (session->demux,
2639       "new-ssrc-pad", (GCallback) new_ssrc_pad_found, session);
2640   session->demux_padremoved_sig = g_signal_connect (session->demux,
2641       "removed-ssrc-pad", (GCallback) ssrc_demux_pad_removed, session);
2642
2643   GST_DEBUG_OBJECT (rtpbin, "ghosting session sink pad");
2644   session->recv_rtp_sink_ghost =
2645       gst_ghost_pad_new_from_template (name, session->recv_rtp_sink, templ);
2646   gst_pad_set_active (session->recv_rtp_sink_ghost, TRUE);
2647   gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), session->recv_rtp_sink_ghost);
2648
2649   return session->recv_rtp_sink_ghost;
2650
2651   /* ERRORS */
2652 no_name:
2653   {
2654     g_warning ("gstrtpbin: invalid name given");
2655     return NULL;
2656   }
2657 create_error:
2658   {
2659     /* create_session already warned */
2660     return NULL;
2661   }
2662 pad_failed:
2663   {
2664     g_warning ("gstrtpbin: failed to get session pad");
2665     return NULL;
2666   }
2667 link_failed:
2668   {
2669     g_warning ("gstrtpbin: failed to link pads");
2670     return NULL;
2671   }
2672 }
2673
2674 static void
2675 remove_recv_rtp (GstRtpBin * rtpbin, GstRtpBinSession * session)
2676 {
2677   if (session->demux_newpad_sig) {
2678     g_signal_handler_disconnect (session->demux, session->demux_newpad_sig);
2679     session->demux_newpad_sig = 0;
2680   }
2681   if (session->demux_padremoved_sig) {
2682     g_signal_handler_disconnect (session->demux, session->demux_padremoved_sig);
2683     session->demux_padremoved_sig = 0;
2684   }
2685   if (session->recv_rtp_src) {
2686     gst_object_unref (session->recv_rtp_src);
2687     session->recv_rtp_src = NULL;
2688   }
2689   if (session->recv_rtp_sink) {
2690     gst_element_release_request_pad (session->session, session->recv_rtp_sink);
2691     gst_object_unref (session->recv_rtp_sink);
2692     session->recv_rtp_sink = NULL;
2693   }
2694   if (session->recv_rtp_sink_ghost) {
2695     gst_pad_set_active (session->recv_rtp_sink_ghost, FALSE);
2696     gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin),
2697         session->recv_rtp_sink_ghost);
2698     session->recv_rtp_sink_ghost = NULL;
2699   }
2700 }
2701
2702 /* Create a pad for receiving RTCP for the session in @name. Must be called with
2703  * RTP_BIN_LOCK.
2704  */
2705 static GstPad *
2706 create_recv_rtcp (GstRtpBin * rtpbin, GstPadTemplate * templ,
2707     const gchar * name)
2708 {
2709   guint sessid;
2710   GstRtpBinSession *session;
2711   GstPad *sinkdpad;
2712   GstPadLinkReturn lres;
2713
2714   /* first get the session number */
2715   if (name == NULL || sscanf (name, "recv_rtcp_sink_%d", &sessid) != 1)
2716     goto no_name;
2717
2718   GST_DEBUG_OBJECT (rtpbin, "finding session %d", sessid);
2719
2720   /* get or create the session */
2721   session = find_session_by_id (rtpbin, sessid);
2722   if (!session) {
2723     GST_DEBUG_OBJECT (rtpbin, "creating session %d", sessid);
2724     /* create session now */
2725     session = create_session (rtpbin, sessid);
2726     if (session == NULL)
2727       goto create_error;
2728   }
2729
2730   /* check if pad was requested */
2731   if (session->recv_rtcp_sink_ghost != NULL)
2732     return session->recv_rtcp_sink_ghost;
2733
2734   /* get recv_rtp pad and store */
2735   GST_DEBUG_OBJECT (rtpbin, "getting RTCP sink pad");
2736   session->recv_rtcp_sink =
2737       gst_element_get_request_pad (session->session, "recv_rtcp_sink");
2738   if (session->recv_rtcp_sink == NULL)
2739     goto pad_failed;
2740
2741   /* get srcpad, link to SSRCDemux */
2742   GST_DEBUG_OBJECT (rtpbin, "getting sync src pad");
2743   session->sync_src = gst_element_get_static_pad (session->session, "sync_src");
2744   if (session->sync_src == NULL)
2745     goto pad_failed;
2746
2747   GST_DEBUG_OBJECT (rtpbin, "getting demuxer RTCP sink pad");
2748   sinkdpad = gst_element_get_static_pad (session->demux, "rtcp_sink");
2749   lres = gst_pad_link (session->sync_src, sinkdpad);
2750   gst_object_unref (sinkdpad);
2751   if (lres != GST_PAD_LINK_OK)
2752     goto link_failed;
2753
2754   session->recv_rtcp_sink_ghost =
2755       gst_ghost_pad_new_from_template (name, session->recv_rtcp_sink, templ);
2756   gst_pad_set_active (session->recv_rtcp_sink_ghost, TRUE);
2757   gst_element_add_pad (GST_ELEMENT_CAST (rtpbin),
2758       session->recv_rtcp_sink_ghost);
2759
2760   return session->recv_rtcp_sink_ghost;
2761
2762   /* ERRORS */
2763 no_name:
2764   {
2765     g_warning ("gstrtpbin: invalid name given");
2766     return NULL;
2767   }
2768 create_error:
2769   {
2770     /* create_session already warned */
2771     return NULL;
2772   }
2773 pad_failed:
2774   {
2775     g_warning ("gstrtpbin: failed to get session pad");
2776     return NULL;
2777   }
2778 link_failed:
2779   {
2780     g_warning ("gstrtpbin: failed to link pads");
2781     return NULL;
2782   }
2783 }
2784
2785 static void
2786 remove_recv_rtcp (GstRtpBin * rtpbin, GstRtpBinSession * session)
2787 {
2788   if (session->recv_rtcp_sink_ghost) {
2789     gst_pad_set_active (session->recv_rtcp_sink_ghost, FALSE);
2790     gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin),
2791         session->recv_rtcp_sink_ghost);
2792     session->recv_rtcp_sink_ghost = NULL;
2793   }
2794   if (session->sync_src) {
2795     /* releasing the request pad should also unref the sync pad */
2796     gst_object_unref (session->sync_src);
2797     session->sync_src = NULL;
2798   }
2799   if (session->recv_rtcp_sink) {
2800     gst_element_release_request_pad (session->session, session->recv_rtcp_sink);
2801     gst_object_unref (session->recv_rtcp_sink);
2802     session->recv_rtcp_sink = NULL;
2803   }
2804 }
2805
2806 /* Create a pad for sending RTP for the session in @name. Must be called with
2807  * RTP_BIN_LOCK.
2808  */
2809 static GstPad *
2810 create_send_rtp (GstRtpBin * rtpbin, GstPadTemplate * templ, const gchar * name)
2811 {
2812   gchar *gname;
2813   guint sessid;
2814   GstRtpBinSession *session;
2815   GstElementClass *klass;
2816
2817   /* first get the session number */
2818   if (name == NULL || sscanf (name, "send_rtp_sink_%d", &sessid) != 1)
2819     goto no_name;
2820
2821   /* get or create session */
2822   session = find_session_by_id (rtpbin, sessid);
2823   if (!session) {
2824     /* create session now */
2825     session = create_session (rtpbin, sessid);
2826     if (session == NULL)
2827       goto create_error;
2828   }
2829
2830   /* check if pad was requested */
2831   if (session->send_rtp_sink_ghost != NULL)
2832     return session->send_rtp_sink_ghost;
2833
2834   /* get send_rtp pad and store */
2835   session->send_rtp_sink =
2836       gst_element_get_request_pad (session->session, "send_rtp_sink");
2837   if (session->send_rtp_sink == NULL)
2838     goto pad_failed;
2839
2840   session->send_rtp_sink_ghost =
2841       gst_ghost_pad_new_from_template (name, session->send_rtp_sink, templ);
2842   gst_pad_set_active (session->send_rtp_sink_ghost, TRUE);
2843   gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), session->send_rtp_sink_ghost);
2844
2845   /* get srcpad */
2846   session->send_rtp_src =
2847       gst_element_get_static_pad (session->session, "send_rtp_src");
2848   if (session->send_rtp_src == NULL)
2849     goto no_srcpad;
2850
2851   /* ghost the new source pad */
2852   klass = GST_ELEMENT_GET_CLASS (rtpbin);
2853   gname = g_strdup_printf ("send_rtp_src_%d", sessid);
2854   templ = gst_element_class_get_pad_template (klass, "send_rtp_src_%d");
2855   session->send_rtp_src_ghost =
2856       gst_ghost_pad_new_from_template (gname, session->send_rtp_src, templ);
2857   gst_pad_set_active (session->send_rtp_src_ghost, TRUE);
2858   gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), session->send_rtp_src_ghost);
2859   g_free (gname);
2860
2861   return session->send_rtp_sink_ghost;
2862
2863   /* ERRORS */
2864 no_name:
2865   {
2866     g_warning ("gstrtpbin: invalid name given");
2867     return NULL;
2868   }
2869 create_error:
2870   {
2871     /* create_session already warned */
2872     return NULL;
2873   }
2874 pad_failed:
2875   {
2876     g_warning ("gstrtpbin: failed to get session pad for session %d", sessid);
2877     return NULL;
2878   }
2879 no_srcpad:
2880   {
2881     g_warning ("gstrtpbin: failed to get rtp source pad for session %d",
2882         sessid);
2883     return NULL;
2884   }
2885 }
2886
2887 static void
2888 remove_send_rtp (GstRtpBin * rtpbin, GstRtpBinSession * session)
2889 {
2890   if (session->send_rtp_src_ghost) {
2891     gst_pad_set_active (session->send_rtp_src_ghost, FALSE);
2892     gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin),
2893         session->send_rtp_src_ghost);
2894     session->send_rtp_src_ghost = NULL;
2895   }
2896   if (session->send_rtp_src) {
2897     gst_object_unref (session->send_rtp_src);
2898     session->send_rtp_src = NULL;
2899   }
2900   if (session->send_rtp_sink) {
2901     gst_element_release_request_pad (GST_ELEMENT_CAST (session->session),
2902         session->send_rtp_sink);
2903     gst_object_unref (session->send_rtp_sink);
2904     session->send_rtp_sink = NULL;
2905   }
2906   if (session->send_rtp_sink_ghost) {
2907     gst_pad_set_active (session->send_rtp_sink_ghost, FALSE);
2908     gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin),
2909         session->send_rtp_sink_ghost);
2910     session->send_rtp_sink_ghost = NULL;
2911   }
2912 }
2913
2914 /* Create a pad for sending RTCP for the session in @name. Must be called with
2915  * RTP_BIN_LOCK.
2916  */
2917 static GstPad *
2918 create_rtcp (GstRtpBin * rtpbin, GstPadTemplate * templ, const gchar * name)
2919 {
2920   guint sessid;
2921   GstRtpBinSession *session;
2922
2923   /* first get the session number */
2924   if (name == NULL || sscanf (name, "send_rtcp_src_%d", &sessid) != 1)
2925     goto no_name;
2926
2927   /* get or create session */
2928   session = find_session_by_id (rtpbin, sessid);
2929   if (!session)
2930     goto no_session;
2931
2932   /* check if pad was requested */
2933   if (session->send_rtcp_src_ghost != NULL)
2934     return session->send_rtcp_src_ghost;
2935
2936   /* get rtcp_src pad and store */
2937   session->send_rtcp_src =
2938       gst_element_get_request_pad (session->session, "send_rtcp_src");
2939   if (session->send_rtcp_src == NULL)
2940     goto pad_failed;
2941
2942   session->send_rtcp_src_ghost =
2943       gst_ghost_pad_new_from_template (name, session->send_rtcp_src, templ);
2944   gst_pad_set_active (session->send_rtcp_src_ghost, TRUE);
2945   gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), session->send_rtcp_src_ghost);
2946
2947   return session->send_rtcp_src_ghost;
2948
2949   /* ERRORS */
2950 no_name:
2951   {
2952     g_warning ("gstrtpbin: invalid name given");
2953     return NULL;
2954   }
2955 no_session:
2956   {
2957     g_warning ("gstrtpbin: session with id %d does not exist", sessid);
2958     return NULL;
2959   }
2960 pad_failed:
2961   {
2962     g_warning ("gstrtpbin: failed to get rtcp pad for session %d", sessid);
2963     return NULL;
2964   }
2965 }
2966
2967 static void
2968 remove_rtcp (GstRtpBin * rtpbin, GstRtpBinSession * session)
2969 {
2970   if (session->send_rtcp_src_ghost) {
2971     gst_pad_set_active (session->send_rtcp_src_ghost, FALSE);
2972     gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin),
2973         session->send_rtcp_src_ghost);
2974     session->send_rtcp_src_ghost = NULL;
2975   }
2976   if (session->send_rtcp_src) {
2977     gst_element_release_request_pad (session->session, session->send_rtcp_src);
2978     gst_object_unref (session->send_rtcp_src);
2979     session->send_rtcp_src = NULL;
2980   }
2981 }
2982
2983 /* If the requested name is NULL we should create a name with
2984  * the session number assuming we want the lowest posible session
2985  * with a free pad like the template */
2986 static gchar *
2987 gst_rtp_bin_get_free_pad_name (GstElement * element, GstPadTemplate * templ)
2988 {
2989   gboolean name_found = FALSE;
2990   gint session = 0;
2991   GstIterator *pad_it = NULL;
2992   gchar *pad_name = NULL;
2993
2994   GST_DEBUG_OBJECT (element, "find a free pad name for template");
2995   while (!name_found) {
2996     gboolean done = FALSE;
2997     g_free (pad_name);
2998     pad_name = g_strdup_printf (templ->name_template, session++);
2999     pad_it = gst_element_iterate_pads (GST_ELEMENT (element));
3000     name_found = TRUE;
3001     while (!done) {
3002       gpointer data;
3003
3004       switch (gst_iterator_next (pad_it, &data)) {
3005         case GST_ITERATOR_OK:
3006         {
3007           GstPad *pad;
3008           gchar *name;
3009
3010           pad = GST_PAD_CAST (data);
3011           name = gst_pad_get_name (pad);
3012
3013           if (strcmp (name, pad_name) == 0) {
3014             done = TRUE;
3015             name_found = FALSE;
3016           }
3017           g_free (name);
3018           gst_object_unref (pad);
3019           break;
3020         }
3021         case GST_ITERATOR_ERROR:
3022         case GST_ITERATOR_RESYNC:
3023           /* restart iteration */
3024           done = TRUE;
3025           name_found = FALSE;
3026           session = 0;
3027           break;
3028         case GST_ITERATOR_DONE:
3029           done = TRUE;
3030           break;
3031       }
3032     }
3033     gst_iterator_free (pad_it);
3034   }
3035
3036   GST_DEBUG_OBJECT (element, "free pad name found: '%s'", pad_name);
3037   return pad_name;
3038 }
3039
3040 /*
3041  */
3042 static GstPad *
3043 gst_rtp_bin_request_new_pad (GstElement * element,
3044     GstPadTemplate * templ, const gchar * name)
3045 {
3046   GstRtpBin *rtpbin;
3047   GstElementClass *klass;
3048   GstPad *result;
3049
3050   gchar *pad_name = NULL;
3051
3052   g_return_val_if_fail (templ != NULL, NULL);
3053   g_return_val_if_fail (GST_IS_RTP_BIN (element), NULL);
3054
3055   rtpbin = GST_RTP_BIN (element);
3056   klass = GST_ELEMENT_GET_CLASS (element);
3057
3058   GST_RTP_BIN_LOCK (rtpbin);
3059
3060   if (name == NULL) {
3061     /* use a free pad name */
3062     pad_name = gst_rtp_bin_get_free_pad_name (element, templ);
3063   } else {
3064     /* use the provided name */
3065     pad_name = g_strdup (name);
3066   }
3067
3068   GST_DEBUG_OBJECT (rtpbin, "Trying to request a pad with name %s", pad_name);
3069
3070   /* figure out the template */
3071   if (templ == gst_element_class_get_pad_template (klass, "recv_rtp_sink_%d")) {
3072     result = create_recv_rtp (rtpbin, templ, pad_name);
3073   } else if (templ == gst_element_class_get_pad_template (klass,
3074           "recv_rtcp_sink_%d")) {
3075     result = create_recv_rtcp (rtpbin, templ, pad_name);
3076   } else if (templ == gst_element_class_get_pad_template (klass,
3077           "send_rtp_sink_%d")) {
3078     result = create_send_rtp (rtpbin, templ, pad_name);
3079   } else if (templ == gst_element_class_get_pad_template (klass,
3080           "send_rtcp_src_%d")) {
3081     result = create_rtcp (rtpbin, templ, pad_name);
3082   } else
3083     goto wrong_template;
3084
3085   g_free (pad_name);
3086   GST_RTP_BIN_UNLOCK (rtpbin);
3087
3088   return result;
3089
3090   /* ERRORS */
3091 wrong_template:
3092   {
3093     g_free (pad_name);
3094     GST_RTP_BIN_UNLOCK (rtpbin);
3095     g_warning ("gstrtpbin: this is not our template");
3096     return NULL;
3097   }
3098 }
3099
3100 static void
3101 gst_rtp_bin_release_pad (GstElement * element, GstPad * pad)
3102 {
3103   GstRtpBinSession *session;
3104   GstRtpBin *rtpbin;
3105
3106   g_return_if_fail (GST_IS_GHOST_PAD (pad));
3107   g_return_if_fail (GST_IS_RTP_BIN (element));
3108
3109   rtpbin = GST_RTP_BIN (element);
3110
3111   GST_RTP_BIN_LOCK (rtpbin);
3112   GST_DEBUG_OBJECT (rtpbin, "Trying to release pad %s:%s",
3113       GST_DEBUG_PAD_NAME (pad));
3114
3115   if (!(session = find_session_by_pad (rtpbin, pad)))
3116     goto unknown_pad;
3117
3118   if (session->recv_rtp_sink_ghost == pad) {
3119     remove_recv_rtp (rtpbin, session);
3120   } else if (session->recv_rtcp_sink_ghost == pad) {
3121     remove_recv_rtcp (rtpbin, session);
3122   } else if (session->send_rtp_sink_ghost == pad) {
3123     remove_send_rtp (rtpbin, session);
3124   } else if (session->send_rtcp_src_ghost == pad) {
3125     remove_rtcp (rtpbin, session);
3126   }
3127
3128   /* no more request pads, free the complete session */
3129   if (session->recv_rtp_sink_ghost == NULL
3130       && session->recv_rtcp_sink_ghost == NULL
3131       && session->send_rtp_sink_ghost == NULL
3132       && session->send_rtcp_src_ghost == NULL) {
3133     GST_DEBUG_OBJECT (rtpbin, "no more pads for session %p", session);
3134     rtpbin->sessions = g_slist_remove (rtpbin->sessions, session);
3135     free_session (session, rtpbin);
3136   }
3137   GST_RTP_BIN_UNLOCK (rtpbin);
3138
3139   return;
3140
3141   /* ERROR */
3142 unknown_pad:
3143   {
3144     GST_RTP_BIN_UNLOCK (rtpbin);
3145     g_warning ("gstrtpbin: %s:%s is not one of our request pads",
3146         GST_DEBUG_PAD_NAME (pad));
3147     return;
3148   }
3149 }