On Sun, Dec 02, 2007 at 03:33:52PM +0100, Rémi Thébault wrote: > I join my source code, my Makefile and the compiled library (x86). > If somebody could have a look or just give some piece of advice on how > to make a plugin recognized, this would be a great help for me.
(See also previous post) One more remark: calling malloc() and free() from the run() function is definitely _not_done_. You can allcocate the the required buffers in the constructor (instantiate()), and unless you need some special alignment you could also just declare them as array data members of the plugin class, which makes for even less code. Ciao, -- FA Laboratorio di Acustica ed Elettroacustica Parma, Italia Lascia la spina, cogli la rosa. _______________________________________________ Linux-audio-dev mailing list [email protected] http://lists.linuxaudio.org/mailman/listinfo/linux-audio-dev
