diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-05-28 16:37:47 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-05-28 16:37:47 +0000 |
commit | 3a496fd7ebb90d12bad86c6ded97a75e134794f6 (patch) | |
tree | b1f79cdcfe642548d51dd274fe7eb80ca1fe148f /gst/rtpmanager/gstrtpjitterbuffer.c | |
parent | 6587432049097bc964946a21dd390b6c808476f2 (diff) | |
download | gst-plugins-bad-3a496fd7ebb90d12bad86c6ded97a75e134794f6.tar.gz gst-plugins-bad-3a496fd7ebb90d12bad86c6ded97a75e134794f6.tar.bz2 gst-plugins-bad-3a496fd7ebb90d12bad86c6ded97a75e134794f6.zip |
Rename elements to avoid conflict with farsight elements with the same name. Fixes #430664.
Original commit message from CVS:
* docs/plugins/gst-plugins-bad-plugins-docs.sgml:
* docs/plugins/gst-plugins-bad-plugins-sections.txt:
* gst/rtpmanager/gstrtpbin.c: (create_session), (create_stream),
(gst_rtp_bin_class_init), (create_recv_rtp), (create_recv_rtcp),
(create_send_rtp), (create_rtcp), (gst_rtp_bin_request_new_pad):
* gst/rtpmanager/gstrtpclient.c: (create_stream),
(gst_rtp_client_request_new_pad):
* gst/rtpmanager/gstrtpjitterbuffer.c:
(gst_rtp_jitter_buffer_clear_pt_map), (gst_rtp_jitter_buffer_loop):
* gst/rtpmanager/gstrtpmanager.c: (plugin_init):
* gst/rtpmanager/gstrtpptdemux.c:
* gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
(gst_rtp_session_request_new_pad):
* gst/rtpmanager/gstrtpssrcdemux.c:
Rename elements to avoid conflict with farsight elements with the same
name. Fixes #430664.
Diffstat (limited to 'gst/rtpmanager/gstrtpjitterbuffer.c')
-rw-r--r-- | gst/rtpmanager/gstrtpjitterbuffer.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gst/rtpmanager/gstrtpjitterbuffer.c b/gst/rtpmanager/gstrtpjitterbuffer.c index 1838ba0b..33f78741 100644 --- a/gst/rtpmanager/gstrtpjitterbuffer.c +++ b/gst/rtpmanager/gstrtpjitterbuffer.c @@ -24,7 +24,7 @@ */ /** - * SECTION:element-rtpjitterbuffer + * SECTION:element-gstrtpjitterbuffer * @short_description: buffer, reorder and remove duplicate RTP packets to * compensate for network oddities. * @@ -33,7 +33,7 @@ * This element reorders and removes duplicate RTP packets as they are received * from a network source. It will also wait for missing packets up to a * configurable time limit using the ::latency property. Packets arriving too - * late are considered as lost packets. + * late are considered to be lost packets. * </para> * <para> * This element acts as a live element and so adds ::latency to the pipeline. @@ -45,12 +45,12 @@ * previous pt-map use the ::clear-pt-map signal. * </para> * <para> - * This element will automatically be used inside rtpbin. + * This element will automatically be used inside gstrtpbin. * </para> * <title>Example pipelines</title> * <para> * <programlisting> - * gst-launch rtspsrc location=rtsp://192.168.1.133:8554/mpeg1or2AudioVideoTest ! rtpjitterbuffer ! rtpmpvdepay ! mpeg2dec ! xvimagesink + * gst-launch rtspsrc location=rtsp://192.168.1.133:8554/mpeg1or2AudioVideoTest ! gstrtpjitterbuffer ! rtpmpvdepay ! mpeg2dec ! xvimagesink * </programlisting> * Connect to a streaming server and decode the MPEG video. The jitterbuffer is * inserted into the pipeline to smooth out network jitter and to reorder the @@ -58,7 +58,7 @@ * </para> * </refsect2> * - * Last reviewed on 2007-05-22 (0.10.6) + * Last reviewed on 2007-05-28 (0.10.5) */ #ifdef HAVE_CONFIG_H |