Hi,
From the following REGRESSION: pygobject 3.13 now copies the GstStructure when getting them from a GstCaps, making it impossible to properly modify structures from caps in place (#76) · Issues · GStreamer / gstreamer · GitLab it looks like the bug has been solved.
Nevertheless I still encounter the issue that modifying the structure of a CustomMeta does nothing, like it is in fact a copy of the underlying structure.
My Gstreamer version is 1.28.4. I’m working on a custom python plugin on version 3.14.5 of python.
I tried a lot of variations, but basically
algometa = buffer.add_custom_meta(“algometa”)
algometa.structure.set_value(“data”, message.encode())
does not work.
Is there something i missed?
Thanks in advance!