Hi there,
I figured before I go through the long process of reporting a bug, I'd ask here whether anybody else here is able to reproduce the problem on their machine. When I execute the code below, I get an EXCEPTION_ACCESS_VIOLATION on closing the window.
import processing.sound.*;
FFT fft;
AudioIn in;
int bands = 512;
float[] spectrum = new float[bands];
void setup() {
size(512, 360);
background(255);
// Create an Input stream which is routed into the Amplitude analyzer
fft = new FFT(this, bands);
}
void draw() {
background(255, 0, 0);
}