mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 23:48:53 +00:00
ext/ladspa/gstladspa.c: Add plugin dependency for the LADSPA plugin directories.
Original commit message from CVS: * ext/ladspa/gstladspa.c: (plugin_init): Add plugin dependency for the LADSPA plugin directories. Fixes bug #566878.
This commit is contained in:
parent
51af87f412
commit
acd634eafa
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2009-01-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
|
||||||
|
* ext/ladspa/gstladspa.c: (plugin_init):
|
||||||
|
Add plugin dependency for the LADSPA plugin directories.
|
||||||
|
Fixes bug #566878.
|
||||||
|
|
||||||
2009-01-06 Jan Schmidt <jan.schmidt@sun.com>
|
2009-01-06 Jan Schmidt <jan.schmidt@sun.com>
|
||||||
|
|
||||||
* tests/check/Makefile.am:
|
* tests/check/Makefile.am:
|
||||||
|
|
|
@ -620,6 +620,11 @@ plugin_init (GstPlugin * plugin)
|
||||||
GST_DEBUG_CATEGORY_INIT (ladspa_debug, "ladspa",
|
GST_DEBUG_CATEGORY_INIT (ladspa_debug, "ladspa",
|
||||||
GST_DEBUG_FG_GREEN | GST_DEBUG_BG_BLACK | GST_DEBUG_BOLD, "LADSPA");
|
GST_DEBUG_FG_GREEN | GST_DEBUG_BG_BLACK | GST_DEBUG_BOLD, "LADSPA");
|
||||||
|
|
||||||
|
gst_plugin_add_dependency_simple (plugin,
|
||||||
|
"LADSPA_PATH",
|
||||||
|
"/usr/lib/ladspa:/usr/local/lib/ladspa",
|
||||||
|
NULL, GST_PLUGIN_DEPENDENCY_FLAG_NONE);
|
||||||
|
|
||||||
parent_class = g_type_class_ref (GST_TYPE_SIGNAL_PROCESSOR);
|
parent_class = g_type_class_ref (GST_TYPE_SIGNAL_PROCESSOR);
|
||||||
|
|
||||||
ladspa_plugin = plugin;
|
ladspa_plugin = plugin;
|
||||||
|
|
Loading…
Reference in a new issue