X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=plugins%2Fdsp%2Faout_dsp.c;h=68468e26e11e32c646007cc5e549108d79acb0e2;hb=583c6553f6761421260d86bbc21b5b3169c04319;hp=0283d80fbcb1d04cac922125fede4d8649267db5;hpb=3bb7a5371e29b608e29851b9f1366a12a3505afe;p=vlc diff --git a/plugins/dsp/aout_dsp.c b/plugins/dsp/aout_dsp.c index 0283d80fbc..68468e26e1 100644 --- a/plugins/dsp/aout_dsp.c +++ b/plugins/dsp/aout_dsp.c @@ -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;