SDRSharper/SDRSharper.Radio/SDRSharp.Radio/IFilter.cs
SDRSharpR c07e6e6034 SDRSharper (SDRSharp Remake) Full Source (VS2017)
SDRSharper (SDRSharp Remake) Full Source (VS2017)
2018-03-26 14:02:05 -07:00

10 lines
173 B
C#

namespace SDRSharp.Radio
{
public interface IFilter
{
unsafe void Process(float* buffer, int length);
unsafe void ProcessInterleaved(float* buffer, int length);
}
}