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/gstrtpptdemux.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/gstrtpptdemux.c')
-rw-r--r-- | gst/rtpmanager/gstrtpptdemux.c | 34 |
1 files changed, 15 insertions, 19 deletions
diff --git a/gst/rtpmanager/gstrtpptdemux.c b/gst/rtpmanager/gstrtpptdemux.c index a3014b2b..9f3545ec 100644 --- a/gst/rtpmanager/gstrtpptdemux.c +++ b/gst/rtpmanager/gstrtpptdemux.c @@ -26,29 +26,25 @@ /** * SECTION:element-gstrtpptdemux * - * <refsect2> - * <para> - * gstrtpptdemux acts as a demuxer for RTP packets based on the payload type of the - * packets. Its main purpose is to allow an application to easily receive and - * decode an RTP stream with multiple payload types. - * </para> - * <para> + * gstrtpptdemux acts as a demuxer for RTP packets based on the payload type of + * the packets. Its main purpose is to allow an application to easily receive + * and decode an RTP stream with multiple payload types. + * * For each payload type that is detected, a new pad will be created and the - * ::new-payload-type signal will be emitted. When the payload for the RTP - * stream changes, the ::payload-type-change signal will be emitted. - * </para> - * <para> + * #GstRtpPtDemux::new-payload-type signal will be emitted. When the payload for + * the RTP stream changes, the #GstRtpPtDemux::payload-type-change signal will be + * emitted. + * * The element will try to set complete and unique application/x-rtp caps on the - * outgoing buffers and pads based on the result of the ::request-pt-map signal. - * </para> + * outgoing buffers and pads based on the result of the + * #GstRtpPtDemux::request-pt-map signal. + * + * <refsect2> * <title>Example pipelines</title> - * <para> - * <programlisting> + * |[ * gst-launch udpsrc caps="application/x-rtp" ! gstrtpptdemux ! fakesink - * </programlisting> - * Takes an RTP stream and send the RTP packets with the first detected payload - * type to fakesink, discarding the other payload types. - * </para> + * ]| Takes an RTP stream and send the RTP packets with the first detected + * payload type to fakesink, discarding the other payload types. * </refsect2> * * Last reviewed on 2007-05-28 (0.10.5) |