From 16ce61fb57a413182f5f861d2eb6fc62749d2f99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 12 Apr 2023 10:58:31 +0300 Subject: [PATCH] gst: tracer: Initialize tracing infrastructure even if the debug system is not compiled in There is a separate #define for the tracing infrastructure. Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/2467 Part-of: --- subprojects/gstreamer/gst/gst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gstreamer/gst/gst.c b/subprojects/gstreamer/gst/gst.c index 5d8788fa00..74d6ae8cc1 100644 --- a/subprojects/gstreamer/gst/gst.c +++ b/subprojects/gstreamer/gst/gst.c @@ -812,7 +812,7 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data, * environment variable */ _priv_gst_plugin_feature_rank_initialize (); -#ifndef GST_DISABLE_GST_DEBUG +#ifndef GST_DISABLE_GST_TRACER_HOOKS _priv_gst_tracing_init (); #endif