4 * Copyright (C) 2005 Nokia Corporation.
5 * @author Kai Vehmanen <kai.vehmanen@nokia.com>
7 * Loosely based on GStreamer gstdecodebin
8 * Copyright (C) <2004> Wim Taymans <wim.taymans@gmail.com>
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Library General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Library General Public License for more details.
20 * You should have received a copy of the GNU Library General Public
21 * License along with this library; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 02111-1307, USA.
27 * SECTION:element-gstrtpptdemux
29 * gstrtpptdemux acts as a demuxer for RTP packets based on the payload type of
30 * the packets. Its main purpose is to allow an application to easily receive
31 * and decode an RTP stream with multiple payload types.
33 * For each payload type that is detected, a new pad will be created and the
34 * #GstRtpPtDemux::new-payload-type signal will be emitted. When the payload for
35 * the RTP stream changes, the #GstRtpPtDemux::payload-type-change signal will be
38 * The element will try to set complete and unique application/x-rtp caps on the
39 * outgoing buffers and pads based on the result of the
40 * #GstRtpPtDemux::request-pt-map signal.
43 * <title>Example pipelines</title>
45 * gst-launch udpsrc caps="application/x-rtp" ! gstrtpptdemux ! fakesink
46 * ]| Takes an RTP stream and send the RTP packets with the first detected
47 * payload type to fakesink, discarding the other payload types.
50 * Last reviewed on 2007-05-28 (0.10.5)
55 * Andre Moreira Magalhaes <andre.magalhaes@indt.org.br>
59 * - works with the test_rtpdemux.c tool
62 * - is emitting a signal enough, or should we
63 * use GstEvent to notify downstream elements
64 * of the new packet... no?
67 * - emits event both for new PTs, and whenever
77 #include <gst/rtp/gstrtpbuffer.h>
79 #include "gstrtpbin-marshal.h"
80 #include "gstrtpptdemux.h"
82 /* generic templates */
83 static GstStaticPadTemplate rtp_pt_demux_sink_template =
84 GST_STATIC_PAD_TEMPLATE ("sink",
87 GST_STATIC_CAPS ("application/x-rtp")
90 static GstStaticPadTemplate rtp_pt_demux_src_template =
91 GST_STATIC_PAD_TEMPLATE ("src_%u",
94 GST_STATIC_CAPS ("application/x-rtp, " "payload = (int) [ 0, 255 ]")
97 GST_DEBUG_CATEGORY_STATIC (gst_rtp_pt_demux_debug);
98 #define GST_CAT_DEFAULT gst_rtp_pt_demux_debug
101 * Item for storing GstPad<->pt pairs.
103 struct _GstRtpPtDemuxPad
105 GstPad *pad; /**< pointer to the actual pad */
106 gint pt; /**< RTP payload-type attached to pad */
113 SIGNAL_REQUEST_PT_MAP,
114 SIGNAL_NEW_PAYLOAD_TYPE,
115 SIGNAL_PAYLOAD_TYPE_CHANGE,
120 #define gst_rtp_pt_demux_parent_class parent_class
121 G_DEFINE_TYPE (GstRtpPtDemux, gst_rtp_pt_demux, GST_TYPE_ELEMENT);
123 static void gst_rtp_pt_demux_finalize (GObject * object);
125 static void gst_rtp_pt_demux_release (GstRtpPtDemux * ptdemux);
126 static gboolean gst_rtp_pt_demux_setup (GstRtpPtDemux * ptdemux);
128 static gboolean gst_rtp_pt_demux_sink_event (GstPad * pad, GstObject * parent,
130 static GstFlowReturn gst_rtp_pt_demux_chain (GstPad * pad, GstObject * parent,
132 static GstStateChangeReturn gst_rtp_pt_demux_change_state (GstElement * element,
133 GstStateChange transition);
134 static void gst_rtp_pt_demux_clear_pt_map (GstRtpPtDemux * rtpdemux);
136 static GstRtpPtDemuxPad *find_pad_for_pt (GstRtpPtDemux * rtpdemux, guint8 pt);
138 static gboolean gst_rtp_pt_demux_src_event (GstPad * pad, GstObject * parent,
142 static guint gst_rtp_pt_demux_signals[LAST_SIGNAL] = { 0 };
145 gst_rtp_pt_demux_class_init (GstRtpPtDemuxClass * klass)
147 GObjectClass *gobject_klass;
148 GstElementClass *gstelement_klass;
150 gobject_klass = (GObjectClass *) klass;
151 gstelement_klass = (GstElementClass *) klass;
154 * GstRtpPtDemux::request-pt-map:
155 * @demux: the object which received the signal
156 * @pt: the payload type
158 * Request the payload type as #GstCaps for @pt.
160 gst_rtp_pt_demux_signals[SIGNAL_REQUEST_PT_MAP] =
161 g_signal_new ("request-pt-map", G_TYPE_FROM_CLASS (klass),
162 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpPtDemuxClass, request_pt_map),
163 NULL, NULL, gst_rtp_bin_marshal_BOXED__UINT, GST_TYPE_CAPS, 1,
167 * GstRtpPtDemux::new-payload-type:
168 * @demux: the object which received the signal
169 * @pt: the payload type
170 * @pad: the pad with the new payload
172 * Emited when a new payload type pad has been created in @demux.
174 gst_rtp_pt_demux_signals[SIGNAL_NEW_PAYLOAD_TYPE] =
175 g_signal_new ("new-payload-type", G_TYPE_FROM_CLASS (klass),
176 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpPtDemuxClass, new_payload_type),
177 NULL, NULL, gst_rtp_bin_marshal_VOID__UINT_OBJECT, G_TYPE_NONE, 2,
178 G_TYPE_UINT, GST_TYPE_PAD);
181 * GstRtpPtDemux::payload-type-change:
182 * @demux: the object which received the signal
183 * @pt: the new payload type
185 * Emited when the payload type changed.
187 gst_rtp_pt_demux_signals[SIGNAL_PAYLOAD_TYPE_CHANGE] =
188 g_signal_new ("payload-type-change", G_TYPE_FROM_CLASS (klass),
189 G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpPtDemuxClass,
190 payload_type_change), NULL, NULL, g_cclosure_marshal_VOID__UINT,
191 G_TYPE_NONE, 1, G_TYPE_UINT);
194 * GstRtpPtDemux::clear-pt-map:
195 * @demux: the object which received the signal
197 * The application can call this signal to instruct the element to discard the
198 * currently cached payload type map.
200 gst_rtp_pt_demux_signals[SIGNAL_CLEAR_PT_MAP] =
201 g_signal_new ("clear-pt-map", G_TYPE_FROM_CLASS (klass),
202 G_SIGNAL_ACTION | G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRtpPtDemuxClass,
203 clear_pt_map), NULL, NULL, g_cclosure_marshal_VOID__VOID,
204 G_TYPE_NONE, 0, G_TYPE_NONE);
206 gobject_klass->finalize = gst_rtp_pt_demux_finalize;
208 gstelement_klass->change_state =
209 GST_DEBUG_FUNCPTR (gst_rtp_pt_demux_change_state);
211 klass->clear_pt_map = GST_DEBUG_FUNCPTR (gst_rtp_pt_demux_clear_pt_map);
213 gst_element_class_add_pad_template (gstelement_klass,
214 gst_static_pad_template_get (&rtp_pt_demux_sink_template));
215 gst_element_class_add_pad_template (gstelement_klass,
216 gst_static_pad_template_get (&rtp_pt_demux_src_template));
218 gst_element_class_set_details_simple (gstelement_klass, "RTP Demux",
220 "Parses codec streams transmitted in the same RTP session",
221 "Kai Vehmanen <kai.vehmanen@nokia.com>");
223 GST_DEBUG_CATEGORY_INIT (gst_rtp_pt_demux_debug,
224 "rtpptdemux", 0, "RTP codec demuxer");
228 gst_rtp_pt_demux_init (GstRtpPtDemux * ptdemux)
230 GstElementClass *klass = GST_ELEMENT_GET_CLASS (ptdemux);
233 gst_pad_new_from_template (gst_element_class_get_pad_template (klass,
235 g_assert (ptdemux->sink != NULL);
237 gst_pad_set_chain_function (ptdemux->sink, gst_rtp_pt_demux_chain);
238 gst_pad_set_event_function (ptdemux->sink, gst_rtp_pt_demux_sink_event);
240 gst_element_add_pad (GST_ELEMENT (ptdemux), ptdemux->sink);
244 gst_rtp_pt_demux_finalize (GObject * object)
246 gst_rtp_pt_demux_release (GST_RTP_PT_DEMUX (object));
248 G_OBJECT_CLASS (parent_class)->finalize (object);
252 gst_rtp_pt_demux_get_caps (GstRtpPtDemux * rtpdemux, guint pt)
256 GValue args[2] = { {0}, {0} };
258 /* figure out the caps */
259 g_value_init (&args[0], GST_TYPE_ELEMENT);
260 g_value_set_object (&args[0], rtpdemux);
261 g_value_init (&args[1], G_TYPE_UINT);
262 g_value_set_uint (&args[1], pt);
264 g_value_init (&ret, GST_TYPE_CAPS);
265 g_value_set_boxed (&ret, NULL);
267 g_signal_emitv (args, gst_rtp_pt_demux_signals[SIGNAL_REQUEST_PT_MAP], 0,
270 g_value_unset (&args[0]);
271 g_value_unset (&args[1]);
272 caps = g_value_dup_boxed (&ret);
273 g_value_unset (&ret);
275 caps = gst_pad_get_current_caps (rtpdemux->sink);
278 GST_DEBUG ("pt %d, got caps %" GST_PTR_FORMAT, pt, caps);
284 gst_rtp_pt_demux_clear_pt_map (GstRtpPtDemux * rtpdemux)
288 GST_OBJECT_LOCK (rtpdemux);
289 GST_DEBUG ("clearing pt map");
290 for (walk = rtpdemux->srcpads; walk; walk = g_slist_next (walk)) {
291 GstRtpPtDemuxPad *pad = walk->data;
295 GST_OBJECT_UNLOCK (rtpdemux);
299 gst_rtp_pt_demux_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
301 GstFlowReturn ret = GST_FLOW_OK;
302 GstRtpPtDemux *rtpdemux;
305 GstRtpPtDemuxPad *rtpdemuxpad;
309 rtpdemux = GST_RTP_PT_DEMUX (parent);
311 if (!gst_rtp_buffer_validate (buf))
314 gst_rtp_buffer_map (buf, GST_MAP_READ, &rtp);
315 pt = gst_rtp_buffer_get_payload_type (&rtp);
316 gst_rtp_buffer_unmap (&rtp);
318 GST_DEBUG_OBJECT (rtpdemux, "received buffer for pt %d", pt);
320 rtpdemuxpad = find_pad_for_pt (rtpdemux, pt);
321 if (rtpdemuxpad == NULL) {
322 /* new PT, create a src pad */
323 GstElementClass *klass;
324 GstPadTemplate *templ;
327 klass = GST_ELEMENT_GET_CLASS (rtpdemux);
328 templ = gst_element_class_get_pad_template (klass, "src_%u");
329 padname = g_strdup_printf ("src_%u", pt);
330 srcpad = gst_pad_new_from_template (templ, padname);
331 gst_pad_use_fixed_caps (srcpad);
333 gst_pad_set_event_function (srcpad, gst_rtp_pt_demux_src_event);
335 caps = gst_rtp_pt_demux_get_caps (rtpdemux, pt);
339 caps = gst_caps_make_writable (caps);
340 gst_caps_set_simple (caps, "payload", G_TYPE_INT, pt, NULL);
341 gst_pad_set_caps (srcpad, caps);
342 gst_caps_unref (caps);
344 GST_DEBUG ("Adding pt=%d to the list.", pt);
345 rtpdemuxpad = g_new0 (GstRtpPtDemuxPad, 1);
346 rtpdemuxpad->pt = pt;
347 rtpdemuxpad->newcaps = FALSE;
348 rtpdemuxpad->pad = srcpad;
349 GST_OBJECT_LOCK (rtpdemux);
350 rtpdemux->srcpads = g_slist_append (rtpdemux->srcpads, rtpdemuxpad);
351 GST_OBJECT_UNLOCK (rtpdemux);
353 gst_pad_set_active (srcpad, TRUE);
354 gst_element_add_pad (GST_ELEMENT_CAST (rtpdemux), srcpad);
356 GST_DEBUG ("emitting new-payload-type for pt %d", pt);
357 g_signal_emit (G_OBJECT (rtpdemux),
358 gst_rtp_pt_demux_signals[SIGNAL_NEW_PAYLOAD_TYPE], 0, pt, srcpad);
361 srcpad = rtpdemuxpad->pad;
363 if (pt != rtpdemux->last_pt) {
366 /* our own signal with an extra flag that this is the only pad */
367 rtpdemux->last_pt = pt;
368 GST_DEBUG ("emitting payload-type-changed for pt %d", emit_pt);
369 g_signal_emit (G_OBJECT (rtpdemux),
370 gst_rtp_pt_demux_signals[SIGNAL_PAYLOAD_TYPE_CHANGE], 0, emit_pt);
373 if (rtpdemuxpad->newcaps) {
374 GST_DEBUG ("need new caps");
375 caps = gst_rtp_pt_demux_get_caps (rtpdemux, pt);
379 caps = gst_caps_make_writable (caps);
380 gst_caps_set_simple (caps, "payload", G_TYPE_INT, pt, NULL);
381 gst_pad_set_caps (srcpad, caps);
382 gst_caps_unref (caps);
383 rtpdemuxpad->newcaps = FALSE;
387 ret = gst_pad_push (srcpad, buf);
394 /* this is fatal and should be filtered earlier */
395 GST_ELEMENT_ERROR (rtpdemux, STREAM, DECODE, (NULL),
396 ("Dropping invalid RTP payload"));
397 gst_buffer_unref (buf);
398 return GST_FLOW_ERROR;
402 GST_ELEMENT_ERROR (rtpdemux, STREAM, DECODE, (NULL),
403 ("Could not get caps for payload"));
404 gst_buffer_unref (buf);
405 return GST_FLOW_ERROR;
409 static GstRtpPtDemuxPad *
410 find_pad_for_pt (GstRtpPtDemux * rtpdemux, guint8 pt)
412 GstRtpPtDemuxPad *respad = NULL;
415 for (walk = rtpdemux->srcpads; walk; walk = g_slist_next (walk)) {
416 GstRtpPtDemuxPad *pad = walk->data;
427 gst_rtp_pt_demux_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
429 GstRtpPtDemux *rtpdemux;
430 gboolean res = FALSE;
432 rtpdemux = GST_RTP_PT_DEMUX (parent);
434 switch (GST_EVENT_TYPE (event)) {
435 case GST_EVENT_CUSTOM_DOWNSTREAM:
437 const GstStructure *s;
439 s = gst_event_get_structure (event);
441 if (gst_structure_has_name (s, "GstRTPPacketLost")) {
442 GstRtpPtDemuxPad *rtpdemuxpad =
443 find_pad_for_pt (rtpdemux, rtpdemux->last_pt);
446 res = gst_pad_push_event (rtpdemuxpad->pad, event);
448 gst_event_unref (event);
451 res = gst_pad_event_default (pad, parent, event);
456 res = gst_pad_event_default (pad, parent, event);
465 gst_rtp_pt_demux_src_event (GstPad * pad, GstObject * parent, GstEvent * event)
467 GstRtpPtDemux *demux;
468 const GstStructure *s;
470 demux = GST_RTP_PT_DEMUX (parent);
472 switch (GST_EVENT_TYPE (event)) {
473 case GST_EVENT_CUSTOM_UPSTREAM:
474 case GST_EVENT_CUSTOM_BOTH:
475 case GST_EVENT_CUSTOM_BOTH_OOB:
476 s = gst_event_get_structure (event);
477 if (s && !gst_structure_has_field (s, "payload")) {
480 for (walk = demux->srcpads; walk; walk = g_slist_next (walk)) {
481 GstRtpPtDemuxPad *dpad = (GstRtpPtDemuxPad *) walk->data;
483 if (dpad->pad == pad) {
487 GST_EVENT_CAST (gst_mini_object_make_writable
488 (GST_MINI_OBJECT_CAST (event)));
489 ws = gst_event_writable_structure (event);
490 gst_structure_set (ws, "payload", G_TYPE_UINT, dpad->pt, NULL);
500 return gst_pad_event_default (pad, parent, event);
504 * Reserves resources for the object.
507 gst_rtp_pt_demux_setup (GstRtpPtDemux * ptdemux)
509 ptdemux->srcpads = NULL;
510 ptdemux->last_pt = 0xFFFF;
516 * Free resources for the object.
519 gst_rtp_pt_demux_release (GstRtpPtDemux * ptdemux)
523 for (walk = ptdemux->srcpads; walk; walk = g_slist_next (walk)) {
524 GstRtpPtDemuxPad *pad = walk->data;
526 gst_pad_set_active (pad->pad, FALSE);
527 gst_element_remove_pad (GST_ELEMENT_CAST (ptdemux), pad->pad);
530 g_slist_free (ptdemux->srcpads);
531 ptdemux->srcpads = NULL;
534 static GstStateChangeReturn
535 gst_rtp_pt_demux_change_state (GstElement * element, GstStateChange transition)
537 GstStateChangeReturn ret;
538 GstRtpPtDemux *ptdemux;
540 ptdemux = GST_RTP_PT_DEMUX (element);
542 switch (transition) {
543 case GST_STATE_CHANGE_NULL_TO_READY:
544 if (gst_rtp_pt_demux_setup (ptdemux) != TRUE)
545 ret = GST_STATE_CHANGE_FAILURE;
547 case GST_STATE_CHANGE_READY_TO_PAUSED:
548 case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
553 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
555 switch (transition) {
556 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
557 case GST_STATE_CHANGE_PAUSED_TO_READY:
559 case GST_STATE_CHANGE_READY_TO_NULL:
560 gst_rtp_pt_demux_release (ptdemux);