From 1546625294576ff67884384f13d844343d7ffb9d Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 6 Mar 2009 11:08:18 +0100 Subject: ladspa: fix compilation when LRDF is missing -- --- ext/ladspa/gstladspa.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ext/ladspa/gstladspa.c') diff --git a/ext/ladspa/gstladspa.c b/ext/ladspa/gstladspa.c index ef670276..ccb20e67 100644 --- a/ext/ladspa/gstladspa.c +++ b/ext/ladspa/gstladspa.c @@ -226,10 +226,13 @@ gst_ladspa_base_init (gpointer g_class) } else klass_tags = "Filter/Effect/Audio/LADSPA"; +#if HAVE_LRDF if (extra_klass_tags) { details->klass = g_strconcat (klass_tags, extra_klass_tags, NULL); g_free (extra_klass_tags); - } else { + } else +#endif + { details->klass = klass_tags; } GST_INFO ("tags : %s", details->klass); -- cgit v1.2.1