]> git.sesse.net Git - vlc/blobdiff - plugins/dsp/aout_dsp.c
* Ported Glide and MGA plugins to the new module API. MGA never worked,
[vlc] / plugins / dsp / aout_dsp.c
index 0283d80fbcb1d04cac922125fede4d8649267db5..68468e26e11e32c646007cc5e549108d79acb0e2 100644 (file)
@@ -21,6 +21,9 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
+#define MODULE_NAME dsp
+#include "modules_inner.h"
+
 /* TODO:
  *
  * - an aout_GetFormats() function
@@ -90,7 +93,7 @@ static void    aout_Close       ( aout_thread_t *p_aout );
  * Functions exported as capabilities. They are declared as static so that
  * we don't pollute the namespace too much.
  *****************************************************************************/
-void aout_getfunctions( function_list_t * p_function_list )
+void _M( aout_getfunctions )( function_list_t * p_function_list )
 {
     p_function_list->pf_probe = aout_Probe;
     p_function_list->functions.aout.pf_open = aout_Open;