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/sdp | |
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/sdp')
-rw-r--r-- | gst/sdp/gstsdpdemux.c | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/gst/sdp/gstsdpdemux.c b/gst/sdp/gstsdpdemux.c index 45cdc3a8..949d2fab 100644 --- a/gst/sdp/gstsdpdemux.c +++ b/gst/sdp/gstsdpdemux.c @@ -19,31 +19,25 @@ /** * SECTION:element-sdpdemux * - * <refsect2> - * <para> * sdpdemux currently understands SDP as the input format of the session description. * For each stream listed in the SDP a new rtp_stream%d pad will be created * with caps derived from the SDP media description. This is a caps of mime type * "application/x-rtp" that can be connected to any available RTP depayloader * element. - * </para> - * <para> + * * sdpdemux will internally instantiate an RTP session manager element * that will handle the RTCP messages to and from the server, jitter removal, * packet reordering along with providing a clock for the pipeline. - * </para> - * <para> + * * sdpdemux acts like a live element and will therefore only generate data in the * PLAYING state. - * </para> + * + * <refsect2> * <title>Example launch line</title> - * <para> - * <programlisting> + * |[ * gst-launch gnomevfssrc location=http://some.server/session.sdp ! sdpdemux ! fakesink - * </programlisting> - * Establish a connection to an HTTP server that contains an SDP session description + * ]| Establish a connection to an HTTP server that contains an SDP session description * that gets parsed by sdpdemux and send the raw RTP packets to a fakesink. - * </para> * </refsect2> * * Last reviewed on 2007-10-01 (0.10.6) |