CSharpSynth.Synthesis.StreamSynthesizer.GetNext C# (CSharp) Method

GetNext() public method

public GetNext ( byte buffer ) : void
buffer byte
return void
        public void GetNext(byte[] buffer)
        {
            //Call this to process the next part of audio and return it in raw form.
            ClearWorkingBuffer();
            FillWorkingBuffer();
            for (int x = 0; x < effects.Count; x++)
            {
                effects[x].doEffect(sampleBuffer);
            }
            ConvertBuffer(sampleBuffer, buffer);
        }

Same methods

StreamSynthesizer::GetNext ( float buffer ) : void