Skip to content

gstinfo: Add gst_debug_log_literal() function

Sebastian Dröge requested to merge slomo/gstreamer:gst_debug_log_literal into main

This takes a plain message string and not a format string, and as a result doesn't have to be passed through vasprintf() and lead to further unnecessary allocations. It can also contain literal % because of that.

The new function is mostly useful for bindings that would have to pass a full string to GStreamer anyway and would do formatting themselves with language-specific functionality.

Merge request reports