On Mon, Mar 23, 2009 at 11:52:50AM -0400, Eric Miller wrote: > Didn't see any messages about headers. I wonder if the syntax on the > parameters is incorrect. Been a really long time since I worked in C so > I'm not sure. > > static int bloops_port_callback(const void *inputBuffer, void *outputBuffer, > unsigned long framesPerBuffer, const PaStreamCallbackTimeInfo* timeInfo, > PaStreamCallbackFlags statusFlags, void *data)
Hey, sorry about this, Eric. The problem is that you're linking against Portaudio 1.8 and PaStreamCallbackTimeInfo isn't defined in that version. You'll need to: aptitude install libportaudio19-dev And I'll modify the code to abort during compile if the header file is old. _why
