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