Server/Spectrum/ISpectrumProvider.cs
author StephaneLenclud
Mon, 06 Mar 2017 15:11:27 +0100
changeset 282 29b4bdeda281
permissions -rw-r--r--
Published v1.4.7.0
Adding back runtime dependencies.
StephaneLenclud@273
     1
namespace Visualization
StephaneLenclud@273
     2
{
StephaneLenclud@273
     3
    public interface ISpectrumProvider
StephaneLenclud@273
     4
    {
StephaneLenclud@273
     5
        bool GetFftData(float[] fftBuffer, object context);
StephaneLenclud@273
     6
        int GetFftBandIndex(float frequency);
StephaneLenclud@273
     7
    }
StephaneLenclud@273
     8
}