AcoustID.Chromaprint.Fingerprinter.Consume C# (CSharp) Method

Consume() public method

Process a block of raw audio data. Call this method as many times as you need.
public Consume ( short samples, int length ) : void
samples short
length int
return void
        public void Consume(short[] samples, int length)
        {
            if (length < 0)
            {
                throw new ArgumentException("length");
            }

            m_audio_processor.Consume(samples, length);
        }