Lines Matching refs:FFT
41 var fft = new FFT(length);
42 fft.forward(tmpBuffer);
43 return fft.spectrum;
240 * @param {Float32Array} fft buffer of a channel
290 var fftLeft = new FFT(leftData.length);
292 var fftRight = new FFT(rightData.length);
360 * FFT is a class for calculating the Discrete Fourier Transform of a signal
367 function FFT(bufferSize) {
403 FFT.prototype.forward = function(buffer) {
418 throw "Supplied buffer is not the same size as defined FFT. FFT Size: "