port to new gthread API
[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_\%u pad. The session
32  * number must be specified in the pad name.
33  * Data received on the recv_rtp_sink_\%u 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_\%u_\%u_\%u 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_\%u 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_\%u 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_\%u pad, which will
51  * automatically create a send_rtp_src_\%u 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_\%u 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_%u",
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_%u",
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_%u",
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_%u_%u_%u",
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_%u",
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_%u",
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 ("rtpsession", NULL)))
561     goto no_session;
562
563   if (!(demux = gst_element_factory_make ("rtpssrcdemux", NULL)))
564     goto no_demux;
565
566   sess = g_new0 (GstRtpBinSession, 1);
567   g_mutex_init (&sess->lock);
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 ("rtpbin: could not create gstrtpsession element");
621     return NULL;
622   }
623 no_demux:
624   {
625     gst_object_unref (session);
626     g_warning ("rtpbin: 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_clear (&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     }
1192
1193     for (walk = client->streams; walk; walk = g_slist_next (walk)) {
1194       GstRtpBinStream *ostream = (GstRtpBinStream *) walk->data;
1195
1196       if (!ostream->have_sync) {
1197         all_sync = FALSE;
1198         continue;
1199       }
1200
1201       /* change in current stream's base from previously init'ed value
1202        * leads to reset of all stream's base */
1203       if (stream != ostream && stream->clock_base >= 0 &&
1204           (stream->clock_base != clock_base)) {
1205         GST_DEBUG_OBJECT (bin, "reset upon clock base change");
1206         ostream->clock_base = -100 * GST_SECOND;
1207         ostream->rtp_delta = 0;
1208       }
1209
1210       if (ostream->rt_delta < min)
1211         min = ostream->rt_delta;
1212       if (ostream->rtp_delta < rtp_min)
1213         rtp_min = ostream->rtp_delta;
1214     }
1215
1216     /* arrange to re-sync for each stream upon significant change,
1217      * e.g. post-seek */
1218     all_sync = (stream->clock_base == clock_base);
1219     stream->clock_base = clock_base;
1220
1221     /* may need init performed above later on, but nothing more to do now */
1222     if (client->nstreams <= 1)
1223       return;
1224
1225     GST_DEBUG_OBJECT (bin, "client %p min delta %" G_GINT64_FORMAT
1226         " all sync %d", client, min, all_sync);
1227     GST_DEBUG_OBJECT (bin, "rtcp sync mode %d, use_rtp %d", rtcp_sync, use_rtp);
1228
1229     switch (rtcp_sync) {
1230       case GST_RTP_BIN_RTCP_SYNC_RTP:
1231         if (!use_rtp)
1232           break;
1233         GST_DEBUG_OBJECT (bin, "using rtp generated reports; "
1234             "client %p min rtp delta %" G_GINT64_FORMAT, client, rtp_min);
1235         /* fall-through */
1236       case GST_RTP_BIN_RTCP_SYNC_INITIAL:
1237         /* if all have been synced already, do not bother further */
1238         if (all_sync) {
1239           GST_DEBUG_OBJECT (bin, "all streams already synced; done");
1240           return;
1241         }
1242         break;
1243       default:
1244         break;
1245     }
1246
1247     /* bail out if we adjusted recently enough */
1248     if (all_sync && (last_unix - bin->priv->last_unix) <
1249         bin->rtcp_sync_interval * GST_MSECOND) {
1250       GST_DEBUG_OBJECT (bin, "discarding RTCP sender packet for sync; "
1251           "previous sender info too recent "
1252           "(previous UNIX %" G_GUINT64_FORMAT ")", bin->priv->last_unix);
1253       return;
1254     }
1255     bin->priv->last_unix = last_unix;
1256
1257     /* calculate offsets for each stream */
1258     for (walk = client->streams; walk; walk = g_slist_next (walk)) {
1259       GstRtpBinStream *ostream = (GstRtpBinStream *) walk->data;
1260       gint64 ts_offset;
1261
1262       /* ignore streams for which we didn't receive an SR packet yet, we
1263        * can't synchronize them yet. We can however sync other streams just
1264        * fine. */
1265       if (!ostream->have_sync)
1266         continue;
1267
1268       /* calculate offset to our reference stream, this should always give a
1269        * positive number. */
1270       if (use_rtp)
1271         ts_offset = ostream->rtp_delta - rtp_min;
1272       else
1273         ts_offset = ostream->rt_delta - min;
1274
1275       stream_set_ts_offset (bin, ostream, ts_offset);
1276     }
1277   }
1278   return;
1279 }
1280
1281 #define GST_RTCP_BUFFER_FOR_PACKETS(b,buffer,packet) \
1282   for ((b) = gst_rtcp_buffer_get_first_packet ((buffer), (packet)); (b); \
1283           (b) = gst_rtcp_packet_move_to_next ((packet)))
1284
1285 #define GST_RTCP_SDES_FOR_ITEMS(b,packet) \
1286   for ((b) = gst_rtcp_packet_sdes_first_item ((packet)); (b); \
1287           (b) = gst_rtcp_packet_sdes_next_item ((packet)))
1288
1289 #define GST_RTCP_SDES_FOR_ENTRIES(b,packet) \
1290   for ((b) = gst_rtcp_packet_sdes_first_entry ((packet)); (b); \
1291           (b) = gst_rtcp_packet_sdes_next_entry ((packet)))
1292
1293 static void
1294 gst_rtp_bin_handle_sync (GstElement * jitterbuffer, GstStructure * s,
1295     GstRtpBinStream * stream)
1296 {
1297   GstRtpBin *bin;
1298   GstRTCPPacket packet;
1299   guint32 ssrc;
1300   guint64 ntptime;
1301   gboolean have_sr, have_sdes;
1302   gboolean more;
1303   guint64 base_rtptime;
1304   guint64 base_time;
1305   guint clock_rate;
1306   guint64 clock_base;
1307   guint64 extrtptime;
1308   GstBuffer *buffer;
1309   GstRTCPBuffer rtcp = { NULL, };
1310
1311   bin = stream->bin;
1312
1313   GST_DEBUG_OBJECT (bin, "sync handler called");
1314
1315   /* get the last relation between the rtp timestamps and the gstreamer
1316    * timestamps. We get this info directly from the jitterbuffer which
1317    * constructs gstreamer timestamps from rtp timestamps and so it know exactly
1318    * what the current situation is. */
1319   base_rtptime =
1320       g_value_get_uint64 (gst_structure_get_value (s, "base-rtptime"));
1321   base_time = g_value_get_uint64 (gst_structure_get_value (s, "base-time"));
1322   clock_rate = g_value_get_uint (gst_structure_get_value (s, "clock-rate"));
1323   clock_base = g_value_get_uint64 (gst_structure_get_value (s, "clock-base"));
1324   extrtptime =
1325       g_value_get_uint64 (gst_structure_get_value (s, "sr-ext-rtptime"));
1326   buffer = gst_value_get_buffer (gst_structure_get_value (s, "sr-buffer"));
1327
1328   have_sr = FALSE;
1329   have_sdes = FALSE;
1330
1331   gst_rtcp_buffer_map (buffer, GST_MAP_READ, &rtcp);
1332
1333   GST_RTCP_BUFFER_FOR_PACKETS (more, &rtcp, &packet) {
1334     /* first packet must be SR or RR or else the validate would have failed */
1335     switch (gst_rtcp_packet_get_type (&packet)) {
1336       case GST_RTCP_TYPE_SR:
1337         /* only parse first. There is only supposed to be one SR in the packet
1338          * but we will deal with malformed packets gracefully */
1339         if (have_sr)
1340           break;
1341         /* get NTP and RTP times */
1342         gst_rtcp_packet_sr_get_sender_info (&packet, &ssrc, &ntptime, NULL,
1343             NULL, NULL);
1344
1345         GST_DEBUG_OBJECT (bin, "received sync packet from SSRC %08x", ssrc);
1346         /* ignore SR that is not ours */
1347         if (ssrc != stream->ssrc)
1348           continue;
1349
1350         have_sr = TRUE;
1351         break;
1352       case GST_RTCP_TYPE_SDES:
1353       {
1354         gboolean more_items, more_entries;
1355
1356         /* only deal with first SDES, there is only supposed to be one SDES in
1357          * the RTCP packet but we deal with bad packets gracefully. Also bail
1358          * out if we have not seen an SR item yet. */
1359         if (have_sdes || !have_sr)
1360           break;
1361
1362         GST_RTCP_SDES_FOR_ITEMS (more_items, &packet) {
1363           /* skip items that are not about the SSRC of the sender */
1364           if (gst_rtcp_packet_sdes_get_ssrc (&packet) != ssrc)
1365             continue;
1366
1367           /* find the CNAME entry */
1368           GST_RTCP_SDES_FOR_ENTRIES (more_entries, &packet) {
1369             GstRTCPSDESType type;
1370             guint8 len;
1371             guint8 *data;
1372
1373             gst_rtcp_packet_sdes_get_entry (&packet, &type, &len, &data);
1374
1375             if (type == GST_RTCP_SDES_CNAME) {
1376               GST_RTP_BIN_LOCK (bin);
1377               /* associate the stream to CNAME */
1378               gst_rtp_bin_associate (bin, stream, len, data,
1379                   ntptime, extrtptime, base_rtptime, base_time, clock_rate,
1380                   clock_base);
1381               GST_RTP_BIN_UNLOCK (bin);
1382             }
1383           }
1384         }
1385         have_sdes = TRUE;
1386         break;
1387       }
1388       default:
1389         /* we can ignore these packets */
1390         break;
1391     }
1392   }
1393   gst_rtcp_buffer_unmap (&rtcp);
1394 }
1395
1396 /* create a new stream with @ssrc in @session. Must be called with
1397  * RTP_SESSION_LOCK. */
1398 static GstRtpBinStream *
1399 create_stream (GstRtpBinSession * session, guint32 ssrc)
1400 {
1401   GstElement *buffer, *demux = NULL;
1402   GstRtpBinStream *stream;
1403   GstRtpBin *rtpbin;
1404   GstState target;
1405
1406   rtpbin = session->bin;
1407
1408   if (!(buffer = gst_element_factory_make ("rtpjitterbuffer", NULL)))
1409     goto no_jitterbuffer;
1410
1411   if (!rtpbin->ignore_pt)
1412     if (!(demux = gst_element_factory_make ("rtpptdemux", NULL)))
1413       goto no_demux;
1414
1415
1416   stream = g_new0 (GstRtpBinStream, 1);
1417   stream->ssrc = ssrc;
1418   stream->bin = rtpbin;
1419   stream->session = session;
1420   stream->buffer = buffer;
1421   stream->demux = demux;
1422
1423   stream->have_sync = FALSE;
1424   stream->rt_delta = 0;
1425   stream->rtp_delta = 0;
1426   stream->percent = 100;
1427   stream->clock_base = -100 * GST_SECOND;
1428   session->streams = g_slist_prepend (session->streams, stream);
1429
1430   /* provide clock_rate to the jitterbuffer when needed */
1431   stream->buffer_ptreq_sig = g_signal_connect (buffer, "request-pt-map",
1432       (GCallback) pt_map_requested, session);
1433   stream->buffer_ntpstop_sig = g_signal_connect (buffer, "on-npt-stop",
1434       (GCallback) on_npt_stop, stream);
1435
1436   g_object_set_data (G_OBJECT (buffer), "GstRTPBin.session", session);
1437   g_object_set_data (G_OBJECT (buffer), "GstRTPBin.stream", stream);
1438
1439   /* configure latency and packet lost */
1440   g_object_set (buffer, "latency", rtpbin->latency_ms, NULL);
1441   g_object_set (buffer, "do-lost", rtpbin->do_lost, NULL);
1442   g_object_set (buffer, "mode", rtpbin->buffer_mode, NULL);
1443
1444   if (!rtpbin->ignore_pt)
1445     gst_bin_add (GST_BIN_CAST (rtpbin), demux);
1446   gst_bin_add (GST_BIN_CAST (rtpbin), buffer);
1447
1448   /* link stuff */
1449   if (demux)
1450     gst_element_link (buffer, demux);
1451
1452   if (rtpbin->buffering) {
1453     guint64 last_out;
1454
1455     GST_INFO_OBJECT (rtpbin,
1456         "bin is buffering, set jitterbuffer as not active");
1457     g_signal_emit_by_name (buffer, "set-active", FALSE, (gint64) 0, &last_out);
1458   }
1459
1460
1461   GST_OBJECT_LOCK (rtpbin);
1462   target = GST_STATE_TARGET (rtpbin);
1463   GST_OBJECT_UNLOCK (rtpbin);
1464
1465   /* from sink to source */
1466   if (demux)
1467     gst_element_set_state (demux, target);
1468
1469   gst_element_set_state (buffer, target);
1470
1471   return stream;
1472
1473   /* ERRORS */
1474 no_jitterbuffer:
1475   {
1476     g_warning ("rtpbin: could not create gstrtpjitterbuffer element");
1477     return NULL;
1478   }
1479 no_demux:
1480   {
1481     gst_object_unref (buffer);
1482     g_warning ("rtpbin: could not create gstrtpptdemux element");
1483     return NULL;
1484   }
1485 }
1486
1487 static void
1488 free_stream (GstRtpBinStream * stream)
1489 {
1490   GstRtpBinSession *session;
1491
1492   session = stream->session;
1493
1494   if (stream->demux) {
1495     g_signal_handler_disconnect (stream->demux, stream->demux_newpad_sig);
1496     g_signal_handler_disconnect (stream->demux, stream->demux_ptreq_sig);
1497     g_signal_handler_disconnect (stream->demux, stream->demux_ptchange_sig);
1498   }
1499   g_signal_handler_disconnect (stream->buffer, stream->buffer_handlesync_sig);
1500   g_signal_handler_disconnect (stream->buffer, stream->buffer_ptreq_sig);
1501   g_signal_handler_disconnect (stream->buffer, stream->buffer_ntpstop_sig);
1502
1503   if (stream->demux)
1504     gst_element_set_locked_state (stream->demux, TRUE);
1505   gst_element_set_locked_state (stream->buffer, TRUE);
1506
1507   if (stream->demux)
1508     gst_element_set_state (stream->demux, GST_STATE_NULL);
1509   gst_element_set_state (stream->buffer, GST_STATE_NULL);
1510
1511   /* now remove this signal, we need this while going to NULL because it to
1512    * do some cleanups */
1513   if (stream->demux)
1514     g_signal_handler_disconnect (stream->demux, stream->demux_padremoved_sig);
1515
1516   gst_bin_remove (GST_BIN_CAST (session->bin), stream->buffer);
1517   if (stream->demux)
1518     gst_bin_remove (GST_BIN_CAST (session->bin), stream->demux);
1519
1520   g_free (stream);
1521 }
1522
1523 /* GObject vmethods */
1524 static void gst_rtp_bin_dispose (GObject * object);
1525 static void gst_rtp_bin_finalize (GObject * object);
1526 static void gst_rtp_bin_set_property (GObject * object, guint prop_id,
1527     const GValue * value, GParamSpec * pspec);
1528 static void gst_rtp_bin_get_property (GObject * object, guint prop_id,
1529     GValue * value, GParamSpec * pspec);
1530
1531 /* GstElement vmethods */
1532 static GstStateChangeReturn gst_rtp_bin_change_state (GstElement * element,
1533     GstStateChange transition);
1534 static GstPad *gst_rtp_bin_request_new_pad (GstElement * element,
1535     GstPadTemplate * templ, const gchar * name, const GstCaps * caps);
1536 static void gst_rtp_bin_release_pad (GstElement * element, GstPad * pad);
1537 static void gst_rtp_bin_handle_message (GstBin * bin, GstMessage * message);
1538
1539 #define gst_rtp_bin_parent_class parent_class
1540 G_DEFINE_TYPE (GstRtpBin, gst_rtp_bin, GST_TYPE_BIN);
1541
1542 static void
1543 gst_rtp_bin_class_init (GstRtpBinClass * klass)
1544 {
1545   GObjectClass *gobject_class;
1546   GstElementClass *gstelement_class;
1547   GstBinClass *gstbin_class;
1548
1549   gobject_class = (GObjectClass *) klass;
1550   gstelement_class = (GstElementClass *) klass;
1551   gstbin_class = (GstBinClass *) klass;
1552
1553   g_type_class_add_private (klass, sizeof (GstRtpBinPrivate));
1554
1555   gobject_class->dispose = gst_rtp_bin_dispose;
1556   gobject_class->finalize = gst_rtp_bin_finalize;
1557   gobject_class->set_property = gst_rtp_bin_set_property;
1558   gobject_class->get_property = gst_rtp_bin_get_property;
1559
1560   g_object_class_install_property (gobject_class, PROP_LATENCY,
1561       g_param_spec_uint ("latency", "Buffer latency in ms",
1562           "Default amount of ms to buffer in the jitterbuffers", 0,
1563           G_MAXUINT, DEFAULT_LATENCY_MS,
1564           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1565
1566   /**
1567    * GstRtpBin::request-pt-map:
1568    * @rtpbin: the object which received the signal
1569    * @session: the session
1570    * @pt: the pt
1571    *
1572    * Request the payload type as #GstCaps for @pt in @session.
1573    */
1574   gst_rtp_bin_signals[SIGNAL_REQUEST_PT_MAP] =
1575       g_signal_new ("request-pt-map", G_TYPE_FROM_CLASS (klass),
1576       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, request_pt_map),
1577       NULL, NULL, gst_rtp_bin_marshal_BOXED__UINT_UINT, GST_TYPE_CAPS, 2,
1578       G_TYPE_UINT, G_TYPE_UINT);
1579
1580     /**
1581    * GstRtpBin::payload-type-change:
1582    * @rtpbin: the object which received the signal
1583    * @session: the session
1584    * @pt: the pt
1585    *
1586    * Signal that the current payload type changed to @pt in @session.
1587    *
1588    * Since: 0.10.17
1589    */
1590   gst_rtp_bin_signals[SIGNAL_PAYLOAD_TYPE_CHANGE] =
1591       g_signal_new ("payload-type-change", G_TYPE_FROM_CLASS (klass),
1592       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, payload_type_change),
1593       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1594       G_TYPE_UINT, G_TYPE_UINT);
1595
1596   /**
1597    * GstRtpBin::clear-pt-map:
1598    * @rtpbin: the object which received the signal
1599    *
1600    * Clear all previously cached pt-mapping obtained with
1601    * #GstRtpBin::request-pt-map.
1602    */
1603   gst_rtp_bin_signals[SIGNAL_CLEAR_PT_MAP] =
1604       g_signal_new ("clear-pt-map", G_TYPE_FROM_CLASS (klass),
1605       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (GstRtpBinClass,
1606           clear_pt_map), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE,
1607       0, G_TYPE_NONE);
1608
1609   /**
1610    * GstRtpBin::reset-sync:
1611    * @rtpbin: the object which received the signal
1612    *
1613    * Reset all currently configured lip-sync parameters and require new SR
1614    * packets for all streams before lip-sync is attempted again.
1615    */
1616   gst_rtp_bin_signals[SIGNAL_RESET_SYNC] =
1617       g_signal_new ("reset-sync", G_TYPE_FROM_CLASS (klass),
1618       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (GstRtpBinClass,
1619           reset_sync), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE,
1620       0, G_TYPE_NONE);
1621
1622   /**
1623    * GstRtpBin::get-internal-session:
1624    * @rtpbin: the object which received the signal
1625    * @id: the session id
1626    *
1627    * Request the internal RTPSession object as #GObject in session @id.
1628    */
1629   gst_rtp_bin_signals[SIGNAL_GET_INTERNAL_SESSION] =
1630       g_signal_new ("get-internal-session", G_TYPE_FROM_CLASS (klass),
1631       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (GstRtpBinClass,
1632           get_internal_session), NULL, NULL, gst_rtp_bin_marshal_OBJECT__UINT,
1633       RTP_TYPE_SESSION, 1, G_TYPE_UINT);
1634
1635   /**
1636    * GstRtpBin::on-new-ssrc:
1637    * @rtpbin: the object which received the signal
1638    * @session: the session
1639    * @ssrc: the SSRC
1640    *
1641    * Notify of a new SSRC that entered @session.
1642    */
1643   gst_rtp_bin_signals[SIGNAL_ON_NEW_SSRC] =
1644       g_signal_new ("on-new-ssrc", G_TYPE_FROM_CLASS (klass),
1645       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_new_ssrc),
1646       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1647       G_TYPE_UINT, G_TYPE_UINT);
1648   /**
1649    * GstRtpBin::on-ssrc-collision:
1650    * @rtpbin: the object which received the signal
1651    * @session: the session
1652    * @ssrc: the SSRC
1653    *
1654    * Notify when we have an SSRC collision
1655    */
1656   gst_rtp_bin_signals[SIGNAL_ON_SSRC_COLLISION] =
1657       g_signal_new ("on-ssrc-collision", G_TYPE_FROM_CLASS (klass),
1658       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_ssrc_collision),
1659       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1660       G_TYPE_UINT, G_TYPE_UINT);
1661   /**
1662    * GstRtpBin::on-ssrc-validated:
1663    * @rtpbin: the object which received the signal
1664    * @session: the session
1665    * @ssrc: the SSRC
1666    *
1667    * Notify of a new SSRC that became validated.
1668    */
1669   gst_rtp_bin_signals[SIGNAL_ON_SSRC_VALIDATED] =
1670       g_signal_new ("on-ssrc-validated", G_TYPE_FROM_CLASS (klass),
1671       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_ssrc_validated),
1672       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1673       G_TYPE_UINT, G_TYPE_UINT);
1674   /**
1675    * GstRtpBin::on-ssrc-active:
1676    * @rtpbin: the object which received the signal
1677    * @session: the session
1678    * @ssrc: the SSRC
1679    *
1680    * Notify of a SSRC that is active, i.e., sending RTCP.
1681    */
1682   gst_rtp_bin_signals[SIGNAL_ON_SSRC_ACTIVE] =
1683       g_signal_new ("on-ssrc-active", G_TYPE_FROM_CLASS (klass),
1684       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_ssrc_active),
1685       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1686       G_TYPE_UINT, G_TYPE_UINT);
1687   /**
1688    * GstRtpBin::on-ssrc-sdes:
1689    * @rtpbin: the object which received the signal
1690    * @session: the session
1691    * @ssrc: the SSRC
1692    *
1693    * Notify of a SSRC that is active, i.e., sending RTCP.
1694    */
1695   gst_rtp_bin_signals[SIGNAL_ON_SSRC_SDES] =
1696       g_signal_new ("on-ssrc-sdes", G_TYPE_FROM_CLASS (klass),
1697       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_ssrc_sdes),
1698       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1699       G_TYPE_UINT, G_TYPE_UINT);
1700
1701   /**
1702    * GstRtpBin::on-bye-ssrc:
1703    * @rtpbin: the object which received the signal
1704    * @session: the session
1705    * @ssrc: the SSRC
1706    *
1707    * Notify of an SSRC that became inactive because of a BYE packet.
1708    */
1709   gst_rtp_bin_signals[SIGNAL_ON_BYE_SSRC] =
1710       g_signal_new ("on-bye-ssrc", G_TYPE_FROM_CLASS (klass),
1711       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_bye_ssrc),
1712       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1713       G_TYPE_UINT, G_TYPE_UINT);
1714   /**
1715    * GstRtpBin::on-bye-timeout:
1716    * @rtpbin: the object which received the signal
1717    * @session: the session
1718    * @ssrc: the SSRC
1719    *
1720    * Notify of an SSRC that has timed out because of BYE
1721    */
1722   gst_rtp_bin_signals[SIGNAL_ON_BYE_TIMEOUT] =
1723       g_signal_new ("on-bye-timeout", G_TYPE_FROM_CLASS (klass),
1724       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_bye_timeout),
1725       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1726       G_TYPE_UINT, G_TYPE_UINT);
1727   /**
1728    * GstRtpBin::on-timeout:
1729    * @rtpbin: the object which received the signal
1730    * @session: the session
1731    * @ssrc: the SSRC
1732    *
1733    * Notify of an SSRC that has timed out
1734    */
1735   gst_rtp_bin_signals[SIGNAL_ON_TIMEOUT] =
1736       g_signal_new ("on-timeout", G_TYPE_FROM_CLASS (klass),
1737       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_timeout),
1738       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1739       G_TYPE_UINT, G_TYPE_UINT);
1740   /**
1741    * GstRtpBin::on-sender-timeout:
1742    * @rtpbin: the object which received the signal
1743    * @session: the session
1744    * @ssrc: the SSRC
1745    *
1746    * Notify of a sender SSRC that has timed out and became a receiver
1747    */
1748   gst_rtp_bin_signals[SIGNAL_ON_SENDER_TIMEOUT] =
1749       g_signal_new ("on-sender-timeout", G_TYPE_FROM_CLASS (klass),
1750       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_sender_timeout),
1751       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1752       G_TYPE_UINT, G_TYPE_UINT);
1753
1754   /**
1755    * GstRtpBin::on-npt-stop:
1756    * @rtpbin: the object which received the signal
1757    * @session: the session
1758    * @ssrc: the SSRC
1759    *
1760    * Notify that SSRC sender has sent data up to the configured NPT stop time.
1761    */
1762   gst_rtp_bin_signals[SIGNAL_ON_NPT_STOP] =
1763       g_signal_new ("on-npt-stop", G_TYPE_FROM_CLASS (klass),
1764       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_npt_stop),
1765       NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1766       G_TYPE_UINT, G_TYPE_UINT);
1767
1768   g_object_class_install_property (gobject_class, PROP_SDES,
1769       g_param_spec_boxed ("sdes", "SDES",
1770           "The SDES items of this session",
1771           GST_TYPE_STRUCTURE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1772
1773   g_object_class_install_property (gobject_class, PROP_DO_LOST,
1774       g_param_spec_boolean ("do-lost", "Do Lost",
1775           "Send an event downstream when a packet is lost", DEFAULT_DO_LOST,
1776           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1777
1778   g_object_class_install_property (gobject_class, PROP_AUTOREMOVE,
1779       g_param_spec_boolean ("autoremove", "Auto Remove",
1780           "Automatically remove timed out sources", DEFAULT_AUTOREMOVE,
1781           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1782
1783   g_object_class_install_property (gobject_class, PROP_IGNORE_PT,
1784       g_param_spec_boolean ("ignore-pt", "Ignore PT",
1785           "Do not demultiplex based on PT values", DEFAULT_IGNORE_PT,
1786           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1787
1788   g_object_class_install_property (gobject_class, PROP_USE_PIPELINE_CLOCK,
1789       g_param_spec_boolean ("use-pipeline-clock", "Use pipeline clock",
1790           "Use the pipeline clock to set the NTP time in the RTCP SR messages",
1791           DEFAULT_USE_PIPELINE_CLOCK,
1792           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1793   /**
1794    * GstRtpBin::buffer-mode:
1795    *
1796    * Control the buffering and timestamping mode used by the jitterbuffer.
1797    *
1798    * Since: 0.10.17
1799    */
1800   g_object_class_install_property (gobject_class, PROP_BUFFER_MODE,
1801       g_param_spec_enum ("buffer-mode", "Buffer Mode",
1802           "Control the buffering algorithm in use", RTP_TYPE_JITTER_BUFFER_MODE,
1803           DEFAULT_BUFFER_MODE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1804   /**
1805    * GstRtpBin::ntp-sync:
1806    *
1807    * Synchronize received streams to the NTP clock. When the NTP clock is shared
1808    * between the receivers and the senders (such as when using ntpd) this option
1809    * can be used to synchronize receivers on multiple machines.
1810    *
1811    * Since: 0.10.21
1812    */
1813   g_object_class_install_property (gobject_class, PROP_NTP_SYNC,
1814       g_param_spec_boolean ("ntp-sync", "Sync on NTP clock",
1815           "Synchronize received streams to the NTP clock", DEFAULT_NTP_SYNC,
1816           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1817
1818   /**
1819    * GstRtpBin::rtcp-sync:
1820    *
1821    * If not synchronizing (directly) to the NTP clock, determines how to sync
1822    * the various streams.
1823    *
1824    * Since: 0.10.31
1825    */
1826   g_object_class_install_property (gobject_class, PROP_RTCP_SYNC,
1827       g_param_spec_enum ("rtcp-sync", "RTCP Sync",
1828           "Use of RTCP SR in synchronization", GST_RTP_BIN_RTCP_SYNC_TYPE,
1829           DEFAULT_RTCP_SYNC, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1830
1831   /**
1832    * GstRtpBin::rtcp-sync-interval:
1833    *
1834    * Determines how often to sync streams using RTCP data.
1835    *
1836    * Since: 0.10.31
1837    */
1838   g_object_class_install_property (gobject_class, PROP_RTCP_SYNC_INTERVAL,
1839       g_param_spec_uint ("rtcp-sync-interval", "RTCP Sync Interval",
1840           "RTCP SR interval synchronization (ms) (0 = always)",
1841           0, G_MAXUINT, DEFAULT_RTCP_SYNC_INTERVAL,
1842           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1843
1844   gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_rtp_bin_change_state);
1845   gstelement_class->request_new_pad =
1846       GST_DEBUG_FUNCPTR (gst_rtp_bin_request_new_pad);
1847   gstelement_class->release_pad = GST_DEBUG_FUNCPTR (gst_rtp_bin_release_pad);
1848
1849   /* sink pads */
1850   gst_element_class_add_pad_template (gstelement_class,
1851       gst_static_pad_template_get (&rtpbin_recv_rtp_sink_template));
1852   gst_element_class_add_pad_template (gstelement_class,
1853       gst_static_pad_template_get (&rtpbin_recv_rtcp_sink_template));
1854   gst_element_class_add_pad_template (gstelement_class,
1855       gst_static_pad_template_get (&rtpbin_send_rtp_sink_template));
1856
1857   /* src pads */
1858   gst_element_class_add_pad_template (gstelement_class,
1859       gst_static_pad_template_get (&rtpbin_recv_rtp_src_template));
1860   gst_element_class_add_pad_template (gstelement_class,
1861       gst_static_pad_template_get (&rtpbin_send_rtcp_src_template));
1862   gst_element_class_add_pad_template (gstelement_class,
1863       gst_static_pad_template_get (&rtpbin_send_rtp_src_template));
1864
1865   gst_element_class_set_details_simple (gstelement_class, "RTP Bin",
1866       "Filter/Network/RTP",
1867       "Real-Time Transport Protocol bin",
1868       "Wim Taymans <wim.taymans@gmail.com>");
1869
1870   gstbin_class->handle_message = GST_DEBUG_FUNCPTR (gst_rtp_bin_handle_message);
1871
1872   klass->clear_pt_map = GST_DEBUG_FUNCPTR (gst_rtp_bin_clear_pt_map);
1873   klass->reset_sync = GST_DEBUG_FUNCPTR (gst_rtp_bin_reset_sync);
1874   klass->get_internal_session =
1875       GST_DEBUG_FUNCPTR (gst_rtp_bin_get_internal_session);
1876
1877   GST_DEBUG_CATEGORY_INIT (gst_rtp_bin_debug, "rtpbin", 0, "RTP bin");
1878 }
1879
1880 static void
1881 gst_rtp_bin_init (GstRtpBin * rtpbin)
1882 {
1883   gchar *str;
1884
1885   rtpbin->priv = GST_RTP_BIN_GET_PRIVATE (rtpbin);
1886   g_mutex_init (&rtpbin->priv->bin_lock);
1887   g_mutex_init (&rtpbin->priv->dyn_lock);
1888
1889   rtpbin->latency_ms = DEFAULT_LATENCY_MS;
1890   rtpbin->latency_ns = DEFAULT_LATENCY_MS * GST_MSECOND;
1891   rtpbin->do_lost = DEFAULT_DO_LOST;
1892   rtpbin->ignore_pt = DEFAULT_IGNORE_PT;
1893   rtpbin->ntp_sync = DEFAULT_NTP_SYNC;
1894   rtpbin->rtcp_sync = DEFAULT_RTCP_SYNC;
1895   rtpbin->rtcp_sync_interval = DEFAULT_RTCP_SYNC_INTERVAL;
1896   rtpbin->priv->autoremove = DEFAULT_AUTOREMOVE;
1897   rtpbin->buffer_mode = DEFAULT_BUFFER_MODE;
1898   rtpbin->use_pipeline_clock = DEFAULT_USE_PIPELINE_CLOCK;
1899
1900   /* some default SDES entries */
1901   str = g_strdup_printf ("%s@%s", g_get_user_name (), g_get_host_name ());
1902   rtpbin->sdes = gst_structure_new ("application/x-rtp-source-sdes",
1903       "cname", G_TYPE_STRING, str,
1904       "name", G_TYPE_STRING, g_get_real_name (),
1905       "tool", G_TYPE_STRING, "GStreamer", NULL);
1906   g_free (str);
1907 }
1908
1909 static void
1910 gst_rtp_bin_dispose (GObject * object)
1911 {
1912   GstRtpBin *rtpbin;
1913
1914   rtpbin = GST_RTP_BIN (object);
1915
1916   GST_DEBUG_OBJECT (object, "freeing sessions");
1917   g_slist_foreach (rtpbin->sessions, (GFunc) free_session, rtpbin);
1918   g_slist_free (rtpbin->sessions);
1919   rtpbin->sessions = NULL;
1920   GST_DEBUG_OBJECT (object, "freeing clients");
1921   g_slist_foreach (rtpbin->clients, (GFunc) free_client, rtpbin);
1922   g_slist_free (rtpbin->clients);
1923   rtpbin->clients = NULL;
1924
1925   G_OBJECT_CLASS (parent_class)->dispose (object);
1926 }
1927
1928 static void
1929 gst_rtp_bin_finalize (GObject * object)
1930 {
1931   GstRtpBin *rtpbin;
1932
1933   rtpbin = GST_RTP_BIN (object);
1934
1935   if (rtpbin->sdes)
1936     gst_structure_free (rtpbin->sdes);
1937
1938   g_mutex_clear (&rtpbin->priv->bin_lock);
1939   g_mutex_clear (&rtpbin->priv->dyn_lock);
1940
1941   G_OBJECT_CLASS (parent_class)->finalize (object);
1942 }
1943
1944
1945 static void
1946 gst_rtp_bin_set_sdes_struct (GstRtpBin * bin, const GstStructure * sdes)
1947 {
1948   GSList *item;
1949
1950   if (sdes == NULL)
1951     return;
1952
1953   GST_RTP_BIN_LOCK (bin);
1954
1955   GST_OBJECT_LOCK (bin);
1956   if (bin->sdes)
1957     gst_structure_free (bin->sdes);
1958   bin->sdes = gst_structure_copy (sdes);
1959   GST_OBJECT_UNLOCK (bin);
1960
1961   /* store in all sessions */
1962   for (item = bin->sessions; item; item = g_slist_next (item)) {
1963     GstRtpBinSession *session = item->data;
1964     g_object_set (session->session, "sdes", sdes, NULL);
1965   }
1966
1967   GST_RTP_BIN_UNLOCK (bin);
1968 }
1969
1970 static GstStructure *
1971 gst_rtp_bin_get_sdes_struct (GstRtpBin * bin)
1972 {
1973   GstStructure *result;
1974
1975   GST_OBJECT_LOCK (bin);
1976   result = gst_structure_copy (bin->sdes);
1977   GST_OBJECT_UNLOCK (bin);
1978
1979   return result;
1980 }
1981
1982 static void
1983 gst_rtp_bin_set_property (GObject * object, guint prop_id,
1984     const GValue * value, GParamSpec * pspec)
1985 {
1986   GstRtpBin *rtpbin;
1987
1988   rtpbin = GST_RTP_BIN (object);
1989
1990   switch (prop_id) {
1991     case PROP_LATENCY:
1992       GST_RTP_BIN_LOCK (rtpbin);
1993       rtpbin->latency_ms = g_value_get_uint (value);
1994       rtpbin->latency_ns = rtpbin->latency_ms * GST_MSECOND;
1995       GST_RTP_BIN_UNLOCK (rtpbin);
1996       /* propagate the property down to the jitterbuffer */
1997       gst_rtp_bin_propagate_property_to_jitterbuffer (rtpbin, "latency", value);
1998       break;
1999     case PROP_SDES:
2000       gst_rtp_bin_set_sdes_struct (rtpbin, g_value_get_boxed (value));
2001       break;
2002     case PROP_DO_LOST:
2003       GST_RTP_BIN_LOCK (rtpbin);
2004       rtpbin->do_lost = g_value_get_boolean (value);
2005       GST_RTP_BIN_UNLOCK (rtpbin);
2006       gst_rtp_bin_propagate_property_to_jitterbuffer (rtpbin, "do-lost", value);
2007       break;
2008     case PROP_NTP_SYNC:
2009       rtpbin->ntp_sync = g_value_get_boolean (value);
2010       break;
2011     case PROP_RTCP_SYNC:
2012       g_atomic_int_set (&rtpbin->rtcp_sync, g_value_get_enum (value));
2013       break;
2014     case PROP_RTCP_SYNC_INTERVAL:
2015       rtpbin->rtcp_sync_interval = g_value_get_uint (value);
2016       break;
2017     case PROP_IGNORE_PT:
2018       rtpbin->ignore_pt = g_value_get_boolean (value);
2019       break;
2020     case PROP_AUTOREMOVE:
2021       rtpbin->priv->autoremove = g_value_get_boolean (value);
2022       break;
2023     case PROP_USE_PIPELINE_CLOCK:
2024     {
2025       GSList *sessions;
2026       GST_RTP_BIN_LOCK (rtpbin);
2027       rtpbin->use_pipeline_clock = g_value_get_boolean (value);
2028       for (sessions = rtpbin->sessions; sessions;
2029           sessions = g_slist_next (sessions)) {
2030         GstRtpBinSession *session = (GstRtpBinSession *) sessions->data;
2031
2032         g_object_set (G_OBJECT (session->session),
2033             "use-pipeline-clock", rtpbin->use_pipeline_clock, NULL);
2034       }
2035       GST_RTP_BIN_UNLOCK (rtpbin);
2036     }
2037       break;
2038     case PROP_BUFFER_MODE:
2039       GST_RTP_BIN_LOCK (rtpbin);
2040       rtpbin->buffer_mode = g_value_get_enum (value);
2041       GST_RTP_BIN_UNLOCK (rtpbin);
2042       /* propagate the property down to the jitterbuffer */
2043       gst_rtp_bin_propagate_property_to_jitterbuffer (rtpbin, "mode", value);
2044       break;
2045     default:
2046       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
2047       break;
2048   }
2049 }
2050
2051 static void
2052 gst_rtp_bin_get_property (GObject * object, guint prop_id,
2053     GValue * value, GParamSpec * pspec)
2054 {
2055   GstRtpBin *rtpbin;
2056
2057   rtpbin = GST_RTP_BIN (object);
2058
2059   switch (prop_id) {
2060     case PROP_LATENCY:
2061       GST_RTP_BIN_LOCK (rtpbin);
2062       g_value_set_uint (value, rtpbin->latency_ms);
2063       GST_RTP_BIN_UNLOCK (rtpbin);
2064       break;
2065     case PROP_SDES:
2066       g_value_take_boxed (value, gst_rtp_bin_get_sdes_struct (rtpbin));
2067       break;
2068     case PROP_DO_LOST:
2069       GST_RTP_BIN_LOCK (rtpbin);
2070       g_value_set_boolean (value, rtpbin->do_lost);
2071       GST_RTP_BIN_UNLOCK (rtpbin);
2072       break;
2073     case PROP_IGNORE_PT:
2074       g_value_set_boolean (value, rtpbin->ignore_pt);
2075       break;
2076     case PROP_NTP_SYNC:
2077       g_value_set_boolean (value, rtpbin->ntp_sync);
2078       break;
2079     case PROP_RTCP_SYNC:
2080       g_value_set_enum (value, g_atomic_int_get (&rtpbin->rtcp_sync));
2081       break;
2082     case PROP_RTCP_SYNC_INTERVAL:
2083       g_value_set_uint (value, rtpbin->rtcp_sync_interval);
2084       break;
2085     case PROP_AUTOREMOVE:
2086       g_value_set_boolean (value, rtpbin->priv->autoremove);
2087       break;
2088     case PROP_BUFFER_MODE:
2089       g_value_set_enum (value, rtpbin->buffer_mode);
2090       break;
2091     case PROP_USE_PIPELINE_CLOCK:
2092       g_value_set_boolean (value, rtpbin->use_pipeline_clock);
2093       break;
2094     default:
2095       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
2096       break;
2097   }
2098 }
2099
2100 static void
2101 gst_rtp_bin_handle_message (GstBin * bin, GstMessage * message)
2102 {
2103   GstRtpBin *rtpbin;
2104
2105   rtpbin = GST_RTP_BIN (bin);
2106
2107   switch (GST_MESSAGE_TYPE (message)) {
2108     case GST_MESSAGE_ELEMENT:
2109     {
2110       const GstStructure *s = gst_message_get_structure (message);
2111
2112       /* we change the structure name and add the session ID to it */
2113       if (gst_structure_has_name (s, "application/x-rtp-source-sdes")) {
2114         GstRtpBinSession *sess;
2115
2116         /* find the session we set it as object data */
2117         sess = g_object_get_data (G_OBJECT (GST_MESSAGE_SRC (message)),
2118             "GstRTPBin.session");
2119
2120         if (G_LIKELY (sess)) {
2121           message = gst_message_make_writable (message);
2122           s = gst_message_get_structure (message);
2123           gst_structure_set ((GstStructure *) s, "session", G_TYPE_UINT,
2124               sess->id, NULL);
2125         }
2126       }
2127       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
2128       break;
2129     }
2130     case GST_MESSAGE_BUFFERING:
2131     {
2132       gint percent;
2133       gint min_percent = 100;
2134       GSList *sessions, *streams;
2135       GstRtpBinStream *stream;
2136       gboolean change = FALSE, active = FALSE;
2137       GstClockTime min_out_time;
2138       GstBufferingMode mode;
2139       gint avg_in, avg_out;
2140       gint64 buffering_left;
2141
2142       gst_message_parse_buffering (message, &percent);
2143       gst_message_parse_buffering_stats (message, &mode, &avg_in, &avg_out,
2144           &buffering_left);
2145
2146       stream =
2147           g_object_get_data (G_OBJECT (GST_MESSAGE_SRC (message)),
2148           "GstRTPBin.stream");
2149
2150       GST_DEBUG_OBJECT (bin, "got percent %d from stream %p", percent, stream);
2151
2152       /* get the stream */
2153       if (G_LIKELY (stream)) {
2154         GST_RTP_BIN_LOCK (rtpbin);
2155         /* fill in the percent */
2156         stream->percent = percent;
2157
2158         /* calculate the min value for all streams */
2159         for (sessions = rtpbin->sessions; sessions;
2160             sessions = g_slist_next (sessions)) {
2161           GstRtpBinSession *session = (GstRtpBinSession *) sessions->data;
2162
2163           GST_RTP_SESSION_LOCK (session);
2164           if (session->streams) {
2165             for (streams = session->streams; streams;
2166                 streams = g_slist_next (streams)) {
2167               GstRtpBinStream *stream = (GstRtpBinStream *) streams->data;
2168
2169               GST_DEBUG_OBJECT (bin, "stream %p percent %d", stream,
2170                   stream->percent);
2171
2172               /* find min percent */
2173               if (min_percent > stream->percent)
2174                 min_percent = stream->percent;
2175             }
2176           } else {
2177             GST_INFO_OBJECT (bin,
2178                 "session has no streams, setting min_percent to 0");
2179             min_percent = 0;
2180           }
2181           GST_RTP_SESSION_UNLOCK (session);
2182         }
2183         GST_DEBUG_OBJECT (bin, "min percent %d", min_percent);
2184
2185         if (rtpbin->buffering) {
2186           if (min_percent == 100) {
2187             rtpbin->buffering = FALSE;
2188             active = TRUE;
2189             change = TRUE;
2190           }
2191         } else {
2192           if (min_percent < 100) {
2193             /* pause the streams */
2194             rtpbin->buffering = TRUE;
2195             active = FALSE;
2196             change = TRUE;
2197           }
2198         }
2199         GST_RTP_BIN_UNLOCK (rtpbin);
2200
2201         gst_message_unref (message);
2202
2203         /* make a new buffering message with the min value */
2204         message =
2205             gst_message_new_buffering (GST_OBJECT_CAST (bin), min_percent);
2206         gst_message_set_buffering_stats (message, mode, avg_in, avg_out,
2207             buffering_left);
2208
2209         if (G_UNLIKELY (change)) {
2210           GstClock *clock;
2211           guint64 running_time = 0;
2212           guint64 offset = 0;
2213
2214           /* figure out the running time when we have a clock */
2215           if (G_LIKELY ((clock =
2216                       gst_element_get_clock (GST_ELEMENT_CAST (bin))))) {
2217             guint64 now, base_time;
2218
2219             now = gst_clock_get_time (clock);
2220             base_time = gst_element_get_base_time (GST_ELEMENT_CAST (bin));
2221             running_time = now - base_time;
2222             gst_object_unref (clock);
2223           }
2224           GST_DEBUG_OBJECT (bin,
2225               "running time now %" GST_TIME_FORMAT,
2226               GST_TIME_ARGS (running_time));
2227
2228           GST_RTP_BIN_LOCK (rtpbin);
2229
2230           /* when we reactivate, calculate the offsets so that all streams have
2231            * an output time that is at least as big as the running_time */
2232           offset = 0;
2233           if (active) {
2234             if (running_time > rtpbin->buffer_start) {
2235               offset = running_time - rtpbin->buffer_start;
2236               if (offset >= rtpbin->latency_ns)
2237                 offset -= rtpbin->latency_ns;
2238               else
2239                 offset = 0;
2240             }
2241           }
2242
2243           /* pause all streams */
2244           min_out_time = -1;
2245           for (sessions = rtpbin->sessions; sessions;
2246               sessions = g_slist_next (sessions)) {
2247             GstRtpBinSession *session = (GstRtpBinSession *) sessions->data;
2248
2249             GST_RTP_SESSION_LOCK (session);
2250             for (streams = session->streams; streams;
2251                 streams = g_slist_next (streams)) {
2252               GstRtpBinStream *stream = (GstRtpBinStream *) streams->data;
2253               GstElement *element = stream->buffer;
2254               guint64 last_out;
2255
2256               g_signal_emit_by_name (element, "set-active", active, offset,
2257                   &last_out);
2258
2259               if (!active) {
2260                 g_object_get (element, "percent", &stream->percent, NULL);
2261
2262                 if (last_out == -1)
2263                   last_out = 0;
2264                 if (min_out_time == -1 || last_out < min_out_time)
2265                   min_out_time = last_out;
2266               }
2267
2268               GST_DEBUG_OBJECT (bin,
2269                   "setting %p to %d, offset %" GST_TIME_FORMAT ", last %"
2270                   GST_TIME_FORMAT ", percent %d", element, active,
2271                   GST_TIME_ARGS (offset), GST_TIME_ARGS (last_out),
2272                   stream->percent);
2273             }
2274             GST_RTP_SESSION_UNLOCK (session);
2275           }
2276           GST_DEBUG_OBJECT (bin,
2277               "min out time %" GST_TIME_FORMAT, GST_TIME_ARGS (min_out_time));
2278
2279           /* the buffer_start is the min out time of all paused jitterbuffers */
2280           if (!active)
2281             rtpbin->buffer_start = min_out_time;
2282
2283           GST_RTP_BIN_UNLOCK (rtpbin);
2284         }
2285       }
2286       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
2287       break;
2288     }
2289     default:
2290     {
2291       GST_BIN_CLASS (parent_class)->handle_message (bin, message);
2292       break;
2293     }
2294   }
2295 }
2296
2297 static GstStateChangeReturn
2298 gst_rtp_bin_change_state (GstElement * element, GstStateChange transition)
2299 {
2300   GstStateChangeReturn res;
2301   GstRtpBin *rtpbin;
2302   GstRtpBinPrivate *priv;
2303
2304   rtpbin = GST_RTP_BIN (element);
2305   priv = rtpbin->priv;
2306
2307   switch (transition) {
2308     case GST_STATE_CHANGE_NULL_TO_READY:
2309       break;
2310     case GST_STATE_CHANGE_READY_TO_PAUSED:
2311       priv->last_unix = 0;
2312       GST_LOG_OBJECT (rtpbin, "clearing shutdown flag");
2313       g_atomic_int_set (&priv->shutdown, 0);
2314       break;
2315     case GST_STATE_CHANGE_PAUSED_TO_READY:
2316       GST_LOG_OBJECT (rtpbin, "setting shutdown flag");
2317       g_atomic_int_set (&priv->shutdown, 1);
2318       /* wait for all callbacks to end by taking the lock. No new callbacks will
2319        * be able to happen as we set the shutdown flag. */
2320       GST_RTP_BIN_DYN_LOCK (rtpbin);
2321       GST_LOG_OBJECT (rtpbin, "dynamic lock taken, we can continue shutdown");
2322       GST_RTP_BIN_DYN_UNLOCK (rtpbin);
2323       break;
2324     default:
2325       break;
2326   }
2327
2328   res = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
2329
2330   switch (transition) {
2331     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
2332       break;
2333     case GST_STATE_CHANGE_PAUSED_TO_READY:
2334       break;
2335     case GST_STATE_CHANGE_READY_TO_NULL:
2336       break;
2337     default:
2338       break;
2339   }
2340   return res;
2341 }
2342
2343 /* a new pad (SSRC) was created in @session. This signal is emited from the
2344  * payload demuxer. */
2345 static void
2346 new_payload_found (GstElement * element, guint pt, GstPad * pad,
2347     GstRtpBinStream * stream)
2348 {
2349   GstRtpBin *rtpbin;
2350   GstElementClass *klass;
2351   GstPadTemplate *templ;
2352   gchar *padname;
2353   GstPad *gpad;
2354
2355   rtpbin = stream->bin;
2356
2357   GST_DEBUG ("new payload pad %d", pt);
2358
2359   GST_RTP_BIN_SHUTDOWN_LOCK (rtpbin, shutdown);
2360
2361   /* ghost the pad to the parent */
2362   klass = GST_ELEMENT_GET_CLASS (rtpbin);
2363   templ = gst_element_class_get_pad_template (klass, "recv_rtp_src_%u_%u_%u");
2364   padname = g_strdup_printf ("recv_rtp_src_%u_%u_%u",
2365       stream->session->id, stream->ssrc, pt);
2366   gpad = gst_ghost_pad_new_from_template (padname, pad, templ);
2367   g_free (padname);
2368   g_object_set_data (G_OBJECT (pad), "GstRTPBin.ghostpad", gpad);
2369
2370   gst_pad_set_active (gpad, TRUE);
2371   GST_RTP_BIN_SHUTDOWN_UNLOCK (rtpbin);
2372
2373   gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), gpad);
2374
2375   return;
2376
2377 shutdown:
2378   {
2379     GST_DEBUG ("ignoring, we are shutting down");
2380     return;
2381   }
2382 }
2383
2384 static void
2385 payload_pad_removed (GstElement * element, GstPad * pad,
2386     GstRtpBinStream * stream)
2387 {
2388   GstRtpBin *rtpbin;
2389   GstPad *gpad;
2390
2391   rtpbin = stream->bin;
2392
2393   GST_DEBUG ("payload pad removed");
2394
2395   GST_RTP_BIN_DYN_LOCK (rtpbin);
2396   if ((gpad = g_object_get_data (G_OBJECT (pad), "GstRTPBin.ghostpad"))) {
2397     g_object_set_data (G_OBJECT (pad), "GstRTPBin.ghostpad", NULL);
2398
2399     gst_pad_set_active (gpad, FALSE);
2400     gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin), gpad);
2401   }
2402   GST_RTP_BIN_DYN_UNLOCK (rtpbin);
2403 }
2404
2405 static GstCaps *
2406 pt_map_requested (GstElement * element, guint pt, GstRtpBinSession * session)
2407 {
2408   GstRtpBin *rtpbin;
2409   GstCaps *caps;
2410
2411   rtpbin = session->bin;
2412
2413   GST_DEBUG_OBJECT (rtpbin, "payload map requested for pt %d in session %d", pt,
2414       session->id);
2415
2416   caps = get_pt_map (session, pt);
2417   if (!caps)
2418     goto no_caps;
2419
2420   return caps;
2421
2422   /* ERRORS */
2423 no_caps:
2424   {
2425     GST_DEBUG_OBJECT (rtpbin, "could not get caps");
2426     return NULL;
2427   }
2428 }
2429
2430 static void
2431 payload_type_change (GstElement * element, guint pt, GstRtpBinSession * session)
2432 {
2433   GST_DEBUG_OBJECT (session->bin,
2434       "emiting signal for pt type changed to %d in session %d", pt,
2435       session->id);
2436
2437   g_signal_emit (session->bin, gst_rtp_bin_signals[SIGNAL_PAYLOAD_TYPE_CHANGE],
2438       0, session->id, pt);
2439 }
2440
2441 /* emited when caps changed for the session */
2442 static void
2443 caps_changed (GstPad * pad, GParamSpec * pspec, GstRtpBinSession * session)
2444 {
2445   GstRtpBin *bin;
2446   GstCaps *caps;
2447   gint payload;
2448   const GstStructure *s;
2449
2450   bin = session->bin;
2451
2452   g_object_get (pad, "caps", &caps, NULL);
2453
2454   if (caps == NULL)
2455     return;
2456
2457   GST_DEBUG_OBJECT (bin, "got caps %" GST_PTR_FORMAT, caps);
2458
2459   s = gst_caps_get_structure (caps, 0);
2460
2461   /* get payload, finish when it's not there */
2462   if (!gst_structure_get_int (s, "payload", &payload))
2463     return;
2464
2465   GST_RTP_SESSION_LOCK (session);
2466   GST_DEBUG_OBJECT (bin, "insert caps for payload %d", payload);
2467   g_hash_table_insert (session->ptmap, GINT_TO_POINTER (payload), caps);
2468   GST_RTP_SESSION_UNLOCK (session);
2469 }
2470
2471 /* a new pad (SSRC) was created in @session */
2472 static void
2473 new_ssrc_pad_found (GstElement * element, guint ssrc, GstPad * pad,
2474     GstRtpBinSession * session)
2475 {
2476   GstRtpBin *rtpbin;
2477   GstRtpBinStream *stream;
2478   GstPad *sinkpad, *srcpad;
2479   gchar *padname;
2480
2481   rtpbin = session->bin;
2482
2483   GST_DEBUG_OBJECT (rtpbin, "new SSRC pad %08x, %s:%s", ssrc,
2484       GST_DEBUG_PAD_NAME (pad));
2485
2486   GST_RTP_BIN_SHUTDOWN_LOCK (rtpbin, shutdown);
2487
2488   GST_RTP_SESSION_LOCK (session);
2489
2490   /* create new stream */
2491   stream = create_stream (session, ssrc);
2492   if (!stream)
2493     goto no_stream;
2494
2495   /* get pad and link */
2496   GST_DEBUG_OBJECT (rtpbin, "linking jitterbuffer RTP");
2497   padname = g_strdup_printf ("src_%u", ssrc);
2498   srcpad = gst_element_get_static_pad (element, padname);
2499   g_free (padname);
2500   sinkpad = gst_element_get_static_pad (stream->buffer, "sink");
2501   gst_pad_link (srcpad, sinkpad);
2502   gst_object_unref (sinkpad);
2503   gst_object_unref (srcpad);
2504
2505   GST_DEBUG_OBJECT (rtpbin, "linking jitterbuffer RTCP");
2506   padname = g_strdup_printf ("rtcp_src_%u", ssrc);
2507   srcpad = gst_element_get_static_pad (element, padname);
2508   g_free (padname);
2509   sinkpad = gst_element_get_request_pad (stream->buffer, "sink_rtcp");
2510   gst_pad_link (srcpad, sinkpad);
2511   gst_object_unref (sinkpad);
2512   gst_object_unref (srcpad);
2513
2514   /* connect to the RTCP sync signal from the jitterbuffer */
2515   GST_DEBUG_OBJECT (rtpbin, "connecting sync signal");
2516   stream->buffer_handlesync_sig = g_signal_connect (stream->buffer,
2517       "handle-sync", (GCallback) gst_rtp_bin_handle_sync, stream);
2518
2519   if (stream->demux) {
2520     /* connect to the new-pad signal of the payload demuxer, this will expose the
2521      * new pad by ghosting it. */
2522     stream->demux_newpad_sig = g_signal_connect (stream->demux,
2523         "new-payload-type", (GCallback) new_payload_found, stream);
2524     stream->demux_padremoved_sig = g_signal_connect (stream->demux,
2525         "pad-removed", (GCallback) payload_pad_removed, stream);
2526
2527     /* connect to the request-pt-map signal. This signal will be emited by the
2528      * demuxer so that it can apply a proper caps on the buffers for the
2529      * depayloaders. */
2530     stream->demux_ptreq_sig = g_signal_connect (stream->demux,
2531         "request-pt-map", (GCallback) pt_map_requested, session);
2532     /* connect to the  signal so it can be forwarded. */
2533     stream->demux_ptchange_sig = g_signal_connect (stream->demux,
2534         "payload-type-change", (GCallback) payload_type_change, session);
2535   } else {
2536     /* add gstrtpjitterbuffer src pad to pads */
2537     GstElementClass *klass;
2538     GstPadTemplate *templ;
2539     gchar *padname;
2540     GstPad *gpad, *pad;
2541
2542     pad = gst_element_get_static_pad (stream->buffer, "src");
2543
2544     /* ghost the pad to the parent */
2545     klass = GST_ELEMENT_GET_CLASS (rtpbin);
2546     templ = gst_element_class_get_pad_template (klass, "recv_rtp_src_%u_%u_%u");
2547     padname = g_strdup_printf ("recv_rtp_src_%u_%u_%u",
2548         stream->session->id, stream->ssrc, 255);
2549     gpad = gst_ghost_pad_new_from_template (padname, pad, templ);
2550     g_free (padname);
2551
2552     gst_pad_set_active (gpad, TRUE);
2553     gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), gpad);
2554
2555     gst_object_unref (pad);
2556   }
2557
2558   GST_RTP_SESSION_UNLOCK (session);
2559   GST_RTP_BIN_SHUTDOWN_UNLOCK (rtpbin);
2560
2561   return;
2562
2563   /* ERRORS */
2564 shutdown:
2565   {
2566     GST_DEBUG_OBJECT (rtpbin, "we are shutting down");
2567     return;
2568   }
2569 no_stream:
2570   {
2571     GST_RTP_SESSION_UNLOCK (session);
2572     GST_RTP_BIN_SHUTDOWN_UNLOCK (rtpbin);
2573     GST_DEBUG_OBJECT (rtpbin, "could not create stream");
2574     return;
2575   }
2576 }
2577
2578 /* Create a pad for receiving RTP for the session in @name. Must be called with
2579  * RTP_BIN_LOCK.
2580  */
2581 static GstPad *
2582 create_recv_rtp (GstRtpBin * rtpbin, GstPadTemplate * templ, const gchar * name)
2583 {
2584   GstPad *sinkdpad;
2585   guint sessid;
2586   GstRtpBinSession *session;
2587   GstPadLinkReturn lres;
2588
2589   /* first get the session number */
2590   if (name == NULL || sscanf (name, "recv_rtp_sink_%u", &sessid) != 1)
2591     goto no_name;
2592
2593   GST_DEBUG_OBJECT (rtpbin, "finding session %d", sessid);
2594
2595   /* get or create session */
2596   session = find_session_by_id (rtpbin, sessid);
2597   if (!session) {
2598     GST_DEBUG_OBJECT (rtpbin, "creating session %d", sessid);
2599     /* create session now */
2600     session = create_session (rtpbin, sessid);
2601     if (session == NULL)
2602       goto create_error;
2603   }
2604
2605   /* check if pad was requested */
2606   if (session->recv_rtp_sink_ghost != NULL)
2607     return session->recv_rtp_sink_ghost;
2608
2609   GST_DEBUG_OBJECT (rtpbin, "getting RTP sink pad");
2610   /* get recv_rtp pad and store */
2611   session->recv_rtp_sink =
2612       gst_element_get_request_pad (session->session, "recv_rtp_sink");
2613   if (session->recv_rtp_sink == NULL)
2614     goto pad_failed;
2615
2616   g_signal_connect (session->recv_rtp_sink, "notify::caps",
2617       (GCallback) caps_changed, session);
2618
2619   GST_DEBUG_OBJECT (rtpbin, "getting RTP src pad");
2620   /* get srcpad, link to SSRCDemux */
2621   session->recv_rtp_src =
2622       gst_element_get_static_pad (session->session, "recv_rtp_src");
2623   if (session->recv_rtp_src == NULL)
2624     goto pad_failed;
2625
2626   GST_DEBUG_OBJECT (rtpbin, "getting demuxer RTP sink pad");
2627   sinkdpad = gst_element_get_static_pad (session->demux, "sink");
2628   GST_DEBUG_OBJECT (rtpbin, "linking demuxer RTP sink pad");
2629   lres = gst_pad_link (session->recv_rtp_src, sinkdpad);
2630   gst_object_unref (sinkdpad);
2631   if (lres != GST_PAD_LINK_OK)
2632     goto link_failed;
2633
2634   /* connect to the new-ssrc-pad signal of the SSRC demuxer */
2635   session->demux_newpad_sig = g_signal_connect (session->demux,
2636       "new-ssrc-pad", (GCallback) new_ssrc_pad_found, session);
2637   session->demux_padremoved_sig = g_signal_connect (session->demux,
2638       "removed-ssrc-pad", (GCallback) ssrc_demux_pad_removed, session);
2639
2640   GST_DEBUG_OBJECT (rtpbin, "ghosting session sink pad");
2641   session->recv_rtp_sink_ghost =
2642       gst_ghost_pad_new_from_template (name, session->recv_rtp_sink, templ);
2643   gst_pad_set_active (session->recv_rtp_sink_ghost, TRUE);
2644   gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), session->recv_rtp_sink_ghost);
2645
2646   return session->recv_rtp_sink_ghost;
2647
2648   /* ERRORS */
2649 no_name:
2650   {
2651     g_warning ("rtpbin: invalid name given");
2652     return NULL;
2653   }
2654 create_error:
2655   {
2656     /* create_session already warned */
2657     return NULL;
2658   }
2659 pad_failed:
2660   {
2661     g_warning ("rtpbin: failed to get session pad");
2662     return NULL;
2663   }
2664 link_failed:
2665   {
2666     g_warning ("rtpbin: failed to link pads");
2667     return NULL;
2668   }
2669 }
2670
2671 static void
2672 remove_recv_rtp (GstRtpBin * rtpbin, GstRtpBinSession * session)
2673 {
2674   if (session->demux_newpad_sig) {
2675     g_signal_handler_disconnect (session->demux, session->demux_newpad_sig);
2676     session->demux_newpad_sig = 0;
2677   }
2678   if (session->demux_padremoved_sig) {
2679     g_signal_handler_disconnect (session->demux, session->demux_padremoved_sig);
2680     session->demux_padremoved_sig = 0;
2681   }
2682   if (session->recv_rtp_src) {
2683     gst_object_unref (session->recv_rtp_src);
2684     session->recv_rtp_src = NULL;
2685   }
2686   if (session->recv_rtp_sink) {
2687     gst_element_release_request_pad (session->session, session->recv_rtp_sink);
2688     gst_object_unref (session->recv_rtp_sink);
2689     session->recv_rtp_sink = NULL;
2690   }
2691   if (session->recv_rtp_sink_ghost) {
2692     gst_pad_set_active (session->recv_rtp_sink_ghost, FALSE);
2693     gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin),
2694         session->recv_rtp_sink_ghost);
2695     session->recv_rtp_sink_ghost = NULL;
2696   }
2697 }
2698
2699 /* Create a pad for receiving RTCP for the session in @name. Must be called with
2700  * RTP_BIN_LOCK.
2701  */
2702 static GstPad *
2703 create_recv_rtcp (GstRtpBin * rtpbin, GstPadTemplate * templ,
2704     const gchar * name)
2705 {
2706   guint sessid;
2707   GstRtpBinSession *session;
2708   GstPad *sinkdpad;
2709   GstPadLinkReturn lres;
2710
2711   /* first get the session number */
2712   if (name == NULL || sscanf (name, "recv_rtcp_sink_%u", &sessid) != 1)
2713     goto no_name;
2714
2715   GST_DEBUG_OBJECT (rtpbin, "finding session %d", sessid);
2716
2717   /* get or create the session */
2718   session = find_session_by_id (rtpbin, sessid);
2719   if (!session) {
2720     GST_DEBUG_OBJECT (rtpbin, "creating session %d", sessid);
2721     /* create session now */
2722     session = create_session (rtpbin, sessid);
2723     if (session == NULL)
2724       goto create_error;
2725   }
2726
2727   /* check if pad was requested */
2728   if (session->recv_rtcp_sink_ghost != NULL)
2729     return session->recv_rtcp_sink_ghost;
2730
2731   /* get recv_rtp pad and store */
2732   GST_DEBUG_OBJECT (rtpbin, "getting RTCP sink pad");
2733   session->recv_rtcp_sink =
2734       gst_element_get_request_pad (session->session, "recv_rtcp_sink");
2735   if (session->recv_rtcp_sink == NULL)
2736     goto pad_failed;
2737
2738   /* get srcpad, link to SSRCDemux */
2739   GST_DEBUG_OBJECT (rtpbin, "getting sync src pad");
2740   session->sync_src = gst_element_get_static_pad (session->session, "sync_src");
2741   if (session->sync_src == NULL)
2742     goto pad_failed;
2743
2744   GST_DEBUG_OBJECT (rtpbin, "getting demuxer RTCP sink pad");
2745   sinkdpad = gst_element_get_static_pad (session->demux, "rtcp_sink");
2746   lres = gst_pad_link (session->sync_src, sinkdpad);
2747   gst_object_unref (sinkdpad);
2748   if (lres != GST_PAD_LINK_OK)
2749     goto link_failed;
2750
2751   session->recv_rtcp_sink_ghost =
2752       gst_ghost_pad_new_from_template (name, session->recv_rtcp_sink, templ);
2753   gst_pad_set_active (session->recv_rtcp_sink_ghost, TRUE);
2754   gst_element_add_pad (GST_ELEMENT_CAST (rtpbin),
2755       session->recv_rtcp_sink_ghost);
2756
2757   return session->recv_rtcp_sink_ghost;
2758
2759   /* ERRORS */
2760 no_name:
2761   {
2762     g_warning ("rtpbin: invalid name given");
2763     return NULL;
2764   }
2765 create_error:
2766   {
2767     /* create_session already warned */
2768     return NULL;
2769   }
2770 pad_failed:
2771   {
2772     g_warning ("rtpbin: failed to get session pad");
2773     return NULL;
2774   }
2775 link_failed:
2776   {
2777     g_warning ("rtpbin: failed to link pads");
2778     return NULL;
2779   }
2780 }
2781
2782 static void
2783 remove_recv_rtcp (GstRtpBin * rtpbin, GstRtpBinSession * session)
2784 {
2785   if (session->recv_rtcp_sink_ghost) {
2786     gst_pad_set_active (session->recv_rtcp_sink_ghost, FALSE);
2787     gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin),
2788         session->recv_rtcp_sink_ghost);
2789     session->recv_rtcp_sink_ghost = NULL;
2790   }
2791   if (session->sync_src) {
2792     /* releasing the request pad should also unref the sync pad */
2793     gst_object_unref (session->sync_src);
2794     session->sync_src = NULL;
2795   }
2796   if (session->recv_rtcp_sink) {
2797     gst_element_release_request_pad (session->session, session->recv_rtcp_sink);
2798     gst_object_unref (session->recv_rtcp_sink);
2799     session->recv_rtcp_sink = NULL;
2800   }
2801 }
2802
2803 /* Create a pad for sending RTP for the session in @name. Must be called with
2804  * RTP_BIN_LOCK.
2805  */
2806 static GstPad *
2807 create_send_rtp (GstRtpBin * rtpbin, GstPadTemplate * templ, const gchar * name)
2808 {
2809   gchar *gname;
2810   guint sessid;
2811   GstRtpBinSession *session;
2812   GstElementClass *klass;
2813
2814   /* first get the session number */
2815   if (name == NULL || sscanf (name, "send_rtp_sink_%u", &sessid) != 1)
2816     goto no_name;
2817
2818   /* get or create session */
2819   session = find_session_by_id (rtpbin, sessid);
2820   if (!session) {
2821     /* create session now */
2822     session = create_session (rtpbin, sessid);
2823     if (session == NULL)
2824       goto create_error;
2825   }
2826
2827   /* check if pad was requested */
2828   if (session->send_rtp_sink_ghost != NULL)
2829     return session->send_rtp_sink_ghost;
2830
2831   /* get send_rtp pad and store */
2832   session->send_rtp_sink =
2833       gst_element_get_request_pad (session->session, "send_rtp_sink");
2834   if (session->send_rtp_sink == NULL)
2835     goto pad_failed;
2836
2837   session->send_rtp_sink_ghost =
2838       gst_ghost_pad_new_from_template (name, session->send_rtp_sink, templ);
2839   gst_pad_set_active (session->send_rtp_sink_ghost, TRUE);
2840   gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), session->send_rtp_sink_ghost);
2841
2842   /* get srcpad */
2843   session->send_rtp_src =
2844       gst_element_get_static_pad (session->session, "send_rtp_src");
2845   if (session->send_rtp_src == NULL)
2846     goto no_srcpad;
2847
2848   /* ghost the new source pad */
2849   klass = GST_ELEMENT_GET_CLASS (rtpbin);
2850   gname = g_strdup_printf ("send_rtp_src_%u", sessid);
2851   templ = gst_element_class_get_pad_template (klass, "send_rtp_src_%u");
2852   session->send_rtp_src_ghost =
2853       gst_ghost_pad_new_from_template (gname, session->send_rtp_src, templ);
2854   gst_pad_set_active (session->send_rtp_src_ghost, TRUE);
2855   gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), session->send_rtp_src_ghost);
2856   g_free (gname);
2857
2858   return session->send_rtp_sink_ghost;
2859
2860   /* ERRORS */
2861 no_name:
2862   {
2863     g_warning ("rtpbin: invalid name given");
2864     return NULL;
2865   }
2866 create_error:
2867   {
2868     /* create_session already warned */
2869     return NULL;
2870   }
2871 pad_failed:
2872   {
2873     g_warning ("rtpbin: failed to get session pad for session %d", sessid);
2874     return NULL;
2875   }
2876 no_srcpad:
2877   {
2878     g_warning ("rtpbin: failed to get rtp source pad for session %d", sessid);
2879     return NULL;
2880   }
2881 }
2882
2883 static void
2884 remove_send_rtp (GstRtpBin * rtpbin, GstRtpBinSession * session)
2885 {
2886   if (session->send_rtp_src_ghost) {
2887     gst_pad_set_active (session->send_rtp_src_ghost, FALSE);
2888     gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin),
2889         session->send_rtp_src_ghost);
2890     session->send_rtp_src_ghost = NULL;
2891   }
2892   if (session->send_rtp_src) {
2893     gst_object_unref (session->send_rtp_src);
2894     session->send_rtp_src = NULL;
2895   }
2896   if (session->send_rtp_sink) {
2897     gst_element_release_request_pad (GST_ELEMENT_CAST (session->session),
2898         session->send_rtp_sink);
2899     gst_object_unref (session->send_rtp_sink);
2900     session->send_rtp_sink = NULL;
2901   }
2902   if (session->send_rtp_sink_ghost) {
2903     gst_pad_set_active (session->send_rtp_sink_ghost, FALSE);
2904     gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin),
2905         session->send_rtp_sink_ghost);
2906     session->send_rtp_sink_ghost = NULL;
2907   }
2908 }
2909
2910 /* Create a pad for sending RTCP for the session in @name. Must be called with
2911  * RTP_BIN_LOCK.
2912  */
2913 static GstPad *
2914 create_rtcp (GstRtpBin * rtpbin, GstPadTemplate * templ, const gchar * name)
2915 {
2916   guint sessid;
2917   GstRtpBinSession *session;
2918
2919   /* first get the session number */
2920   if (name == NULL || sscanf (name, "send_rtcp_src_%u", &sessid) != 1)
2921     goto no_name;
2922
2923   /* get or create session */
2924   session = find_session_by_id (rtpbin, sessid);
2925   if (!session)
2926     goto no_session;
2927
2928   /* check if pad was requested */
2929   if (session->send_rtcp_src_ghost != NULL)
2930     return session->send_rtcp_src_ghost;
2931
2932   /* get rtcp_src pad and store */
2933   session->send_rtcp_src =
2934       gst_element_get_request_pad (session->session, "send_rtcp_src");
2935   if (session->send_rtcp_src == NULL)
2936     goto pad_failed;
2937
2938   session->send_rtcp_src_ghost =
2939       gst_ghost_pad_new_from_template (name, session->send_rtcp_src, templ);
2940   gst_pad_set_active (session->send_rtcp_src_ghost, TRUE);
2941   gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), session->send_rtcp_src_ghost);
2942
2943   return session->send_rtcp_src_ghost;
2944
2945   /* ERRORS */
2946 no_name:
2947   {
2948     g_warning ("rtpbin: invalid name given");
2949     return NULL;
2950   }
2951 no_session:
2952   {
2953     g_warning ("rtpbin: session with id %d does not exist", sessid);
2954     return NULL;
2955   }
2956 pad_failed:
2957   {
2958     g_warning ("rtpbin: failed to get rtcp pad for session %d", sessid);
2959     return NULL;
2960   }
2961 }
2962
2963 static void
2964 remove_rtcp (GstRtpBin * rtpbin, GstRtpBinSession * session)
2965 {
2966   if (session->send_rtcp_src_ghost) {
2967     gst_pad_set_active (session->send_rtcp_src_ghost, FALSE);
2968     gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin),
2969         session->send_rtcp_src_ghost);
2970     session->send_rtcp_src_ghost = NULL;
2971   }
2972   if (session->send_rtcp_src) {
2973     gst_element_release_request_pad (session->session, session->send_rtcp_src);
2974     gst_object_unref (session->send_rtcp_src);
2975     session->send_rtcp_src = NULL;
2976   }
2977 }
2978
2979 /* If the requested name is NULL we should create a name with
2980  * the session number assuming we want the lowest posible session
2981  * with a free pad like the template */
2982 static gchar *
2983 gst_rtp_bin_get_free_pad_name (GstElement * element, GstPadTemplate * templ)
2984 {
2985   gboolean name_found = FALSE;
2986   gint session = 0;
2987   GstIterator *pad_it = NULL;
2988   gchar *pad_name = NULL;
2989   GValue data = { 0, };
2990
2991   GST_DEBUG_OBJECT (element, "find a free pad name for template");
2992   while (!name_found) {
2993     gboolean done = FALSE;
2994
2995     g_free (pad_name);
2996     pad_name = g_strdup_printf (templ->name_template, session++);
2997     pad_it = gst_element_iterate_pads (GST_ELEMENT (element));
2998     name_found = TRUE;
2999     while (!done) {
3000       switch (gst_iterator_next (pad_it, &data)) {
3001         case GST_ITERATOR_OK:
3002         {
3003           GstPad *pad;
3004           gchar *name;
3005
3006           pad = g_value_get_object (&data);
3007           name = gst_pad_get_name (pad);
3008
3009           if (strcmp (name, pad_name) == 0) {
3010             done = TRUE;
3011             name_found = FALSE;
3012           }
3013           g_free (name);
3014           g_value_reset (&data);
3015           break;
3016         }
3017         case GST_ITERATOR_ERROR:
3018         case GST_ITERATOR_RESYNC:
3019           /* restart iteration */
3020           done = TRUE;
3021           name_found = FALSE;
3022           session = 0;
3023           break;
3024         case GST_ITERATOR_DONE:
3025           done = TRUE;
3026           break;
3027       }
3028     }
3029     g_value_unset (&data);
3030     gst_iterator_free (pad_it);
3031   }
3032
3033   GST_DEBUG_OBJECT (element, "free pad name found: '%s'", pad_name);
3034   return pad_name;
3035 }
3036
3037 /*
3038  */
3039 static GstPad *
3040 gst_rtp_bin_request_new_pad (GstElement * element,
3041     GstPadTemplate * templ, const gchar * name, const GstCaps * caps)
3042 {
3043   GstRtpBin *rtpbin;
3044   GstElementClass *klass;
3045   GstPad *result;
3046
3047   gchar *pad_name = NULL;
3048
3049   g_return_val_if_fail (templ != NULL, NULL);
3050   g_return_val_if_fail (GST_IS_RTP_BIN (element), NULL);
3051
3052   rtpbin = GST_RTP_BIN (element);
3053   klass = GST_ELEMENT_GET_CLASS (element);
3054
3055   GST_RTP_BIN_LOCK (rtpbin);
3056
3057   if (name == NULL) {
3058     /* use a free pad name */
3059     pad_name = gst_rtp_bin_get_free_pad_name (element, templ);
3060   } else {
3061     /* use the provided name */
3062     pad_name = g_strdup (name);
3063   }
3064
3065   GST_DEBUG_OBJECT (rtpbin, "Trying to request a pad with name %s", pad_name);
3066
3067   /* figure out the template */
3068   if (templ == gst_element_class_get_pad_template (klass, "recv_rtp_sink_%u")) {
3069     result = create_recv_rtp (rtpbin, templ, pad_name);
3070   } else if (templ == gst_element_class_get_pad_template (klass,
3071           "recv_rtcp_sink_%u")) {
3072     result = create_recv_rtcp (rtpbin, templ, pad_name);
3073   } else if (templ == gst_element_class_get_pad_template (klass,
3074           "send_rtp_sink_%u")) {
3075     result = create_send_rtp (rtpbin, templ, pad_name);
3076   } else if (templ == gst_element_class_get_pad_template (klass,
3077           "send_rtcp_src_%u")) {
3078     result = create_rtcp (rtpbin, templ, pad_name);
3079   } else
3080     goto wrong_template;
3081
3082   g_free (pad_name);
3083   GST_RTP_BIN_UNLOCK (rtpbin);
3084
3085   return result;
3086
3087   /* ERRORS */
3088 wrong_template:
3089   {
3090     g_free (pad_name);
3091     GST_RTP_BIN_UNLOCK (rtpbin);
3092     g_warning ("rtpbin: this is not our template");
3093     return NULL;
3094   }
3095 }
3096
3097 static void
3098 gst_rtp_bin_release_pad (GstElement * element, GstPad * pad)
3099 {
3100   GstRtpBinSession *session;
3101   GstRtpBin *rtpbin;
3102
3103   g_return_if_fail (GST_IS_GHOST_PAD (pad));
3104   g_return_if_fail (GST_IS_RTP_BIN (element));
3105
3106   rtpbin = GST_RTP_BIN (element);
3107
3108   GST_RTP_BIN_LOCK (rtpbin);
3109   GST_DEBUG_OBJECT (rtpbin, "Trying to release pad %s:%s",
3110       GST_DEBUG_PAD_NAME (pad));
3111
3112   if (!(session = find_session_by_pad (rtpbin, pad)))
3113     goto unknown_pad;
3114
3115   if (session->recv_rtp_sink_ghost == pad) {
3116     remove_recv_rtp (rtpbin, session);
3117   } else if (session->recv_rtcp_sink_ghost == pad) {
3118     remove_recv_rtcp (rtpbin, session);
3119   } else if (session->send_rtp_sink_ghost == pad) {
3120     remove_send_rtp (rtpbin, session);
3121   } else if (session->send_rtcp_src_ghost == pad) {
3122     remove_rtcp (rtpbin, session);
3123   }
3124
3125   /* no more request pads, free the complete session */
3126   if (session->recv_rtp_sink_ghost == NULL
3127       && session->recv_rtcp_sink_ghost == NULL
3128       && session->send_rtp_sink_ghost == NULL
3129       && session->send_rtcp_src_ghost == NULL) {
3130     GST_DEBUG_OBJECT (rtpbin, "no more pads for session %p", session);
3131     rtpbin->sessions = g_slist_remove (rtpbin->sessions, session);
3132     free_session (session, rtpbin);
3133   }
3134   GST_RTP_BIN_UNLOCK (rtpbin);
3135
3136   return;
3137
3138   /* ERROR */
3139 unknown_pad:
3140   {
3141     GST_RTP_BIN_UNLOCK (rtpbin);
3142     g_warning ("rtpbin: %s:%s is not one of our request pads",
3143         GST_DEBUG_PAD_NAME (pad));
3144     return;
3145   }
3146 }