Converts structure to a human-readable string representation.
For debugging purposes its easier to do something like this: ``<!--
language="C" --> GST_LOG ("structure is %" GST_PTR_FORMAT, structure);
This prints the structure in human readable form.
This function will lead to unexpected results when there are nested #GstCaps
/ #GstStructure deeper than one level, you should user
gst_structure_serialize_full() instead for those cases.
Free-function: g_free
Returns: a pointer to string allocated by [glib.global.gmalloc].
[glib.global.gfree] after usage.
Converts structure to a human-readable string representation.
For debugging purposes its easier to do something like this: ``<!-- language="C" --> GST_LOG ("structure is %" GST_PTR_FORMAT, structure);