mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +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
|
||||
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);
|
||||
|
|
Loading…
Reference in a new issue