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

14 lines
220 B
C#

namespace SDRSharp.Radio
{
public sealed class DsbDetector
{
public unsafe void Demodulate(Complex* iq, float* audio, int length)
{
for (int i = 0; i < length; i++)
{
audio[i] = iq[i].Real;
}
}
}
}