diff libaf/af.c @ 14217:5b5ebf93ec16

Adds support for LADSPA (Linux Audio Developer's Simple Plugin API) plugins. Compilation is optional and can be controled by configure. You need to have the LADSPA SDK installed in order to have it autodetected by configure. Manual page is updated.
author ivo
date Thu, 23 Dec 2004 02:09:52 +0000
parents be8f4abbe960
children e607c3796e2b
line wrap: on
line diff
--- a/libaf/af.c	Thu Dec 23 02:09:49 2004 +0000
+++ b/libaf/af.c	Thu Dec 23 02:09:52 2004 +0000
@@ -28,6 +28,7 @@
 extern af_info_t af_info_lavcresample;
 extern af_info_t af_info_sweep;
 extern af_info_t af_info_hrtf;
+extern af_info_t af_info_ladspa;
 
 static af_info_t* filter_list[]={ 
    &af_info_dummy,
@@ -52,6 +53,9 @@
 #endif
    &af_info_sweep,
    &af_info_hrtf,
+#ifdef HAVE_LADSPA
+   &af_info_ladspa,
+#endif
    NULL 
 };