From fcfb59afb1014866c63e1de94712ce80ce21f973 Mon Sep 17 00:00:00 2001 From: Kjartan Maraas Date: Sat, 28 Oct 2006 15:42:29 +0000 Subject: [PATCH] Typo fixes (#366212). Original commit message from CVS: Patch by: Kjartan Maraas * docs/design/part-MT-refcounting.txt: * docs/random/wtay/capsnego2-docs: * gst/gstclock.c: * gst/gstxml.c: Typo fixes (#366212). --- ChangeLog | 14 ++++++++++++-- docs/design/part-MT-refcounting.txt | 2 +- docs/random/wtay/capsnego2-docs | 2 +- gst/gstclock.c | 2 +- gst/gstxml.c | 2 +- 5 files changed, 16 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 713fcd9051..17b1b45133 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2006-10-28 Tim-Philipp Müller + + Patch by: Kjartan Maraas + + * docs/design/part-MT-refcounting.txt: + * docs/random/wtay/capsnego2-docs: + * gst/gstclock.c: + * gst/gstxml.c: + Typo fixes (#366212). + 2006-10-28 Wim Taymans Patch by: Sergey Scobich @@ -4398,7 +4408,7 @@ (gst_base_sink_get_position_last), (gst_base_sink_get_position_paused), (gst_base_sink_change_state): Convert and store timestamps in stream time and running time, the - raw timestamps are not usefull, also document this better. + raw timestamps are not useful, also document this better. Use different window sizes for good and bad QoS observations so we react to badness a little quicker. Keep track of the amount of rendered and dropped buffers. @@ -12894,7 +12904,7 @@ * gst/gstobject.c: (gst_object_has_ancestor): * gst/gstobject.h: gst_object_has_ancestor() copied from gstbin.c as it is a - usefull function. + useful function. * tests/instantiate/create.c: (create_all_elements): * tests/lat.c: (handoff_src), (handoff_sink): diff --git a/docs/design/part-MT-refcounting.txt b/docs/design/part-MT-refcounting.txt index e03d9555d5..035f6be68f 100644 --- a/docs/design/part-MT-refcounting.txt +++ b/docs/design/part-MT-refcounting.txt @@ -170,7 +170,7 @@ Objects taking a _ref() before adding it to the bin. The reason being that after the _bin_add() call disposing the bin also destroys the element. - Taking ownership of an object happens trough the process of "sinking" the + Taking ownership of an object happens through the process of "sinking" the object. the _sink() method on an object will decrease the refcount of the object if the FLOATING flag is set. The act of taking ownership of an object is then performed as a _ref() followed by a _sink() call on the object. diff --git a/docs/random/wtay/capsnego2-docs b/docs/random/wtay/capsnego2-docs index d7eb6e2924..d748b80895 100644 --- a/docs/random/wtay/capsnego2-docs +++ b/docs/random/wtay/capsnego2-docs @@ -173,7 +173,7 @@ GstPad connection When two pads are connected get_caps is called on both pads to get their caps. Then the intersection between those caps is made, this will give us all the -possible media types that can flow trough this pad connection. Optionally the +possible media types that can flow through this pad connection. Optionally the application can provide additional caps, the pad intersection is also made with the application caps. diff --git a/gst/gstclock.c b/gst/gstclock.c index f86e5b3fd7..a2924775cc 100644 --- a/gst/gstclock.c +++ b/gst/gstclock.c @@ -86,7 +86,7 @@ * slaved to another #GstClock with the gst_clock_set_master(). The clock will * then automatically be synchronized to this master clock by repeadedly * sampling the master clock and the slave clock and recalibrating the slave - * clock with gst_clock_set_calibration(). This feature is mostly usefull for + * clock with gst_clock_set_calibration(). This feature is mostly useful for * plugins that have an internal clock but must operate with another clock * selected by the #GstPipeline. They can track the offset and rate difference * of their internal clock relative to the master clock by using the diff --git a/gst/gstxml.c b/gst/gstxml.c index 216bdddf80..e4ed26ac5c 100644 --- a/gst/gstxml.c +++ b/gst/gstxml.c @@ -396,7 +396,7 @@ gst_xml_get_topelements (GstXML * xml) /** * gst_xml_get_element: * @xml: The GstXML to get the element from - * @name: The name of element to retreive + * @name: The name of element to retrieve * * This function is used to get a pointer to the GstElement corresponding * to name in the pipeline description. You would use this if you have