utils: whitespace fixes

This commit is contained in:
Wim Taymans 2009-08-28 12:21:28 +02:00
parent 2b66b29355
commit 75e8e9eb42

View file

@ -675,7 +675,7 @@ gst_util_seqnum_next (void)
* @s2: Another sequence number. * @s2: Another sequence number.
* *
* Compare two sequence numbers, handling wraparound. * Compare two sequence numbers, handling wraparound.
* *
* The current implementation just returns (gint32)(@s1 - @s2). * The current implementation just returns (gint32)(@s1 - @s2).
* *
* Returns: A negative number if @s1 is before @s2, 0 if they are equal, or a * Returns: A negative number if @s1 is before @s2, 0 if they are equal, or a
@ -2547,9 +2547,9 @@ gst_buffer_merge (GstBuffer * buf1, GstBuffer * buf2)
* If the buffers point to contiguous areas of memory, the buffer * If the buffers point to contiguous areas of memory, the buffer
* is created without copying the data. * is created without copying the data.
* *
* This is a convenience function for C programmers. See also * This is a convenience function for C programmers. See also
* gst_buffer_merge(), which does the same thing without * gst_buffer_merge(), which does the same thing without
* unreffing the input parameters. Language bindings without * unreffing the input parameters. Language bindings without
* explicit reference counting should not wrap this function. * explicit reference counting should not wrap this function.
* *
* Returns: the new #GstBuffer which is the concatenation of the source buffers. * Returns: the new #GstBuffer which is the concatenation of the source buffers.
@ -2980,7 +2980,7 @@ gst_pad_query_peer_convert (GstPad * pad, GstFormat src_format, gint64 src_val,
* @value: value to set * @value: value to set
* *
* Unconditionally sets the atomic integer to @value. * Unconditionally sets the atomic integer to @value.
* *
* Deprecated: Use g_atomic_int_set(). * Deprecated: Use g_atomic_int_set().
* *
*/ */
@ -3580,37 +3580,37 @@ gst_parse_bin_from_description_full (const gchar * bin_description,
/** /**
* gst_type_register_static_full: * gst_type_register_static_full:
* @parent_type: The GType of the parent type the newly registered type will * @parent_type: The GType of the parent type the newly registered type will
* derive from * derive from
* @type_name: NULL-terminated string used as the name of the new type * @type_name: NULL-terminated string used as the name of the new type
* @class_size: Size of the class structure. * @class_size: Size of the class structure.
* @base_init: Location of the base initialization function (optional). * @base_init: Location of the base initialization function (optional).
* @base_finalize: Location of the base finalization function (optional). * @base_finalize: Location of the base finalization function (optional).
* @class_init: Location of the class initialization function for class types * @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 inititalization function for interface
* types. (optional) * types. (optional)
* @class_finalize: Location of the class finalization function for class types. * @class_finalize: Location of the class finalization function for class types.
* Location of the default vtable finalization function for interface types. * Location of the default vtable finalization function for interface types.
* (optional) * (optional)
* @class_data: User-supplied data passed to the class init/finalize functions. * @class_data: User-supplied data passed to the class init/finalize functions.
* @instance_size: Size of the instance (object) structure (required for * @instance_size: Size of the instance (object) structure (required for
* instantiatable types only). * instantiatable types only).
* @n_preallocs: The number of pre-allocated (cached) instances to reserve * @n_preallocs: The number of pre-allocated (cached) instances to reserve
* memory for (0 indicates no caching). Ignored on recent GLib's. * memory for (0 indicates no caching). Ignored on recent GLib's.
* @instance_init: Location of the instance initialization function (optional, * @instance_init: Location of the instance initialization function (optional,
* for instantiatable types only). * for instantiatable types only).
* @value_table: A GTypeValueTable function table for generic handling of * @value_table: A GTypeValueTable function table for generic handling of
* GValues of this type (usually only useful for fundamental types). * GValues of this type (usually only useful for fundamental types).
* @flags: #GTypeFlags for this GType. E.g: G_TYPE_FLAG_ABSTRACT * @flags: #GTypeFlags for this GType. E.g: G_TYPE_FLAG_ABSTRACT
* *
* Helper function which constructs a #GTypeInfo structure and registers a * Helper function which constructs a #GTypeInfo structure and registers a
* GType, but which generates less linker overhead than a static const * GType, but which generates less linker overhead than a static const
* #GTypeInfo structure. For further details of the parameters, please see * #GTypeInfo structure. For further details of the parameters, please see
* #GTypeInfo in the GLib documentation. * #GTypeInfo in the GLib documentation.
* *
* Registers type_name as the name of a new static type derived from * Registers type_name as the name of a new static type derived from
* parent_type. The value of flags determines the nature (e.g. abstract or * parent_type. The value of flags determines the nature (e.g. abstract or
* not) of the type. It works by filling a GTypeInfo struct and calling * not) of the type. It works by filling a GTypeInfo struct and calling
* g_type_info_register_static(). * g_type_info_register_static().
* *
* Returns: A #GType for the newly-registered type. * Returns: A #GType for the newly-registered type.