public int FeedShort(short data, int size) { return(LibFooIdInterop.FeedShort(_fid, ref data, size)); }
public int FeedFloat(float data, int size) { return(LibFooIdInterop.FeedFloat(_fid, ref data, size)); }
public void Dispose() { LibFooIdInterop.Free(_fid); GC.SuppressFinalize(this); }
public int Calculate(int songLength, byte[] buffer) { return(LibFooIdInterop.Calculate(_fid, songLength, buffer)); }
public LibFooId(int sampleRate, int channels) { _fid = LibFooIdInterop.Init(sampleRate, channels); }