On Thu Sep 7 08:53:11 2023 +0000, Rémi Bernon wrote:
What about passing the GStreamer caps string directly instead of requiring some intermediate enum and conversion?
If we hold a `char *` in `wg_container_format`, it requires a pointer conversion from PE pointer to unix pointer when we are calling `wg_container_format_to_caps` in wg_muxer.c.
Or we hold a `char[]` array in the struct to avoid the pointer conversion.
But I preffer the intermediate enum approach. What do you think?