gst_debug: Add missing gst_debug_log_id_literal() dummy with gst_debug=false

E.g. gst_debug_log_literal() already has a dummy variant.
gst_debug_log_id_literal() is simply missing, which can
cause link errors for project using gstreamer with
gst_debug=false.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6979>
This commit is contained in:
Martin Nordholts 2024-05-30 12:08:57 +02:00 committed by Backport Bot
parent 8447c1d386
commit 03b6efcaf5

View file

@ -2687,6 +2687,13 @@ gst_debug_log_literal (GstDebugCategory * category, GstDebugLevel level,
{
}
void
gst_debug_log_id_literal (GstDebugCategory * category, GstDebugLevel level,
const gchar * file, const gchar * function, gint line,
const gchar * id, const gchar * message_string)
{
}
const gchar *
gst_debug_message_get (GstDebugMessage * message)
{