doc: improve spa_pod_get_values() docs

This commit is contained in:
Wim Taymans 2025-10-31 11:51:32 +01:00
parent a60eb4fe64
commit d89c85d374

View file

@ -435,10 +435,11 @@ spa_pod_parser_get_object(&p,
\endcode \endcode
`spa_pod_get_values()` is a useful function. It returns a `spa_pod_get_values()` is a useful function. It returns a
`struct spa_pod*` with and array of values. For normal POD's `struct spa_pod*` with and array of values. For invalid PODs
and choice none values, it simply returns the POD and one value. it returns the POD and no values. For normal PODs it returns
For other choice values it returns the choice type and an array the POD and one value. For choice values it returns the choice
of values: type and an array of values. If the choice doesn't fit even a
single value, the array will have no values.
\code{.c} \code{.c}
struct spa_pod *value; struct spa_pod *value;