mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-01-30 20:04:18 +01:00
10 lines
173 B
C#
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);
|
|
}
|
|
}
|