2 * Copyright (C) <2007> Wim Taymans <wim.taymans@gmail.com>
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.
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.
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.
21 * SECTION:element-gstrtpbin
22 * @short_description: handle media from one RTP bin
23 * @see_also: gstrtpjitterbuffer, gstrtpsession, gstrtpptdemux, gstrtpssrcdemux
27 * RTP bin combines the functions of gstrtpsession, gstrtpssrcdemux, gstrtpjitterbuffer
28 * and gstrtpptdemux in one element. It allows for multiple RTP sessions that will
29 * be synchronized together using RTCP SR packets.
32 * gstrtpbin is configured with a number of request pads that define the
33 * functionality that is activated, similar to the gstrtpsession element.
36 * To use gstrtpbin as an RTP receiver, request a recv_rtp_sink_%%d pad. The session
37 * number must be specified in the pad name.
38 * Data received on the recv_rtp_sink_%%d pad will be processed in the gstrtpsession
39 * manager and after being validated forwarded on gstrtpssrcdemuxer element. Each
40 * RTP stream is demuxed based on the SSRC and send to a gstrtpjitterbuffer. After
41 * the packets are released from the jitterbuffer, they will be forwarded to a
42 * gstrtpptdemuxer element. The gstrtpptdemuxer element will demux the packets based
43 * on the payload type and will create a unique pad recv_rtp_src_%%d_%%d_%%d on
44 * gstrtpbin with the session number, SSRC and payload type respectively as the pad
48 * To also use gstrtpbin as an RTCP receiver, request a recv_rtcp_sink_%%d pad. The
49 * session number must be specified in the pad name.
52 * If you want the session manager to generate and send RTCP packets, request
53 * the send_rtcp_src_%%d pad with the session number in the pad name. Packet pushed
54 * on this pad contain SR/RR RTCP reports that should be sent to all participants
58 * To use gstrtpbin as a sender, request a send_rtp_sink_%%d pad, which will
59 * automatically create a send_rtp_src_%%d pad. If the session number is not provided,
60 * the pad from the lowest available session will be returned. The session manager will modify the
61 * SSRC in the RTP packets to its own SSRC and wil forward the packets on the
62 * send_rtp_src_%%d pad after updating its internal state.
65 * The session manager needs the clock-rate of the payload types it is handling
66 * and will signal the GstRtpSession::request-pt-map signal when it needs such a
67 * mapping. One can clear the cached values with the GstRtpSession::clear-pt-map
70 * <title>Example pipelines</title>
73 * gst-launch udpsrc port=5000 caps="application/x-rtp, ..." ! .recv_rtp_sink_0 \
74 * gstrtpbin ! rtptheoradepay ! theoradec ! xvimagesink
76 * Receive RTP data from port 5000 and send to the session 0 in gstrtpbin.
80 * gst-launch gstrtpbin name=rtpbin \
81 * v4l2src ! ffmpegcolorspace ! ffenc_h263 ! rtph263ppay ! rtpbin.send_rtp_sink_0 \
82 * rtpbin.send_rtp_src_0 ! udpsink port=5000 \
83 * rtpbin.send_rtcp_src_0 ! udpsink port=5001 sync=false async=false \
84 * udpsrc port=5005 ! rtpbin.recv_rtcp_sink_0 \
85 * audiotestsrc ! amrnbenc ! rtpamrpay ! rtpbin.send_rtp_sink_1 \
86 * rtpbin.send_rtp_src_1 ! udpsink port=5002 \
87 * rtpbin.send_rtcp_src_1 ! udpsink port=5003 sync=false async=false \
88 * udpsrc port=5007 ! rtpbin.recv_rtcp_sink_1
90 * Encode and payload H263 video captured from a v4l2src. Encode and payload AMR
91 * audio generated from audiotestsrc. The video is sent to session 0 in rtpbin
92 * and the audio is sent to session 1. Video packets are sent on UDP port 5000
93 * and audio packets on port 5002. The video RTCP packets for session 0 are sent
94 * on port 5001 and the audio RTCP packets for session 0 are sent on port 5003.
95 * RTCP packets for session 0 are received on port 5005 and RTCP for session 1
96 * is received on port 5007. Since RTCP packets from the sender should be sent
97 * as soon as possible and do not participate in preroll, sync=false and
98 * async=false is configured on udpsink
102 * gst-launch -v gstrtpbin name=rtpbin \
103 * udpsrc caps="application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding-name=(string)H263-1998" \
104 * port=5000 ! rtpbin.recv_rtp_sink_0 \
105 * rtpbin. ! rtph263pdepay ! ffdec_h263 ! xvimagesink \
106 * udpsrc port=5001 ! rtpbin.recv_rtcp_sink_0 \
107 * rtpbin.send_rtcp_src_0 ! udpsink port=5005 sync=false async=false \
108 * udpsrc caps="application/x-rtp,media=(string)audio,clock-rate=(int)8000,encoding-name=(string)AMR,encoding-params=(string)1,octet-align=(string)1" \
109 * port=5002 ! rtpbin.recv_rtp_sink_1 \
110 * rtpbin. ! rtpamrdepay ! amrnbdec ! alsasink \
111 * udpsrc port=5003 ! rtpbin.recv_rtcp_sink_1 \
112 * rtpbin.send_rtcp_src_1 ! udpsink port=5007 sync=false async=false
114 * Receive H263 on port 5000, send it through rtpbin in session 0, depayload,
115 * decode and display the video.
116 * Receive AMR on port 5002, send it through rtpbin in session 1, depayload,
117 * decode and play the audio.
118 * Receive server RTCP packets for session 0 on port 5001 and RTCP packets for
119 * session 1 on port 5003. These packets will be used for session management and
121 * Send RTCP reports for session 0 on port 5005 and RTCP reports for session 1
126 * Last reviewed on 2007-08-30 (0.10.6)
134 #include <gst/rtp/gstrtpbuffer.h>
135 #include <gst/rtp/gstrtcpbuffer.h>
137 #include "gstrtpbin-marshal.h"
138 #include "gstrtpbin.h"
140 GST_DEBUG_CATEGORY_STATIC (gst_rtp_bin_debug);
141 #define GST_CAT_DEFAULT gst_rtp_bin_debug
143 /* elementfactory information */
144 static const GstElementDetails rtpbin_details = GST_ELEMENT_DETAILS ("RTP Bin",
145 "Filter/Network/RTP",
146 "Implement an RTP bin",
147 "Wim Taymans <wim.taymans@gmail.com>");
150 static GstStaticPadTemplate rtpbin_recv_rtp_sink_template =
151 GST_STATIC_PAD_TEMPLATE ("recv_rtp_sink_%d",
154 GST_STATIC_CAPS ("application/x-rtp")
157 static GstStaticPadTemplate rtpbin_recv_rtcp_sink_template =
158 GST_STATIC_PAD_TEMPLATE ("recv_rtcp_sink_%d",
161 GST_STATIC_CAPS ("application/x-rtcp")
164 static GstStaticPadTemplate rtpbin_send_rtp_sink_template =
165 GST_STATIC_PAD_TEMPLATE ("send_rtp_sink_%d",
168 GST_STATIC_CAPS ("application/x-rtp")
172 static GstStaticPadTemplate rtpbin_recv_rtp_src_template =
173 GST_STATIC_PAD_TEMPLATE ("recv_rtp_src_%d_%d_%d",
176 GST_STATIC_CAPS ("application/x-rtp")
179 static GstStaticPadTemplate rtpbin_send_rtcp_src_template =
180 GST_STATIC_PAD_TEMPLATE ("send_rtcp_src_%d",
183 GST_STATIC_CAPS ("application/x-rtcp")
186 static GstStaticPadTemplate rtpbin_send_rtp_src_template =
187 GST_STATIC_PAD_TEMPLATE ("send_rtp_src_%d",
190 GST_STATIC_CAPS ("application/x-rtp")
193 /* padtemplate for the internal pad */
194 static GstStaticPadTemplate rtpbin_sync_sink_template =
195 GST_STATIC_PAD_TEMPLATE ("sink_%d",
198 GST_STATIC_CAPS ("application/x-rtcp")
201 #define GST_RTP_BIN_GET_PRIVATE(obj) \
202 (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_RTP_BIN, GstRtpBinPrivate))
204 #define GST_RTP_BIN_LOCK(bin) g_mutex_lock ((bin)->priv->bin_lock)
205 #define GST_RTP_BIN_UNLOCK(bin) g_mutex_unlock ((bin)->priv->bin_lock)
207 struct _GstRtpBinPrivate
211 GstClockTime ntp_ns_base;
214 /* signals and args */
217 SIGNAL_REQUEST_PT_MAP,
221 SIGNAL_ON_SSRC_COLLISION,
222 SIGNAL_ON_SSRC_VALIDATED,
223 SIGNAL_ON_SSRC_ACTIVE,
226 SIGNAL_ON_BYE_TIMEOUT,
231 #define DEFAULT_LATENCY_MS 200
232 #define DEFAULT_SDES_CNAME NULL
233 #define DEFAULT_SDES_NAME NULL
234 #define DEFAULT_SDES_EMAIL NULL
235 #define DEFAULT_SDES_PHONE NULL
236 #define DEFAULT_SDES_LOCATION NULL
237 #define DEFAULT_SDES_TOOL NULL
238 #define DEFAULT_SDES_NOTE NULL
239 #define DEFAULT_DO_LOST FALSE
257 typedef struct _GstRtpBinSession GstRtpBinSession;
258 typedef struct _GstRtpBinStream GstRtpBinStream;
259 typedef struct _GstRtpBinClient GstRtpBinClient;
261 static guint gst_rtp_bin_signals[LAST_SIGNAL] = { 0 };
263 static GstCaps *pt_map_requested (GstElement * element, guint pt,
264 GstRtpBinSession * session);
265 static const gchar *sdes_type_to_name (GstRTCPSDESType type);
266 static void gst_rtp_bin_set_sdes_string (GstRtpBin * bin,
267 GstRTCPSDESType type, const gchar * data);
269 static void free_stream (GstRtpBinStream * stream);
271 /* Manages the RTP stream for one SSRC.
273 * We pipe the stream (comming from the SSRC demuxer) into a jitterbuffer.
274 * If we see an SDES RTCP packet that links multiple SSRCs together based on a
275 * common CNAME, we create a GstRtpBinClient structure to group the SSRCs
276 * together (see below).
278 struct _GstRtpBinStream
280 /* the SSRC of this stream */
286 /* the session this SSRC belongs to */
287 GstRtpBinSession *session;
289 /* the jitterbuffer of the SSRC */
292 /* the PT demuxer of the SSRC */
294 gulong demux_newpad_sig;
295 gulong demux_ptreq_sig;
296 gulong demux_pt_change_sig;
298 /* the internal pad we use to get RTCP sync messages */
302 guint64 last_extrtptime;
304 /* mapping to local RTP and NTP time */
311 guint64 clock_base_time;
314 gint64 prev_ts_offset;
318 #define GST_RTP_SESSION_LOCK(sess) g_mutex_lock ((sess)->lock)
319 #define GST_RTP_SESSION_UNLOCK(sess) g_mutex_unlock ((sess)->lock)
321 /* Manages the receiving end of the packets.
323 * There is one such structure for each RTP session (audio/video/...).
324 * We get the RTP/RTCP packets and stuff them into the session manager. From
325 * there they are pushed into an SSRC demuxer that splits the stream based on
326 * SSRC. Each of the SSRC streams go into their own jitterbuffer (managed with
327 * the GstRtpBinStream above).
329 struct _GstRtpBinSession
335 /* the session element */
337 /* the SSRC demuxer */
339 gulong demux_newpad_sig;
343 /* list of GstRtpBinStream */
346 /* mapping of payload type to caps */
349 /* the pads of the session */
350 GstPad *recv_rtp_sink;
351 GstPad *recv_rtp_src;
352 GstPad *recv_rtcp_sink;
354 GstPad *send_rtp_sink;
355 GstPad *send_rtp_src;
356 GstPad *send_rtcp_src;
359 /* Manages the RTP streams that come from one client and should therefore be
362 struct _GstRtpBinClient
364 /* the common CNAME for the streams */
375 /* find a session with the given id. Must be called with RTP_BIN_LOCK */
376 static GstRtpBinSession *
377 find_session_by_id (GstRtpBin * rtpbin, gint id)
381 for (walk = rtpbin->sessions; walk; walk = g_slist_next (walk)) {
382 GstRtpBinSession *sess = (GstRtpBinSession *) walk->data;
391 on_new_ssrc (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
393 g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_NEW_SSRC], 0,
398 on_ssrc_collision (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
400 g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_SSRC_COLLISION], 0,
405 on_ssrc_validated (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
407 g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_SSRC_VALIDATED], 0,
412 on_ssrc_active (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
414 g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_SSRC_ACTIVE], 0,
419 on_ssrc_sdes (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
421 g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_SSRC_SDES], 0,
426 on_bye_ssrc (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
428 g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_BYE_SSRC], 0,
433 on_bye_timeout (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
435 g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_BYE_TIMEOUT], 0,
440 on_timeout (GstElement * session, guint32 ssrc, GstRtpBinSession * sess)
442 g_signal_emit (sess->bin, gst_rtp_bin_signals[SIGNAL_ON_TIMEOUT], 0,
446 /* create a session with the given id. Must be called with RTP_BIN_LOCK */
447 static GstRtpBinSession *
448 create_session (GstRtpBin * rtpbin, gint id)
450 GstRtpBinSession *sess;
451 GstElement *session, *demux;
454 if (!(session = gst_element_factory_make ("gstrtpsession", NULL)))
457 if (!(demux = gst_element_factory_make ("gstrtpssrcdemux", NULL)))
460 sess = g_new0 (GstRtpBinSession, 1);
461 sess->lock = g_mutex_new ();
464 sess->session = session;
466 sess->ptmap = g_hash_table_new_full (NULL, NULL, NULL,
467 (GDestroyNotify) gst_caps_unref);
468 rtpbin->sessions = g_slist_prepend (rtpbin->sessions, sess);
470 /* set NTP base or new session */
471 g_object_set (session, "ntp-ns-base", rtpbin->priv->ntp_ns_base, NULL);
472 /* configure SDES items */
473 GST_OBJECT_LOCK (rtpbin);
474 for (i = GST_RTCP_SDES_CNAME; i < GST_RTCP_SDES_PRIV; i++) {
475 g_object_set (session, sdes_type_to_name (i), rtpbin->sdes[i], NULL);
477 GST_OBJECT_UNLOCK (rtpbin);
479 /* provide clock_rate to the session manager when needed */
480 g_signal_connect (session, "request-pt-map",
481 (GCallback) pt_map_requested, sess);
483 g_signal_connect (sess->session, "on-new-ssrc",
484 (GCallback) on_new_ssrc, sess);
485 g_signal_connect (sess->session, "on-ssrc-collision",
486 (GCallback) on_ssrc_collision, sess);
487 g_signal_connect (sess->session, "on-ssrc-validated",
488 (GCallback) on_ssrc_validated, sess);
489 g_signal_connect (sess->session, "on-ssrc-active",
490 (GCallback) on_ssrc_active, sess);
491 g_signal_connect (sess->session, "on-ssrc-sdes",
492 (GCallback) on_ssrc_sdes, sess);
493 g_signal_connect (sess->session, "on-bye-ssrc",
494 (GCallback) on_bye_ssrc, sess);
495 g_signal_connect (sess->session, "on-bye-timeout",
496 (GCallback) on_bye_timeout, sess);
497 g_signal_connect (sess->session, "on-timeout", (GCallback) on_timeout, sess);
499 /* FIXME, change state only to what's needed */
500 gst_bin_add (GST_BIN_CAST (rtpbin), session);
501 gst_element_set_state (session, GST_STATE_PLAYING);
502 gst_bin_add (GST_BIN_CAST (rtpbin), demux);
503 gst_element_set_state (demux, GST_STATE_PLAYING);
510 g_warning ("gstrtpbin: could not create gstrtpsession element");
515 gst_object_unref (session);
516 g_warning ("gstrtpbin: could not create gstrtpssrcdemux element");
522 free_session (GstRtpBinSession * sess)
528 gst_element_set_state (sess->session, GST_STATE_NULL);
529 gst_element_set_state (sess->demux, GST_STATE_NULL);
531 if (sess->recv_rtp_sink != NULL)
532 gst_element_release_request_pad (sess->session, sess->recv_rtp_sink);
533 if (sess->recv_rtp_src != NULL)
534 gst_object_unref (sess->recv_rtp_src);
535 if (sess->recv_rtcp_sink != NULL)
536 gst_element_release_request_pad (sess->session, sess->recv_rtcp_sink);
537 if (sess->sync_src != NULL)
538 gst_object_unref (sess->sync_src);
539 if (sess->send_rtp_sink != NULL)
540 gst_element_release_request_pad (sess->session, sess->send_rtp_sink);
541 if (sess->send_rtp_src != NULL)
542 gst_object_unref (sess->send_rtp_src);
543 if (sess->send_rtcp_src != NULL)
544 gst_element_release_request_pad (sess->session, sess->send_rtcp_src);
546 gst_bin_remove (GST_BIN_CAST (bin), sess->session);
547 gst_bin_remove (GST_BIN_CAST (bin), sess->demux);
549 g_slist_foreach (sess->streams, (GFunc) free_stream, NULL);
550 g_slist_free (sess->streams);
552 g_mutex_free (sess->lock);
553 g_hash_table_destroy (sess->ptmap);
555 bin->sessions = g_slist_remove (bin->sessions, sess);
561 static GstRtpBinStream *
562 find_stream_by_ssrc (GstRtpBinSession * session, guint32 ssrc)
566 for (walk = session->streams; walk; walk = g_slist_next (walk)) {
567 GstRtpBinStream *stream = (GstRtpBinStream *) walk->data;
569 if (stream->ssrc == ssrc)
576 /* get the payload type caps for the specific payload @pt in @session */
578 get_pt_map (GstRtpBinSession * session, guint pt)
580 GstCaps *caps = NULL;
583 GValue args[3] = { {0}, {0}, {0} };
585 GST_DEBUG ("searching pt %d in cache", pt);
587 GST_RTP_SESSION_LOCK (session);
589 /* first look in the cache */
590 caps = g_hash_table_lookup (session->ptmap, GINT_TO_POINTER (pt));
598 GST_DEBUG ("emiting signal for pt %d in session %d", pt, session->id);
600 /* not in cache, send signal to request caps */
601 g_value_init (&args[0], GST_TYPE_ELEMENT);
602 g_value_set_object (&args[0], bin);
603 g_value_init (&args[1], G_TYPE_UINT);
604 g_value_set_uint (&args[1], session->id);
605 g_value_init (&args[2], G_TYPE_UINT);
606 g_value_set_uint (&args[2], pt);
608 g_value_init (&ret, GST_TYPE_CAPS);
609 g_value_set_boxed (&ret, NULL);
611 g_signal_emitv (args, gst_rtp_bin_signals[SIGNAL_REQUEST_PT_MAP], 0, &ret);
613 g_value_unset (&args[0]);
614 g_value_unset (&args[1]);
615 g_value_unset (&args[2]);
616 caps = (GstCaps *) g_value_dup_boxed (&ret);
617 g_value_unset (&ret);
621 GST_DEBUG ("caching pt %d as %" GST_PTR_FORMAT, pt, caps);
623 /* store in cache, take additional ref */
624 g_hash_table_insert (session->ptmap, GINT_TO_POINTER (pt),
625 gst_caps_ref (caps));
628 GST_RTP_SESSION_UNLOCK (session);
635 GST_RTP_SESSION_UNLOCK (session);
636 GST_DEBUG ("no pt map could be obtained");
642 return_true (gpointer key, gpointer value, gpointer user_data)
648 gst_rtp_bin_clear_pt_map (GstRtpBin * bin)
650 GSList *sessions, *streams;
652 GST_RTP_BIN_LOCK (bin);
653 GST_DEBUG_OBJECT (bin, "clearing pt map");
654 for (sessions = bin->sessions; sessions; sessions = g_slist_next (sessions)) {
655 GstRtpBinSession *session = (GstRtpBinSession *) sessions->data;
657 GST_DEBUG_OBJECT (bin, "clearing session %p", session);
658 g_signal_emit_by_name (session->session, "clear-pt-map", NULL);
660 GST_RTP_SESSION_LOCK (session);
661 g_hash_table_foreach_remove (session->ptmap, return_true, NULL);
663 for (streams = session->streams; streams; streams = g_slist_next (streams)) {
664 GstRtpBinStream *stream = (GstRtpBinStream *) streams->data;
666 GST_DEBUG_OBJECT (bin, "clearing stream %p", stream);
667 g_signal_emit_by_name (stream->buffer, "clear-pt-map", NULL);
668 g_signal_emit_by_name (stream->demux, "clear-pt-map", NULL);
670 GST_RTP_SESSION_UNLOCK (session);
672 GST_RTP_BIN_UNLOCK (bin);
675 /* get a client with the given SDES name. Must be called with RTP_BIN_LOCK */
676 static GstRtpBinClient *
677 get_client (GstRtpBin * bin, guint8 len, guint8 * data, gboolean * created)
679 GstRtpBinClient *result = NULL;
682 for (walk = bin->clients; walk; walk = g_slist_next (walk)) {
683 GstRtpBinClient *client = (GstRtpBinClient *) walk->data;
685 if (len != client->cname_len)
688 if (!strncmp ((gchar *) data, client->cname, client->cname_len)) {
689 GST_DEBUG_OBJECT (bin, "found existing client %p with CNAME %s", client,
696 /* nothing found, create one */
697 if (result == NULL) {
698 result = g_new0 (GstRtpBinClient, 1);
699 result->cname = g_strndup ((gchar *) data, len);
700 result->cname_len = len;
701 result->min_delta = G_MAXINT64;
702 bin->clients = g_slist_prepend (bin->clients, result);
703 GST_DEBUG_OBJECT (bin, "created new client %p with CNAME %s", result,
710 free_client (GstRtpBinClient * client)
712 g_slist_free (client->streams);
713 g_free (client->cname);
717 /* associate a stream to the given CNAME. This will make sure all streams for
718 * that CNAME are synchronized together. */
720 gst_rtp_bin_associate (GstRtpBin * bin, GstRtpBinStream * stream, guint8 len,
723 GstRtpBinClient *client;
727 /* first find or create the CNAME */
728 GST_RTP_BIN_LOCK (bin);
729 client = get_client (bin, len, data, &created);
731 /* find stream in the client */
732 for (walk = client->streams; walk; walk = g_slist_next (walk)) {
733 GstRtpBinStream *ostream = (GstRtpBinStream *) walk->data;
735 if (ostream == stream)
738 /* not found, add it to the list */
740 GST_DEBUG_OBJECT (bin,
741 "new association of SSRC %08x with client %p with CNAME %s",
742 stream->ssrc, client, client->cname);
743 client->streams = g_slist_prepend (client->streams, stream);
746 GST_DEBUG_OBJECT (bin,
747 "found association of SSRC %08x with client %p with CNAME %s",
748 stream->ssrc, client, client->cname);
751 /* we can only continue if we know the local clock-base and clock-rate */
752 if (stream->clock_base == -1)
755 if (stream->clock_rate <= 0) {
757 GstCaps *caps = NULL;
758 GstStructure *s = NULL;
760 GST_RTP_SESSION_LOCK (stream->session);
761 pt = stream->last_pt;
762 GST_RTP_SESSION_UNLOCK (stream->session);
767 caps = get_pt_map (stream->session, pt);
771 s = gst_caps_get_structure (caps, 0);
772 gst_structure_get_int (s, "clock-rate", &stream->clock_rate);
773 gst_caps_unref (caps);
775 if (stream->clock_rate <= 0)
779 /* map last RTP time to local timeline using our clock-base */
780 stream->local_rtp = stream->last_extrtptime - stream->clock_base;
782 GST_DEBUG_OBJECT (bin,
783 "base %" G_GUINT64_FORMAT ", extrtptime %" G_GUINT64_FORMAT
784 ", local RTP %" G_GUINT64_FORMAT ", clock-rate %d", stream->clock_base,
785 stream->last_extrtptime, stream->local_rtp, stream->clock_rate);
787 /* calculate local NTP time in gstreamer timestamp */
789 gst_util_uint64_scale_int (stream->local_rtp, GST_SECOND,
791 stream->local_unix += stream->clock_base_time;
792 /* calculate delta between server and receiver */
793 stream->unix_delta = stream->last_unix - stream->local_unix;
795 GST_DEBUG_OBJECT (bin,
796 "local UNIX %" G_GUINT64_FORMAT ", remote UNIX %" G_GUINT64_FORMAT
797 ", delta %" G_GINT64_FORMAT, stream->local_unix, stream->last_unix,
800 /* recalc inter stream playout offset, but only if there are more than one
802 if (client->nstreams > 1) {
805 /* calculate the min of all deltas */
807 for (walk = client->streams; walk; walk = g_slist_next (walk)) {
808 GstRtpBinStream *ostream = (GstRtpBinStream *) walk->data;
810 if (ostream->unix_delta && ostream->unix_delta < min)
811 min = ostream->unix_delta;
814 GST_DEBUG_OBJECT (bin, "client %p min delta %" G_GINT64_FORMAT, client,
817 /* calculate offsets for each stream */
818 for (walk = client->streams; walk; walk = g_slist_next (walk)) {
819 GstRtpBinStream *ostream = (GstRtpBinStream *) walk->data;
821 if (ostream->unix_delta == 0)
824 ostream->ts_offset = ostream->unix_delta - min;
826 /* delta changed, see how much */
827 if (ostream->prev_ts_offset != ostream->ts_offset) {
830 if (ostream->prev_ts_offset > ostream->ts_offset)
831 diff = ostream->prev_ts_offset - ostream->ts_offset;
833 diff = ostream->ts_offset - ostream->prev_ts_offset;
835 /* only change diff when it changed more than 1 millisecond. This
836 * compensates for rounding errors in NTP to RTP timestamp
838 if (diff > GST_MSECOND)
839 g_object_set (ostream->buffer, "ts-offset", ostream->ts_offset, NULL);
841 ostream->prev_ts_offset = ostream->ts_offset;
843 GST_DEBUG_OBJECT (bin, "stream SSRC %08x, delta %" G_GINT64_FORMAT,
844 ostream->ssrc, ostream->ts_offset);
847 GST_RTP_BIN_UNLOCK (bin);
852 GST_WARNING_OBJECT (bin, "we have no clock-base");
853 GST_RTP_BIN_UNLOCK (bin);
858 GST_WARNING_OBJECT (bin, "we have no clock-rate");
859 GST_RTP_BIN_UNLOCK (bin);
864 #define GST_RTCP_BUFFER_FOR_PACKETS(b,buffer,packet) \
865 for ((b) = gst_rtcp_buffer_get_first_packet ((buffer), (packet)); (b); \
866 (b) = gst_rtcp_packet_move_to_next ((packet)))
868 #define GST_RTCP_SDES_FOR_ITEMS(b,packet) \
869 for ((b) = gst_rtcp_packet_sdes_first_item ((packet)); (b); \
870 (b) = gst_rtcp_packet_sdes_next_item ((packet)))
872 #define GST_RTCP_SDES_FOR_ENTRIES(b,packet) \
873 for ((b) = gst_rtcp_packet_sdes_first_entry ((packet)); (b); \
874 (b) = gst_rtcp_packet_sdes_next_entry ((packet)))
877 gst_rtp_bin_sync_chain (GstPad * pad, GstBuffer * buffer)
879 GstFlowReturn ret = GST_FLOW_OK;
880 GstRtpBinStream *stream;
882 GstRTCPPacket packet;
886 gboolean have_sr, have_sdes;
889 stream = gst_pad_get_element_private (pad);
892 GST_DEBUG_OBJECT (bin, "received sync packet");
894 if (!gst_rtcp_buffer_validate (buffer))
899 GST_RTCP_BUFFER_FOR_PACKETS (more, buffer, &packet) {
900 /* first packet must be SR or RR or else the validate would have failed */
901 switch (gst_rtcp_packet_get_type (&packet)) {
902 case GST_RTCP_TYPE_SR:
903 /* only parse first. There is only supposed to be one SR in the packet
904 * but we will deal with malformed packets gracefully */
907 /* get NTP and RTP times */
908 gst_rtcp_packet_sr_get_sender_info (&packet, &ssrc, &ntptime, &rtptime,
911 GST_DEBUG_OBJECT (bin, "received sync packet from SSRC %08x", ssrc);
912 /* ignore SR that is not ours */
913 if (ssrc != stream->ssrc)
918 /* store values in the stream */
919 stream->have_sync = TRUE;
920 stream->last_unix = gst_rtcp_ntp_to_unix (ntptime);
921 /* use extended timestamp */
922 gst_rtp_buffer_ext_timestamp (&stream->last_extrtptime, rtptime);
924 case GST_RTCP_TYPE_SDES:
926 gboolean more_items, more_entries;
928 /* only deal with first SDES, there is only supposed to be one SDES in
929 * the RTCP packet but we deal with bad packets gracefully. Also bail
930 * out if we have not seen an SR item yet. */
931 if (have_sdes || !have_sr)
934 GST_RTCP_SDES_FOR_ITEMS (more_items, &packet) {
935 /* skip items that are not about the SSRC of the sender */
936 if (gst_rtcp_packet_sdes_get_ssrc (&packet) != ssrc)
939 /* find the CNAME entry */
940 GST_RTCP_SDES_FOR_ENTRIES (more_entries, &packet) {
941 GstRTCPSDESType type;
945 gst_rtcp_packet_sdes_get_entry (&packet, &type, &len, &data);
947 if (type == GST_RTCP_SDES_CNAME) {
948 stream->clock_base = GST_BUFFER_OFFSET (buffer);
949 stream->clock_base_time = GST_BUFFER_OFFSET_END (buffer);
950 /* associate the stream to CNAME */
951 gst_rtp_bin_associate (bin, stream, len, data);
959 /* we can ignore these packets */
964 gst_buffer_unref (buffer);
971 /* this is fatal and should be filtered earlier */
972 GST_ELEMENT_ERROR (bin, STREAM, DECODE, (NULL),
973 ("invalid RTCP packet received"));
974 gst_buffer_unref (buffer);
975 return GST_FLOW_ERROR;
979 /* create a new stream with @ssrc in @session. Must be called with
980 * RTP_SESSION_LOCK. */
981 static GstRtpBinStream *
982 create_stream (GstRtpBinSession * session, guint32 ssrc)
984 GstElement *buffer, *demux;
985 GstRtpBinStream *stream;
986 GstPadTemplate *templ;
989 if (!(buffer = gst_element_factory_make ("gstrtpjitterbuffer", NULL)))
990 goto no_jitterbuffer;
992 if (!(demux = gst_element_factory_make ("gstrtpptdemux", NULL)))
995 stream = g_new0 (GstRtpBinStream, 1);
997 stream->bin = session->bin;
998 stream->session = session;
999 stream->buffer = buffer;
1000 stream->demux = demux;
1001 stream->last_extrtptime = -1;
1002 stream->last_pt = -1;
1003 stream->have_sync = FALSE;
1004 session->streams = g_slist_prepend (session->streams, stream);
1006 /* make an internal sinkpad for RTCP sync packets. Take ownership of the
1007 * pad. We will link this pad later. */
1008 padname = g_strdup_printf ("sync_%d", ssrc);
1009 templ = gst_static_pad_template_get (&rtpbin_sync_sink_template);
1010 stream->sync_pad = gst_pad_new_from_template (templ, padname);
1011 gst_object_unref (templ);
1013 gst_object_ref (stream->sync_pad);
1014 gst_object_sink (stream->sync_pad);
1015 gst_pad_set_element_private (stream->sync_pad, stream);
1016 gst_pad_set_chain_function (stream->sync_pad, gst_rtp_bin_sync_chain);
1017 gst_pad_set_active (stream->sync_pad, TRUE);
1019 /* provide clock_rate to the jitterbuffer when needed */
1020 g_signal_connect (buffer, "request-pt-map",
1021 (GCallback) pt_map_requested, session);
1023 /* configure latency and packet lost */
1024 g_object_set (buffer, "latency", session->bin->latency, NULL);
1025 g_object_set (buffer, "do-lost", session->bin->do_lost, NULL);
1027 gst_bin_add (GST_BIN_CAST (session->bin), buffer);
1028 gst_element_set_state (buffer, GST_STATE_PLAYING);
1029 gst_bin_add (GST_BIN_CAST (session->bin), demux);
1030 gst_element_set_state (demux, GST_STATE_PLAYING);
1033 gst_element_link (buffer, demux);
1040 g_warning ("gstrtpbin: could not create gstrtpjitterbuffer element");
1045 gst_object_unref (buffer);
1046 g_warning ("gstrtpbin: could not create gstrtpptdemux element");
1052 free_stream (GstRtpBinStream * stream)
1054 GstRtpBinSession *session;
1056 session = stream->session;
1058 gst_element_set_state (stream->buffer, GST_STATE_NULL);
1059 gst_element_set_state (stream->demux, GST_STATE_NULL);
1061 gst_bin_remove (GST_BIN_CAST (session->bin), stream->buffer);
1062 gst_bin_remove (GST_BIN_CAST (session->bin), stream->demux);
1064 gst_object_unref (stream->sync_pad);
1066 session->streams = g_slist_remove (session->streams, stream);
1071 /* GObject vmethods */
1072 static void gst_rtp_bin_dispose (GObject * object);
1073 static void gst_rtp_bin_finalize (GObject * object);
1074 static void gst_rtp_bin_set_property (GObject * object, guint prop_id,
1075 const GValue * value, GParamSpec * pspec);
1076 static void gst_rtp_bin_get_property (GObject * object, guint prop_id,
1077 GValue * value, GParamSpec * pspec);
1079 /* GstElement vmethods */
1080 static GstClock *gst_rtp_bin_provide_clock (GstElement * element);
1081 static GstStateChangeReturn gst_rtp_bin_change_state (GstElement * element,
1082 GstStateChange transition);
1083 static GstPad *gst_rtp_bin_request_new_pad (GstElement * element,
1084 GstPadTemplate * templ, const gchar * name);
1085 static void gst_rtp_bin_release_pad (GstElement * element, GstPad * pad);
1086 static void gst_rtp_bin_handle_message (GstBin * bin, GstMessage * message);
1087 static void gst_rtp_bin_clear_pt_map (GstRtpBin * bin);
1089 GST_BOILERPLATE (GstRtpBin, gst_rtp_bin, GstBin, GST_TYPE_BIN);
1092 gst_rtp_bin_base_init (gpointer klass)
1094 GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
1097 gst_element_class_add_pad_template (element_class,
1098 gst_static_pad_template_get (&rtpbin_recv_rtp_sink_template));
1099 gst_element_class_add_pad_template (element_class,
1100 gst_static_pad_template_get (&rtpbin_recv_rtcp_sink_template));
1101 gst_element_class_add_pad_template (element_class,
1102 gst_static_pad_template_get (&rtpbin_send_rtp_sink_template));
1105 gst_element_class_add_pad_template (element_class,
1106 gst_static_pad_template_get (&rtpbin_recv_rtp_src_template));
1107 gst_element_class_add_pad_template (element_class,
1108 gst_static_pad_template_get (&rtpbin_send_rtcp_src_template));
1109 gst_element_class_add_pad_template (element_class,
1110 gst_static_pad_template_get (&rtpbin_send_rtp_src_template));
1112 gst_element_class_set_details (element_class, &rtpbin_details);
1116 gst_rtp_bin_class_init (GstRtpBinClass * klass)
1118 GObjectClass *gobject_class;
1119 GstElementClass *gstelement_class;
1120 GstBinClass *gstbin_class;
1122 gobject_class = (GObjectClass *) klass;
1123 gstelement_class = (GstElementClass *) klass;
1124 gstbin_class = (GstBinClass *) klass;
1126 g_type_class_add_private (klass, sizeof (GstRtpBinPrivate));
1128 gobject_class->dispose = gst_rtp_bin_dispose;
1129 gobject_class->finalize = gst_rtp_bin_finalize;
1130 gobject_class->set_property = gst_rtp_bin_set_property;
1131 gobject_class->get_property = gst_rtp_bin_get_property;
1133 g_object_class_install_property (gobject_class, PROP_LATENCY,
1134 g_param_spec_uint ("latency", "Buffer latency in ms",
1135 "Default amount of ms to buffer in the jitterbuffers", 0,
1136 G_MAXUINT, DEFAULT_LATENCY_MS, G_PARAM_READWRITE));
1139 * GstRtpBin::request-pt-map:
1140 * @rtpbin: the object which received the signal
1141 * @session: the session
1144 * Request the payload type as #GstCaps for @pt in @session.
1146 gst_rtp_bin_signals[SIGNAL_REQUEST_PT_MAP] =
1147 g_signal_new ("request-pt-map", G_TYPE_FROM_CLASS (klass),
1148 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, request_pt_map),
1149 NULL, NULL, gst_rtp_bin_marshal_BOXED__UINT_UINT, GST_TYPE_CAPS, 2,
1150 G_TYPE_UINT, G_TYPE_UINT);
1152 * GstRtpBin::clear-pt-map:
1153 * @rtpbin: the object which received the signal
1155 * Clear all previously cached pt-mapping obtained with
1156 * GstRtpBin::request-pt-map.
1158 gst_rtp_bin_signals[SIGNAL_CLEAR_PT_MAP] =
1159 g_signal_new ("clear-pt-map", G_TYPE_FROM_CLASS (klass),
1160 G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (GstRtpBinClass,
1161 clear_pt_map), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE,
1165 * GstRtpBin::on-new-ssrc:
1166 * @rtpbin: the object which received the signal
1167 * @session: the session
1170 * Notify of a new SSRC that entered @session.
1172 gst_rtp_bin_signals[SIGNAL_ON_NEW_SSRC] =
1173 g_signal_new ("on-new-ssrc", G_TYPE_FROM_CLASS (klass),
1174 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_new_ssrc),
1175 NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1176 G_TYPE_UINT, G_TYPE_UINT);
1178 * GstRtpBin::on-ssrc-collision:
1179 * @rtpbin: the object which received the signal
1180 * @session: the session
1183 * Notify when we have an SSRC collision
1185 gst_rtp_bin_signals[SIGNAL_ON_SSRC_COLLISION] =
1186 g_signal_new ("on-ssrc-collision", G_TYPE_FROM_CLASS (klass),
1187 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_ssrc_collision),
1188 NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1189 G_TYPE_UINT, G_TYPE_UINT);
1191 * GstRtpBin::on-ssrc-validated:
1192 * @rtpbin: the object which received the signal
1193 * @session: the session
1196 * Notify of a new SSRC that became validated.
1198 gst_rtp_bin_signals[SIGNAL_ON_SSRC_VALIDATED] =
1199 g_signal_new ("on-ssrc-validated", G_TYPE_FROM_CLASS (klass),
1200 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_ssrc_validated),
1201 NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1202 G_TYPE_UINT, G_TYPE_UINT);
1204 * GstRtpBin::on-ssrc-active:
1205 * @rtpbin: the object which received the signal
1206 * @session: the session
1209 * Notify of a SSRC that is active, i.e., sending RTCP.
1211 gst_rtp_bin_signals[SIGNAL_ON_SSRC_ACTIVE] =
1212 g_signal_new ("on-ssrc-active", G_TYPE_FROM_CLASS (klass),
1213 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_ssrc_active),
1214 NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1215 G_TYPE_UINT, G_TYPE_UINT);
1217 * GstRtpBin::on-ssrc-sdes:
1218 * @rtpbin: the object which received the signal
1219 * @session: the session
1222 * Notify of a SSRC that is active, i.e., sending RTCP.
1224 gst_rtp_bin_signals[SIGNAL_ON_SSRC_SDES] =
1225 g_signal_new ("on-ssrc-sdes", G_TYPE_FROM_CLASS (klass),
1226 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_ssrc_sdes),
1227 NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1228 G_TYPE_UINT, G_TYPE_UINT);
1231 * GstRtpBin::on-bye-ssrc:
1232 * @rtpbin: the object which received the signal
1233 * @session: the session
1236 * Notify of an SSRC that became inactive because of a BYE packet.
1238 gst_rtp_bin_signals[SIGNAL_ON_BYE_SSRC] =
1239 g_signal_new ("on-bye-ssrc", G_TYPE_FROM_CLASS (klass),
1240 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_bye_ssrc),
1241 NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1242 G_TYPE_UINT, G_TYPE_UINT);
1244 * GstRtpBin::on-bye-timeout:
1245 * @rtpbin: the object which received the signal
1246 * @session: the session
1249 * Notify of an SSRC that has timed out because of BYE
1251 gst_rtp_bin_signals[SIGNAL_ON_BYE_TIMEOUT] =
1252 g_signal_new ("on-bye-timeout", G_TYPE_FROM_CLASS (klass),
1253 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_bye_timeout),
1254 NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1255 G_TYPE_UINT, G_TYPE_UINT);
1257 * GstRtpBin::on-timeout:
1258 * @rtpbin: the object which received the signal
1259 * @session: the session
1262 * Notify of an SSRC that has timed out
1264 gst_rtp_bin_signals[SIGNAL_ON_TIMEOUT] =
1265 g_signal_new ("on-timeout", G_TYPE_FROM_CLASS (klass),
1266 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpBinClass, on_timeout),
1267 NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_UINT, G_TYPE_NONE, 2,
1268 G_TYPE_UINT, G_TYPE_UINT);
1270 g_object_class_install_property (gobject_class, PROP_SDES_CNAME,
1271 g_param_spec_string ("sdes-cname", "SDES CNAME",
1272 "The CNAME to put in SDES messages of this session",
1273 DEFAULT_SDES_CNAME, G_PARAM_READWRITE));
1275 g_object_class_install_property (gobject_class, PROP_SDES_NAME,
1276 g_param_spec_string ("sdes-name", "SDES NAME",
1277 "The NAME to put in SDES messages of this session",
1278 DEFAULT_SDES_NAME, G_PARAM_READWRITE));
1280 g_object_class_install_property (gobject_class, PROP_SDES_EMAIL,
1281 g_param_spec_string ("sdes-email", "SDES EMAIL",
1282 "The EMAIL to put in SDES messages of this session",
1283 DEFAULT_SDES_EMAIL, G_PARAM_READWRITE));
1285 g_object_class_install_property (gobject_class, PROP_SDES_PHONE,
1286 g_param_spec_string ("sdes-phone", "SDES PHONE",
1287 "The PHONE to put in SDES messages of this session",
1288 DEFAULT_SDES_PHONE, G_PARAM_READWRITE));
1290 g_object_class_install_property (gobject_class, PROP_SDES_LOCATION,
1291 g_param_spec_string ("sdes-location", "SDES LOCATION",
1292 "The LOCATION to put in SDES messages of this session",
1293 DEFAULT_SDES_LOCATION, G_PARAM_READWRITE));
1295 g_object_class_install_property (gobject_class, PROP_SDES_TOOL,
1296 g_param_spec_string ("sdes-tool", "SDES TOOL",
1297 "The TOOL to put in SDES messages of this session",
1298 DEFAULT_SDES_TOOL, G_PARAM_READWRITE));
1300 g_object_class_install_property (gobject_class, PROP_SDES_NOTE,
1301 g_param_spec_string ("sdes-note", "SDES NOTE",
1302 "The NOTE to put in SDES messages of this session",
1303 DEFAULT_SDES_NOTE, G_PARAM_READWRITE));
1305 g_object_class_install_property (gobject_class, PROP_DO_LOST,
1306 g_param_spec_boolean ("do-lost", "Do Lost",
1307 "Send an event downstream when a packet is lost", DEFAULT_DO_LOST,
1308 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
1310 gstelement_class->provide_clock =
1311 GST_DEBUG_FUNCPTR (gst_rtp_bin_provide_clock);
1312 gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_rtp_bin_change_state);
1313 gstelement_class->request_new_pad =
1314 GST_DEBUG_FUNCPTR (gst_rtp_bin_request_new_pad);
1315 gstelement_class->release_pad = GST_DEBUG_FUNCPTR (gst_rtp_bin_release_pad);
1317 gstbin_class->handle_message = GST_DEBUG_FUNCPTR (gst_rtp_bin_handle_message);
1319 klass->clear_pt_map = GST_DEBUG_FUNCPTR (gst_rtp_bin_clear_pt_map);
1321 GST_DEBUG_CATEGORY_INIT (gst_rtp_bin_debug, "rtpbin", 0, "RTP bin");
1325 gst_rtp_bin_init (GstRtpBin * rtpbin, GstRtpBinClass * klass)
1329 rtpbin->priv = GST_RTP_BIN_GET_PRIVATE (rtpbin);
1330 rtpbin->priv->bin_lock = g_mutex_new ();
1331 rtpbin->provided_clock = gst_system_clock_obtain ();
1333 rtpbin->latency = DEFAULT_LATENCY_MS;
1334 rtpbin->do_lost = DEFAULT_DO_LOST;
1336 /* some default SDES entries */
1337 str = g_strdup_printf ("%s@%s", g_get_user_name (), g_get_host_name ());
1338 gst_rtp_bin_set_sdes_string (rtpbin, GST_RTCP_SDES_CNAME, str);
1341 gst_rtp_bin_set_sdes_string (rtpbin, GST_RTCP_SDES_NAME, g_get_real_name ());
1342 gst_rtp_bin_set_sdes_string (rtpbin, GST_RTCP_SDES_TOOL, "GStreamer");
1346 gst_rtp_bin_dispose (GObject * object)
1350 rtpbin = GST_RTP_BIN (object);
1352 g_slist_foreach (rtpbin->sessions, (GFunc) free_session, NULL);
1353 g_slist_free (rtpbin->sessions);
1354 rtpbin->sessions = NULL;
1355 g_slist_foreach (rtpbin->clients, (GFunc) free_client, NULL);
1356 g_slist_free (rtpbin->clients);
1357 rtpbin->clients = NULL;
1359 G_OBJECT_CLASS (parent_class)->dispose (object);
1363 gst_rtp_bin_finalize (GObject * object)
1368 rtpbin = GST_RTP_BIN (object);
1370 for (i = 0; i < 9; i++)
1371 g_free (rtpbin->sdes[i]);
1373 g_mutex_free (rtpbin->priv->bin_lock);
1374 gst_object_unref (rtpbin->provided_clock);
1376 G_OBJECT_CLASS (parent_class)->finalize (object);
1379 static const gchar *
1380 sdes_type_to_name (GstRTCPSDESType type)
1382 const gchar *result;
1385 case GST_RTCP_SDES_CNAME:
1386 result = "sdes-cname";
1388 case GST_RTCP_SDES_NAME:
1389 result = "sdes-name";
1391 case GST_RTCP_SDES_EMAIL:
1392 result = "sdes-email";
1394 case GST_RTCP_SDES_PHONE:
1395 result = "sdes-phone";
1397 case GST_RTCP_SDES_LOC:
1398 result = "sdes-location";
1400 case GST_RTCP_SDES_TOOL:
1401 result = "sdes-tool";
1403 case GST_RTCP_SDES_NOTE:
1404 result = "sdes-note";
1406 case GST_RTCP_SDES_PRIV:
1407 result = "sdes-priv";
1417 gst_rtp_bin_set_sdes_string (GstRtpBin * bin, GstRTCPSDESType type,
1423 if (type < 0 || type > 8)
1426 GST_OBJECT_LOCK (bin);
1427 g_free (bin->sdes[type]);
1428 bin->sdes[type] = g_strdup (data);
1429 name = sdes_type_to_name (type);
1430 /* store in all sessions */
1431 for (item = bin->sessions; item; item = g_slist_next (item))
1432 g_object_set (item->data, name, bin->sdes[type], NULL);
1433 GST_OBJECT_UNLOCK (bin);
1437 gst_rtp_bin_get_sdes_string (GstRtpBin * bin, GstRTCPSDESType type)
1441 if (type < 0 || type > 8)
1444 GST_OBJECT_LOCK (bin);
1445 result = g_strdup (bin->sdes[type]);
1446 GST_OBJECT_UNLOCK (bin);
1452 gst_rtp_bin_set_property (GObject * object, guint prop_id,
1453 const GValue * value, GParamSpec * pspec)
1457 rtpbin = GST_RTP_BIN (object);
1461 GST_RTP_BIN_LOCK (rtpbin);
1462 rtpbin->latency = g_value_get_uint (value);
1463 GST_RTP_BIN_UNLOCK (rtpbin);
1465 case PROP_SDES_CNAME:
1466 gst_rtp_bin_set_sdes_string (rtpbin, GST_RTCP_SDES_CNAME,
1467 g_value_get_string (value));
1469 case PROP_SDES_NAME:
1470 gst_rtp_bin_set_sdes_string (rtpbin, GST_RTCP_SDES_NAME,
1471 g_value_get_string (value));
1473 case PROP_SDES_EMAIL:
1474 gst_rtp_bin_set_sdes_string (rtpbin, GST_RTCP_SDES_EMAIL,
1475 g_value_get_string (value));
1477 case PROP_SDES_PHONE:
1478 gst_rtp_bin_set_sdes_string (rtpbin, GST_RTCP_SDES_PHONE,
1479 g_value_get_string (value));
1481 case PROP_SDES_LOCATION:
1482 gst_rtp_bin_set_sdes_string (rtpbin, GST_RTCP_SDES_LOC,
1483 g_value_get_string (value));
1485 case PROP_SDES_TOOL:
1486 gst_rtp_bin_set_sdes_string (rtpbin, GST_RTCP_SDES_TOOL,
1487 g_value_get_string (value));
1489 case PROP_SDES_NOTE:
1490 gst_rtp_bin_set_sdes_string (rtpbin, GST_RTCP_SDES_NOTE,
1491 g_value_get_string (value));
1494 GST_RTP_BIN_LOCK (rtpbin);
1495 rtpbin->do_lost = g_value_get_boolean (value);
1496 GST_RTP_BIN_UNLOCK (rtpbin);
1499 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1505 gst_rtp_bin_get_property (GObject * object, guint prop_id,
1506 GValue * value, GParamSpec * pspec)
1510 rtpbin = GST_RTP_BIN (object);
1514 GST_RTP_BIN_LOCK (rtpbin);
1515 g_value_set_uint (value, rtpbin->latency);
1516 GST_RTP_BIN_UNLOCK (rtpbin);
1518 case PROP_SDES_CNAME:
1519 g_value_take_string (value, gst_rtp_bin_get_sdes_string (rtpbin,
1520 GST_RTCP_SDES_CNAME));
1522 case PROP_SDES_NAME:
1523 g_value_take_string (value, gst_rtp_bin_get_sdes_string (rtpbin,
1524 GST_RTCP_SDES_NAME));
1526 case PROP_SDES_EMAIL:
1527 g_value_take_string (value, gst_rtp_bin_get_sdes_string (rtpbin,
1528 GST_RTCP_SDES_EMAIL));
1530 case PROP_SDES_PHONE:
1531 g_value_take_string (value, gst_rtp_bin_get_sdes_string (rtpbin,
1532 GST_RTCP_SDES_PHONE));
1534 case PROP_SDES_LOCATION:
1535 g_value_take_string (value, gst_rtp_bin_get_sdes_string (rtpbin,
1536 GST_RTCP_SDES_LOC));
1538 case PROP_SDES_TOOL:
1539 g_value_take_string (value, gst_rtp_bin_get_sdes_string (rtpbin,
1540 GST_RTCP_SDES_TOOL));
1542 case PROP_SDES_NOTE:
1543 g_value_take_string (value, gst_rtp_bin_get_sdes_string (rtpbin,
1544 GST_RTCP_SDES_NOTE));
1547 GST_RTP_BIN_LOCK (rtpbin);
1548 g_value_set_boolean (value, rtpbin->do_lost);
1549 GST_RTP_BIN_UNLOCK (rtpbin);
1552 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1558 gst_rtp_bin_provide_clock (GstElement * element)
1562 rtpbin = GST_RTP_BIN (element);
1564 return GST_CLOCK_CAST (gst_object_ref (rtpbin->provided_clock));
1568 gst_rtp_bin_handle_message (GstBin * bin, GstMessage * message)
1572 rtpbin = GST_RTP_BIN (bin);
1574 switch (GST_MESSAGE_TYPE (message)) {
1575 case GST_MESSAGE_ELEMENT:
1577 const GstStructure *s = gst_message_get_structure (message);
1579 /* we change the structure name and add the session ID to it */
1580 if (gst_structure_has_name (s, "GstRTPSessionSDES")) {
1583 /* find the session, the message source has it */
1584 for (walk = rtpbin->sessions; walk; walk = g_slist_next (walk)) {
1585 GstRtpBinSession *sess = (GstRtpBinSession *) walk->data;
1587 /* if we found the session, change message. else we exit the loop and
1588 * leave the message unchanged */
1589 if (GST_OBJECT_CAST (sess->session) == GST_MESSAGE_SRC (message)) {
1590 message = gst_message_make_writable (message);
1591 s = gst_message_get_structure (message);
1593 gst_structure_set_name ((GstStructure *) s, "GstRTPBinSDES");
1595 gst_structure_set ((GstStructure *) s, "session", G_TYPE_UINT,
1601 /* fallthrough to forward the modified message to the parent */
1605 GST_BIN_CLASS (parent_class)->handle_message (bin, message);
1612 calc_ntp_ns_base (GstRtpBin * bin)
1618 /* get the current time and convert it to NTP time in nanoseconds */
1619 g_get_current_time (¤t);
1620 now = GST_TIMEVAL_TO_TIME (current);
1621 now += (2208988800LL * GST_SECOND);
1623 GST_RTP_BIN_LOCK (bin);
1624 bin->priv->ntp_ns_base = now;
1625 for (walk = bin->sessions; walk; walk = g_slist_next (walk)) {
1626 GstRtpBinSession *session = (GstRtpBinSession *) walk->data;
1628 g_object_set (session->session, "ntp-ns-base", now, NULL);
1630 GST_RTP_BIN_UNLOCK (bin);
1635 static GstStateChangeReturn
1636 gst_rtp_bin_change_state (GstElement * element, GstStateChange transition)
1638 GstStateChangeReturn res;
1641 rtpbin = GST_RTP_BIN (element);
1643 switch (transition) {
1644 case GST_STATE_CHANGE_NULL_TO_READY:
1646 case GST_STATE_CHANGE_READY_TO_PAUSED:
1648 case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
1649 calc_ntp_ns_base (rtpbin);
1655 res = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1657 switch (transition) {
1658 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
1660 case GST_STATE_CHANGE_PAUSED_TO_READY:
1662 case GST_STATE_CHANGE_READY_TO_NULL:
1670 /* a new pad (SSRC) was created in @session */
1672 new_payload_found (GstElement * element, guint pt, GstPad * pad,
1673 GstRtpBinStream * stream)
1676 GstElementClass *klass;
1677 GstPadTemplate *templ;
1681 rtpbin = stream->bin;
1683 GST_DEBUG ("new payload pad %d", pt);
1685 /* ghost the pad to the parent */
1686 klass = GST_ELEMENT_GET_CLASS (rtpbin);
1687 templ = gst_element_class_get_pad_template (klass, "recv_rtp_src_%d_%d_%d");
1688 padname = g_strdup_printf ("recv_rtp_src_%d_%u_%d",
1689 stream->session->id, stream->ssrc, pt);
1690 gpad = gst_ghost_pad_new_from_template (padname, pad, templ);
1693 gst_pad_set_caps (gpad, GST_PAD_CAPS (pad));
1694 gst_pad_set_active (gpad, TRUE);
1695 gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), gpad);
1699 pt_map_requested (GstElement * element, guint pt, GstRtpBinSession * session)
1704 rtpbin = session->bin;
1706 GST_DEBUG_OBJECT (rtpbin, "payload map requested for pt %d in session %d", pt,
1709 caps = get_pt_map (session, pt);
1718 GST_DEBUG_OBJECT (rtpbin, "could not get caps");
1723 /* emited when caps changed for the session */
1725 caps_changed (GstPad * pad, GParamSpec * pspec, GstRtpBinSession * session)
1730 const GstStructure *s;
1734 g_object_get (pad, "caps", &caps, NULL);
1739 GST_DEBUG_OBJECT (bin, "got caps %" GST_PTR_FORMAT, caps);
1741 s = gst_caps_get_structure (caps, 0);
1743 /* get payload, finish when it's not there */
1744 if (!gst_structure_get_int (s, "payload", &payload))
1747 GST_RTP_SESSION_LOCK (session);
1748 GST_DEBUG_OBJECT (bin, "insert caps for payload %d", payload);
1749 g_hash_table_insert (session->ptmap, GINT_TO_POINTER (payload), caps);
1750 GST_RTP_SESSION_UNLOCK (session);
1753 /* Stores the last payload type received on a particular stream */
1755 payload_type_change (GstElement * element, guint pt, GstRtpBinStream * stream)
1757 GST_RTP_SESSION_LOCK (stream->session);
1758 stream->last_pt = pt;
1759 GST_RTP_SESSION_UNLOCK (stream->session);
1762 /* a new pad (SSRC) was created in @session */
1764 new_ssrc_pad_found (GstElement * element, guint ssrc, GstPad * pad,
1765 GstRtpBinSession * session)
1767 GstRtpBinStream *stream;
1768 GstPad *sinkpad, *srcpad;
1772 GST_DEBUG_OBJECT (session->bin, "new SSRC pad %08x", ssrc);
1774 GST_RTP_SESSION_LOCK (session);
1776 /* create new stream */
1777 stream = create_stream (session, ssrc);
1781 /* get the caps of the pad, we need the clock-rate and base_time if any. */
1782 if ((caps = gst_pad_get_caps (pad))) {
1783 const GstStructure *s;
1786 GST_DEBUG_OBJECT (session->bin, "pad has caps %" GST_PTR_FORMAT, caps);
1788 s = gst_caps_get_structure (caps, 0);
1790 if (!gst_structure_get_int (s, "clock-rate", &stream->clock_rate)) {
1791 stream->clock_rate = -1;
1793 GST_WARNING_OBJECT (session->bin,
1794 "Caps have no clock rate %s from pad %s:%s",
1795 gst_caps_to_string (caps), GST_DEBUG_PAD_NAME (pad));
1798 if (gst_structure_get_uint (s, "clock-base", &val))
1799 stream->clock_base = val;
1801 stream->clock_base = -1;
1803 gst_caps_unref (caps);
1806 /* get pad and link */
1807 GST_DEBUG_OBJECT (session->bin, "linking jitterbuffer");
1808 padname = g_strdup_printf ("src_%d", ssrc);
1809 srcpad = gst_element_get_static_pad (element, padname);
1811 sinkpad = gst_element_get_static_pad (stream->buffer, "sink");
1812 gst_pad_link (srcpad, sinkpad);
1813 gst_object_unref (sinkpad);
1814 gst_object_unref (srcpad);
1816 /* get the RTCP sync pad */
1817 GST_DEBUG_OBJECT (session->bin, "linking sync pad");
1818 padname = g_strdup_printf ("rtcp_src_%d", ssrc);
1819 srcpad = gst_element_get_static_pad (element, padname);
1821 gst_pad_link (srcpad, stream->sync_pad);
1822 gst_object_unref (srcpad);
1824 /* connect to the new-pad signal of the payload demuxer, this will expose the
1825 * new pad by ghosting it. */
1826 stream->demux_newpad_sig = g_signal_connect (stream->demux,
1827 "new-payload-type", (GCallback) new_payload_found, stream);
1828 /* connect to the request-pt-map signal. This signal will be emited by the
1829 * demuxer so that it can apply a proper caps on the buffers for the
1831 stream->demux_ptreq_sig = g_signal_connect (stream->demux,
1832 "request-pt-map", (GCallback) pt_map_requested, session);
1833 /* connect to the payload-type-change signal so that we can know which
1834 * PT is the current PT so that the jitterbuffer can be matched to the right
1836 stream->demux_pt_change_sig = g_signal_connect (stream->demux,
1837 "payload-type-change", (GCallback) payload_type_change, stream);
1839 GST_RTP_SESSION_UNLOCK (session);
1846 GST_RTP_SESSION_UNLOCK (session);
1847 GST_DEBUG_OBJECT (session->bin, "could not create stream");
1852 /* Create a pad for receiving RTP for the session in @name. Must be called with
1856 create_recv_rtp (GstRtpBin * rtpbin, GstPadTemplate * templ, const gchar * name)
1858 GstPad *result, *sinkdpad;
1860 GstRtpBinSession *session;
1861 GstPadLinkReturn lres;
1863 /* first get the session number */
1864 if (name == NULL || sscanf (name, "recv_rtp_sink_%d", &sessid) != 1)
1867 GST_DEBUG_OBJECT (rtpbin, "finding session %d", sessid);
1869 /* get or create session */
1870 session = find_session_by_id (rtpbin, sessid);
1872 GST_DEBUG_OBJECT (rtpbin, "creating session %d", sessid);
1873 /* create session now */
1874 session = create_session (rtpbin, sessid);
1875 if (session == NULL)
1879 /* check if pad was requested */
1880 if (session->recv_rtp_sink != NULL)
1883 GST_DEBUG_OBJECT (rtpbin, "getting RTP sink pad");
1884 /* get recv_rtp pad and store */
1885 session->recv_rtp_sink =
1886 gst_element_get_request_pad (session->session, "recv_rtp_sink");
1887 if (session->recv_rtp_sink == NULL)
1890 g_signal_connect (session->recv_rtp_sink, "notify::caps",
1891 (GCallback) caps_changed, session);
1893 GST_DEBUG_OBJECT (rtpbin, "getting RTP src pad");
1894 /* get srcpad, link to SSRCDemux */
1895 session->recv_rtp_src =
1896 gst_element_get_static_pad (session->session, "recv_rtp_src");
1897 if (session->recv_rtp_src == NULL)
1900 GST_DEBUG_OBJECT (rtpbin, "getting demuxer RTP sink pad");
1901 sinkdpad = gst_element_get_static_pad (session->demux, "sink");
1902 GST_DEBUG_OBJECT (rtpbin, "linking demuxer RTP sink pad");
1903 lres = gst_pad_link (session->recv_rtp_src, sinkdpad);
1904 gst_object_unref (sinkdpad);
1905 if (lres != GST_PAD_LINK_OK)
1908 /* connect to the new-ssrc-pad signal of the SSRC demuxer */
1909 session->demux_newpad_sig = g_signal_connect (session->demux,
1910 "new-ssrc-pad", (GCallback) new_ssrc_pad_found, session);
1912 GST_DEBUG_OBJECT (rtpbin, "ghosting session sink pad");
1914 gst_ghost_pad_new_from_template (name, session->recv_rtp_sink, templ);
1915 gst_pad_set_active (result, TRUE);
1916 gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), result);
1923 g_warning ("gstrtpbin: invalid name given");
1928 /* create_session already warned */
1933 g_warning ("gstrtpbin: recv_rtp pad already requested for session %d",
1939 g_warning ("gstrtpbin: failed to get session pad");
1944 g_warning ("gstrtpbin: failed to link pads");
1949 /* Create a pad for receiving RTCP for the session in @name. Must be called with
1953 create_recv_rtcp (GstRtpBin * rtpbin, GstPadTemplate * templ,
1958 GstRtpBinSession *session;
1960 GstPadLinkReturn lres;
1962 /* first get the session number */
1963 if (name == NULL || sscanf (name, "recv_rtcp_sink_%d", &sessid) != 1)
1966 GST_DEBUG_OBJECT (rtpbin, "finding session %d", sessid);
1968 /* get or create the session */
1969 session = find_session_by_id (rtpbin, sessid);
1971 GST_DEBUG_OBJECT (rtpbin, "creating session %d", sessid);
1972 /* create session now */
1973 session = create_session (rtpbin, sessid);
1974 if (session == NULL)
1978 /* check if pad was requested */
1979 if (session->recv_rtcp_sink != NULL)
1982 /* get recv_rtp pad and store */
1983 GST_DEBUG_OBJECT (rtpbin, "getting RTCP sink pad");
1984 session->recv_rtcp_sink =
1985 gst_element_get_request_pad (session->session, "recv_rtcp_sink");
1986 if (session->recv_rtcp_sink == NULL)
1989 /* get srcpad, link to SSRCDemux */
1990 GST_DEBUG_OBJECT (rtpbin, "getting sync src pad");
1991 session->sync_src = gst_element_get_static_pad (session->session, "sync_src");
1992 if (session->sync_src == NULL)
1995 GST_DEBUG_OBJECT (rtpbin, "getting demuxer RTCP sink pad");
1996 sinkdpad = gst_element_get_static_pad (session->demux, "rtcp_sink");
1997 lres = gst_pad_link (session->sync_src, sinkdpad);
1998 gst_object_unref (sinkdpad);
1999 if (lres != GST_PAD_LINK_OK)
2003 gst_ghost_pad_new_from_template (name, session->recv_rtcp_sink, templ);
2004 gst_pad_set_active (result, TRUE);
2005 gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), result);
2012 g_warning ("gstrtpbin: invalid name given");
2017 /* create_session already warned */
2022 g_warning ("gstrtpbin: recv_rtcp pad already requested for session %d",
2028 g_warning ("gstrtpbin: failed to get session pad");
2033 g_warning ("gstrtpbin: failed to link pads");
2038 /* Create a pad for sending RTP for the session in @name. Must be called with
2042 create_send_rtp (GstRtpBin * rtpbin, GstPadTemplate * templ, const gchar * name)
2044 GstPad *result, *srcghost;
2047 GstRtpBinSession *session;
2048 GstElementClass *klass;
2050 /* first get the session number */
2051 if (name == NULL || sscanf (name, "send_rtp_sink_%d", &sessid) != 1)
2054 /* get or create session */
2055 session = find_session_by_id (rtpbin, sessid);
2057 /* create session now */
2058 session = create_session (rtpbin, sessid);
2059 if (session == NULL)
2063 /* check if pad was requested */
2064 if (session->send_rtp_sink != NULL)
2067 /* get send_rtp pad and store */
2068 session->send_rtp_sink =
2069 gst_element_get_request_pad (session->session, "send_rtp_sink");
2070 if (session->send_rtp_sink == NULL)
2074 gst_ghost_pad_new_from_template (name, session->send_rtp_sink, templ);
2075 gst_pad_set_active (result, TRUE);
2076 gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), result);
2079 session->send_rtp_src =
2080 gst_element_get_static_pad (session->session, "send_rtp_src");
2081 if (session->send_rtp_src == NULL)
2084 /* ghost the new source pad */
2085 klass = GST_ELEMENT_GET_CLASS (rtpbin);
2086 gname = g_strdup_printf ("send_rtp_src_%d", sessid);
2087 templ = gst_element_class_get_pad_template (klass, "send_rtp_src_%d");
2089 gst_ghost_pad_new_from_template (gname, session->send_rtp_src, templ);
2090 gst_pad_set_active (srcghost, TRUE);
2091 gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), srcghost);
2099 g_warning ("gstrtpbin: invalid name given");
2104 /* create_session already warned */
2109 g_warning ("gstrtpbin: send_rtp pad already requested for session %d",
2115 g_warning ("gstrtpbin: failed to get session pad for session %d", sessid);
2120 g_warning ("gstrtpbin: failed to get rtp source pad for session %d",
2126 /* Create a pad for sending RTCP for the session in @name. Must be called with
2130 create_rtcp (GstRtpBin * rtpbin, GstPadTemplate * templ, const gchar * name)
2134 GstRtpBinSession *session;
2136 /* first get the session number */
2137 if (name == NULL || sscanf (name, "send_rtcp_src_%d", &sessid) != 1)
2140 /* get or create session */
2141 session = find_session_by_id (rtpbin, sessid);
2145 /* check if pad was requested */
2146 if (session->send_rtcp_src != NULL)
2149 /* get rtcp_src pad and store */
2150 session->send_rtcp_src =
2151 gst_element_get_request_pad (session->session, "send_rtcp_src");
2152 if (session->send_rtcp_src == NULL)
2156 gst_ghost_pad_new_from_template (name, session->send_rtcp_src, templ);
2157 gst_pad_set_active (result, TRUE);
2158 gst_element_add_pad (GST_ELEMENT_CAST (rtpbin), result);
2165 g_warning ("gstrtpbin: invalid name given");
2170 g_warning ("gstrtpbin: session with id %d does not exist", sessid);
2175 g_warning ("gstrtpbin: send_rtcp_src pad already requested for session %d",
2181 g_warning ("gstrtpbin: failed to get rtcp pad for session %d", sessid);
2186 /* If the requested name is NULL we should create a name with
2187 * the session number assuming we want the lowest posible session
2188 * with a free pad like the template */
2190 gst_rtp_bin_get_free_pad_name (GstElement * element, GstPadTemplate * templ)
2192 gboolean name_found = FALSE;
2195 GstIterator *pad_it = NULL;
2196 gchar *pad_name = NULL;
2198 GST_DEBUG_OBJECT (element, "find a free pad name for template");
2199 while (!name_found) {
2201 pad_name = g_strdup_printf (templ->name_template, session++);
2202 pad_it = gst_element_iterate_pads (GST_ELEMENT (element));
2204 while (gst_iterator_next (pad_it, (gpointer) & pad) == GST_ITERATOR_OK) {
2207 name = gst_pad_get_name (pad);
2208 if (strcmp (name, pad_name) == 0)
2212 gst_iterator_free (pad_it);
2215 GST_DEBUG_OBJECT (element, "free pad name found: '%s'", pad_name);
2222 gst_rtp_bin_request_new_pad (GstElement * element,
2223 GstPadTemplate * templ, const gchar * name)
2226 GstElementClass *klass;
2228 gchar *pad_name = NULL;
2230 g_return_val_if_fail (templ != NULL, NULL);
2231 g_return_val_if_fail (GST_IS_RTP_BIN (element), NULL);
2233 rtpbin = GST_RTP_BIN (element);
2234 klass = GST_ELEMENT_GET_CLASS (element);
2236 GST_RTP_BIN_LOCK (rtpbin);
2239 /* use a free pad name */
2240 pad_name = gst_rtp_bin_get_free_pad_name (element, templ);
2242 /* use the provided name */
2243 pad_name = g_strdup (name);
2246 GST_DEBUG ("Trying to request a pad with name %s", pad_name);
2248 /* figure out the template */
2249 if (templ == gst_element_class_get_pad_template (klass, "recv_rtp_sink_%d")) {
2250 result = create_recv_rtp (rtpbin, templ, pad_name);
2251 } else if (templ == gst_element_class_get_pad_template (klass,
2252 "recv_rtcp_sink_%d")) {
2253 result = create_recv_rtcp (rtpbin, templ, pad_name);
2254 } else if (templ == gst_element_class_get_pad_template (klass,
2255 "send_rtp_sink_%d")) {
2256 result = create_send_rtp (rtpbin, templ, pad_name);
2257 } else if (templ == gst_element_class_get_pad_template (klass,
2258 "send_rtcp_src_%d")) {
2259 result = create_rtcp (rtpbin, templ, pad_name);
2261 goto wrong_template;
2264 GST_RTP_BIN_UNLOCK (rtpbin);
2272 GST_RTP_BIN_UNLOCK (rtpbin);
2273 g_warning ("gstrtpbin: this is not our template");
2279 gst_rtp_bin_release_pad (GstElement * element, GstPad * pad)