docs: Minor fixes in various places

https://bugzilla.gnome.org/show_bug.cgi?id=756996
This commit is contained in:
Mischa Spiegelmock 2015-10-22 17:40:38 -07:00 committed by Sebastian Dröge
parent 25ddf9e6ae
commit cdd7091c1c
6 changed files with 7 additions and 7 deletions

View file

@ -1630,7 +1630,7 @@
<name>rtpvp8pay</name>
<longname>RTP VP8 payloader</longname>
<class>Codec/Payloader/Network/RTP</class>
<description>Puts VP8 video in RTP packets)</description>
<description>Puts VP8 video in RTP packets</description>
<author>Sjoerd Simons &lt;sjoerd@luon.net&gt;</author>
<pads>
<caps>

View file

@ -733,7 +733,7 @@ gst_multipart_set_property (GObject * object, guint prop_id,
switch (prop_id) {
case PROP_BOUNDARY:
/* Not really that usefull anymore as we can reliably autoscan */
/* Not really that useful anymore as we can reliably autoscan */
g_free (filter->boundary);
filter->boundary = g_value_dup_string (value);
if (filter->boundary != NULL) {

View file

@ -392,7 +392,7 @@ do we care?
2029 RTP Payload Format of Sun's CellB Video Encoding.
usefull
-------
useful
------
http://www.iana.org/assignments/rtp-parameters

View file

@ -126,7 +126,7 @@ gst_rtp_vp8_pay_class_init (GstRtpVP8PayClass * gst_rtp_vp8_pay_class)
gst_element_class_set_static_metadata (element_class, "RTP VP8 payloader",
"Codec/Payloader/Network/RTP",
"Puts VP8 video in RTP packets)", "Sjoerd Simons <sjoerd@luon.net>");
"Puts VP8 video in RTP packets", "Sjoerd Simons <sjoerd@luon.net>");
pay_class->handle_buffer = gst_rtp_vp8_pay_handle_buffer;
pay_class->sink_event = gst_rtp_vp8_pay_sink_event;

View file

@ -314,7 +314,7 @@ gst_rtp_rtx_receive_src_event (GstPad * pad, GstObject * parent,
seqnum = -1;
/* retrieve ssrc of the packet that need to be retransmitted
* it's usefull when reconstructing the original packet from the rtx packet */
* it's useful when reconstructing the original packet from the rtx packet */
if (!gst_structure_get_uint (s, "ssrc", &ssrc))
ssrc = -1;

View file

@ -41,7 +41,7 @@
* one.
*
* The #GstUDPSrc:caps property is mainly used to give a type to the UDP packet
* so that they can be autoplugged in GStreamer pipelines. This is very usefull
* so that they can be autoplugged in GStreamer pipelines. This is very useful
* for RTP implementations where the contents of the UDP packets is transfered
* out-of-bounds using SDP or other means.
*