structure: Reflow the SECTION comment

Removing trailing whitespaces and avoiding to exceed 80chars

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/510>
This commit is contained in:
Thibault Saunier 2020-06-03 09:17:32 -04:00 committed by GStreamer Merge Bot
parent 8e670a23b0
commit bd0abb3857

View file

@ -25,22 +25,23 @@
* @short_description: Generic structure containing fields of names and values * @short_description: Generic structure containing fields of names and values
* @see_also: #GstCaps, #GstMessage, #GstEvent, #GstQuery * @see_also: #GstCaps, #GstMessage, #GstEvent, #GstQuery
* *
* A #GstStructure is a collection of key/value pairs. The keys are expressed * A #GstStructure is a collection of key/value pairs. The keys are expressed as
* as GQuarks and the values can be of any GType. * GQuarks and the values can be of any GType.
* *
* In addition to the key/value pairs, a #GstStructure also has a name. The name * In addition to the key/value pairs, a #GstStructure also has a name. The name
* starts with a letter and can be filled by letters, numbers and any of "/-_.:". * starts with a letter and can be filled by letters, numbers and any of
* "/-_.:".
* *
* #GstStructure is used by various GStreamer subsystems to store information * #GstStructure is used by various GStreamer subsystems to store information in
* in a flexible and extensible way. A #GstStructure does not have a refcount * a flexible and extensible way. A #GstStructure does not have a refcount
* because it usually is part of a higher level object such as #GstCaps, * because it usually is part of a higher level object such as #GstCaps,
* #GstMessage, #GstEvent, #GstQuery. It provides a means to enforce mutability * #GstMessage, #GstEvent, #GstQuery. It provides a means to enforce mutability
* using the refcount of the parent with the gst_structure_set_parent_refcount() * using the refcount of the parent with the gst_structure_set_parent_refcount()
* method. * method.
* *
* A #GstStructure can be created with gst_structure_new_empty() or * A #GstStructure can be created with gst_structure_new_empty() or
* gst_structure_new(), which both take a name and an optional set of * gst_structure_new(), which both take a name and an optional set of key/value
* key/value pairs along with the types of the values. * pairs along with the types of the values.
* *
* Field values can be changed with gst_structure_set_value() or * Field values can be changed with gst_structure_set_value() or
* gst_structure_set(). * gst_structure_set().