Example #1
0
 public void GetSample(float[] sample, int channel, NaudioSource.FFTWindow window)
 {
     if (sampleAggregator != null)
     {
         sampleAggregator.GetFFTResults(sample, channel, window);
     }
 }
 public bool GetFFTData(float[] fftDataBuffer)
 {
     sampleAggregator.GetFFTResults(fftDataBuffer);
     return(isPlaying);
 }