diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2008-06-16 07:03:58 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2008-06-16 07:03:58 +0000 |
commit | 68993006c374a92474db6e908f7d3c13981bfed9 (patch) | |
tree | c4ff9daee109a4282c1bfffdbc0bed8e362a48ed /gst/rtpmanager/gstrtpssrcdemux.c | |
parent | bb7f93bd4eee6e78378e2157c6448e28dda717e1 (diff) | |
download | gst-plugins-bad-68993006c374a92474db6e908f7d3c13981bfed9.tar.gz gst-plugins-bad-68993006c374a92474db6e908f7d3c13981bfed9.tar.bz2 gst-plugins-bad-68993006c374a92474db6e908f7d3c13981bfed9.zip |
gst/: More doc updates. More xrefs.
Original commit message from CVS:
* gst/deinterlace/gstdeinterlace.c:
* gst/rtpmanager/gstrtpbin.c:
* gst/rtpmanager/gstrtpclient.c:
* gst/rtpmanager/gstrtpjitterbuffer.c:
* gst/rtpmanager/gstrtpptdemux.c:
* gst/rtpmanager/gstrtpsession.c:
* gst/rtpmanager/gstrtpssrcdemux.c:
* gst/sdp/gstsdpdemux.c:
More doc updates. More xrefs.
Diffstat (limited to 'gst/rtpmanager/gstrtpssrcdemux.c')
-rw-r--r-- | gst/rtpmanager/gstrtpssrcdemux.c | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/gst/rtpmanager/gstrtpssrcdemux.c b/gst/rtpmanager/gstrtpssrcdemux.c index 0dcc1a95..e5b989f7 100644 --- a/gst/rtpmanager/gstrtpssrcdemux.c +++ b/gst/rtpmanager/gstrtpssrcdemux.c @@ -22,24 +22,19 @@ /** * SECTION:element-gstrtpssrcdemux * - * <refsect2> - * <para> * gstrtpssrcdemux acts as a demuxer for RTP packets based on the SSRC of the * packets. Its main purpose is to allow an application to easily receive and * decode an RTP stream with multiple SSRCs. - * </para> - * <para> + * * For each SSRC that is detected, a new pad will be created and the - * ::new-ssrc-pad signal will be emitted. - * </para> + * #GstRtpSsrcDemux::new-ssrc-pad signal will be emitted. + * + * <refsect2> * <title>Example pipelines</title> - * <para> - * <programlisting> + * |[ * gst-launch udpsrc caps="application/x-rtp" ! gstrtpssrcdemux ! fakesink - * </programlisting> - * Takes an RTP stream and send the RTP packets with the first detected SSRC + * ]| Takes an RTP stream and send the RTP packets with the first detected SSRC * to fakesink, discarding the other SSRCs. - * </para> * </refsect2> * * Last reviewed on 2007-05-28 (0.10.5) @@ -133,7 +128,7 @@ static gboolean gst_rtp_ssrc_demux_src_query (GstPad * pad, GstQuery * query); static guint gst_rtp_ssrc_demux_signals[LAST_SIGNAL] = { 0 }; -/** +/* * Item for storing GstPad <-> SSRC pairs. */ struct _GstRtpSsrcDemuxPad |