mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-04-21 06:13:41 +00:00
9 lines
173 B
C#
9 lines
173 B
C#
namespace SDRSharp.Radio
|
|
{
|
|
public interface IFilter
|
|
{
|
|
unsafe void Process(float* buffer, int length);
|
|
|
|
unsafe void ProcessInterleaved(float* buffer, int length);
|
|
}
|
|
}
|