gst: structure: fix some GstIdStr documentation

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7613>
This commit is contained in:
François Laignel 2024-10-03 19:56:06 +02:00
parent 16da96653a
commit 86776dc62e

View file

@ -848,7 +848,7 @@ gst_structure_get_name_id (const GstStructure * structure)
* *
* Get the name of @structure as a GstIdStr. * Get the name of @structure as a GstIdStr.
* *
* Returns: the quark representing the name of the structure. * Returns: the name of the structure.
* *
* Since: 1.26 * Since: 1.26
*/ */
@ -1381,8 +1381,8 @@ gst_structure_id_str_set_valist_internal (GstStructure * structure,
* *
* Identical to gst_structure_set, except that field names are * Identical to gst_structure_set, except that field names are
* passed using a GstIdStr for the field name. This allows more efficient * passed using a GstIdStr for the field name. This allows more efficient
* setting of the structure if the caller already knows the associated * setting of the structure if the caller already owns the associated
* quark values. * GstIdStr values or if they can be built from static literals.
* The last variable argument must be %NULL. * The last variable argument must be %NULL.
* *
* Since: 1.26 * Since: 1.26
@ -1481,7 +1481,7 @@ gst_structure_new_id (GQuark name_quark, GQuark field_quark, ...)
* @...: variable arguments * @...: variable arguments
* *
* Creates a new #GstStructure with the given name as a GQuark, followed by * Creates a new #GstStructure with the given name as a GQuark, followed by
* fieldname quark, GType, argument(s) "triplets" in the same format as * fieldname GstIdStr, GType, argument(s) "triplets" in the same format as
* gst_structure_id_set(). Basically a convenience wrapper around * gst_structure_id_set(). Basically a convenience wrapper around
* gst_structure_new_id_empty() and gst_structure_id_set(). * gst_structure_new_id_empty() and gst_structure_id_set().
* *