# HG changeset patch # User nenolod # Date 1180346170 25200 # Node ID 038298d9fbe3bff42424921a79891c87ceee97bb # Parent 402ee2120cb15989d9358bbad74c6baad93fc6d2 [svn] - projectm: convert to plugin2 architecture. now SVN users have milkdrop back. diff -r 402ee2120cb1 -r 038298d9fbe3 ChangeLog --- a/ChangeLog Sun May 27 17:11:58 2007 -0700 +++ b/ChangeLog Mon May 28 02:56:10 2007 -0700 @@ -1,3 +1,10 @@ +2007-05-28 00:11:58 +0000 Giacomo Lozito + revision [2442] + - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system + trunk/configure.ac | 62 ++++++++++++++++++++++++++++++++--------------------- + 1 file changed, 38 insertions(+), 24 deletions(-) + + 2007-05-27 21:30:06 +0000 Ralf Ertzinger revision [2440] Move effect plugin handling out of the output plugins diff -r 402ee2120cb1 -r 038298d9fbe3 src/projectm/main.c --- a/src/projectm/main.c Sun May 27 17:11:58 2007 -0700 +++ b/src/projectm/main.c Mon May 28 02:56:10 2007 -0700 @@ -89,11 +89,9 @@ projectM_render_freq // Render the freq data, must return quickly }; -// XMMS entry point -VisPlugin *get_vplugin_info(void) -{ - return &projectM_vtable; -} +VisPlugin *projectM_vplist[] = { &projectM_vtable, NULL }; + +DECLARE_PLUGIN(projectm, NULL, NULL, NULL, NULL, NULL, NULL, projectM_vplist); // Our worker thread SDL_Thread *worker_thread;