mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-20 14:18:34 +00:00
ladspa: fix compilation when LRDF is missing
--
This commit is contained in:
parent
b31fa28906
commit
1546625294
1 changed files with 4 additions and 1 deletions
|
@ -226,10 +226,13 @@ gst_ladspa_base_init (gpointer g_class)
|
||||||
} else
|
} else
|
||||||
klass_tags = "Filter/Effect/Audio/LADSPA";
|
klass_tags = "Filter/Effect/Audio/LADSPA";
|
||||||
|
|
||||||
|
#if HAVE_LRDF
|
||||||
if (extra_klass_tags) {
|
if (extra_klass_tags) {
|
||||||
details->klass = g_strconcat (klass_tags, extra_klass_tags, NULL);
|
details->klass = g_strconcat (klass_tags, extra_klass_tags, NULL);
|
||||||
g_free (extra_klass_tags);
|
g_free (extra_klass_tags);
|
||||||
} else {
|
} else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
details->klass = klass_tags;
|
details->klass = klass_tags;
|
||||||
}
|
}
|
||||||
GST_INFO ("tags : %s", details->klass);
|
GST_INFO ("tags : %s", details->klass);
|
||||||
|
|
Loading…
Reference in a new issue