From 0f53ba8aed2dba6ebbdd3ecda676bee1305b9632 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Fri, 26 Jul 2013 13:20:27 -0700 Subject: [PATCH] ladspa: initialize debug category earlier You know, before it's used. --- ext/ladspa/gstladspa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/ladspa/gstladspa.c b/ext/ladspa/gstladspa.c index 344537b..02bb179 100644 --- a/ext/ladspa/gstladspa.c +++ b/ext/ladspa/gstladspa.c @@ -399,6 +399,8 @@ plugin_init (GstPlugin * plugin) gboolean res = FALSE; gint n = 0; + GST_DEBUG_CATEGORY_INIT (ladspa_debug, "ladspa", 0, "LADSPA plugins"); + #ifdef ENABLE_NLS GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE, LOCALEDIR); @@ -406,8 +408,6 @@ plugin_init (GstPlugin * plugin) bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); #endif - GST_DEBUG_CATEGORY_INIT (ladspa_debug, "ladspa", 0, "LADSPA plugins"); - gst_plugin_add_dependency_simple (plugin, "LADSPA_PATH", GST_LADSPA_DEFAULT_PATH, NULL, GST_PLUGIN_DEPENDENCY_FLAG_NONE); -- 2.7.4