AcoustID.ChromaContext.Feed C# (CSharp) Method

Feed() public method

Send audio data to the fingerprint calculator.
public Feed ( short data, int size ) : void
data short raw audio data, should point to an array of 16-bit /// signed integers in native byte-order
size int size of the data buffer (in samples)
return void
        public void Feed(short[] data, int size)
        {
            fingerprinter.Consume(data, size);
        }