From: Olivier CrĂȘte Date: Mon, 18 Mar 2019 19:27:21 +0000 (-0400) Subject: rtpbin: Factor out the code that exposes the src pad X-Git-Tag: 1.19.3~509^2~1112 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c2dd263562bd0a4922ad7df9e39454d5d90e7292;p=platform%2Fupstream%2Fgstreamer.git rtpbin: Factor out the code that exposes the src pad --- diff --git a/gst/rtpmanager/gstrtpbin.c b/gst/rtpmanager/gstrtpbin.c index 012762e..a782003 100644 --- a/gst/rtpmanager/gstrtpbin.c +++ b/gst/rtpmanager/gstrtpbin.c @@ -3272,23 +3272,16 @@ copy_sticky_events (GstPad * pad, GstEvent ** event, gpointer user_data) return TRUE; } -/* a new pad (SSRC) was created in @session. This signal is emitted from the - * payload demuxer. */ static void -new_payload_found (GstElement * element, guint pt, GstPad * pad, - GstRtpBinStream * stream) +expose_recv_src_pad (GstRtpBin * rtpbin, GstPad * pad, GstRtpBinStream * stream, + guint8 pt) { - GstRtpBin *rtpbin; GstElementClass *klass; GstPadTemplate *templ; gchar *padname; GstPad *gpad; - rtpbin = stream->bin; - - GST_DEBUG_OBJECT (rtpbin, "new payload pad %u", pt); - - pad = gst_object_ref (pad); + gst_object_ref (pad); if (stream->session->storage) { GstElement *fec_decoder = @@ -3367,6 +3360,21 @@ fec_decoder_link_failed: } } +/* a new pad (SSRC) was created in @session. This signal is emited from the + * payload demuxer. */ +static void +new_payload_found (GstElement * element, guint pt, GstPad * pad, + GstRtpBinStream * stream) +{ + GstRtpBin *rtpbin; + + rtpbin = stream->bin; + + GST_DEBUG_OBJECT (rtpbin, "new payload pad %u", pt); + + expose_recv_src_pad (rtpbin, pad, stream, pt); +} + static void payload_pad_removed (GstElement * element, GstPad * pad, GstRtpBinStream * stream)