diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2011-09-08 14:23:50 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2011-09-08 14:28:23 +0200 |
commit | 43538e2e75b4bdc5fc71a62b472a4b223472c059 (patch) | |
tree | 8fc77f478b9d15166c85c083e24d0ee0e6b890ad /gst/gstutils.c | |
parent | a952de69dd7aa216dc7aaf5572ae17229574477a (diff) | |
parent | d3cad28da936b037d877dc70c02286b81b680284 (diff) |
Merge branch 'master' into 0.11
Conflicts:
docs/design/draft-buffer2.txt
docs/design/part-TODO.txt
docs/design/part-block.txt
docs/design/part-bufferlist.txt
docs/design/part-caps.txt
docs/design/part-element-transform.txt
docs/design/part-events.txt
docs/design/part-negotiation.txt
gst/gstcaps.c
gst/gstevent.h
gst/gstghostpad.c
gst/gstinterface.c
gst/gstpad.c
gst/gstpad.h
gst/gstutils.c
libs/gst/base/gstbasesink.c
libs/gst/base/gstbasesrc.c
libs/gst/base/gstbasetransform.c
libs/gst/base/gsttypefindhelper.c
plugins/elements/gstcapsfilter.c
plugins/elements/gsttee.c
tests/check/generic/sinks.c
tools/gst-launch.1.in
Diffstat (limited to 'gst/gstutils.c')
-rw-r--r-- | gst/gstutils.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gst/gstutils.c b/gst/gstutils.c index 5d96a33c8..07eac6b24 100644 --- a/gst/gstutils.c +++ b/gst/gstutils.c @@ -484,7 +484,7 @@ _gst_util_uint64_scale (guint64 val, guint64 num, guint64 denom, if (G_UNLIKELY (num == denom)) return val; - /* on 64bits we always use a full 128bits multipy/division */ + /* on 64bits we always use a full 128bits multiply/division */ #if !defined (__x86_64__) && !defined (HAVE_UINT128_T) /* denom is low --> try to use 96 bit muldiv */ if (G_LIKELY (denom <= G_MAXUINT32)) { @@ -830,7 +830,7 @@ gst_print_element_args (GString * buf, gint indent, GstElement * element) * @element: (transfer none): a #GstElement to create pads for * * Creates a pad for each pad template that is always available. - * This function is only useful during object intialization of + * This function is only useful during object initialization of * subclasses of #GstElement. */ void @@ -2006,7 +2006,7 @@ gst_element_link_pads_filtered (GstElement * src, const gchar * srcpadname, * Links @src to @dest. The link must be from source to * destination; the other direction will not be tried. The function looks for * existing pads that aren't linked yet. It will request new pads if necessary. - * Such pads need to be released manualy when unlinking. + * Such pads need to be released manually when unlinking. * If multiple links are possible, only one is established. * * Make sure you have added your elements to a bin or pipeline with @@ -2127,7 +2127,7 @@ gst_element_unlink_pads (GstElement * src, const gchar * srcpadname, goto free_src; } - /* we're satisified they can be unlinked, let's do it */ + /* we're satisfied they can be unlinked, let's do it */ gst_pad_unlink (srcpad, destpad); if (destrequest) @@ -3308,7 +3308,7 @@ gst_parse_bin_from_description_full (const gchar * bin_description, * @base_init: Location of the base initialization function (optional). * @base_finalize: Location of the base finalization function (optional). * @class_init: Location of the class initialization function for class types - * Location of the default vtable inititalization function for interface + * Location of the default vtable initialization function for interface * types. (optional) * @class_finalize: Location of the class finalization function for class types. * Location of the default vtable finalization function for interface types. @@ -3372,7 +3372,7 @@ gst_type_register_static_full (GType parent_type, /** * gst_util_get_timestamp: * - * Get a timestamp as GstClockTime to be used for interval meassurements. + * Get a timestamp as GstClockTime to be used for interval measurements. * The timestamp should not be interpreted in any other way. * * Returns: the timestamp |